/* =========================================================
   Axion Tech Lab — styles
   ========================================================= */

:root {
  --navy: #16203C;
  --navy-light: #1E2D52;
  --blue: #1550A8;
  --blue-dark: #0F3D85;
  --blue-light: #3D84E2;
  --gray: #A8B2BD;
  --gray-light: #C4CCD4;
  --gray-dark: #8A91A0;
  --background: #F4F5F7;
  --surface: #FFFFFF;
  --text-primary: #16203C;
  --text-secondary: #5A6376;
  --border: #E3E6EC;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;

  --shadow-sm: 0 1px 2px 0 rgba(22, 32, 60, 0.04);
  --shadow-md: 0 4px 16px 0 rgba(22, 32, 60, 0.08);
  --shadow-lg: 0 8px 32px 0 rgba(22, 32, 60, 0.10);

  --container: 1280px;
  --gutter: 24px;
  --nav-height: 76px;
  --section-y: 96px;

  --font: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

@media (min-width: 1024px) {
  :root { --gutter: 32px; --nav-height: 84px; }
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-primary);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4 { margin: 0; line-height: 1.2; font-weight: 700; }
p { margin: 0; }
ul, dl, dd { margin: 0; padding: 0; }
ul { list-style: none; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

:focus-visible {
  outline: 2px solid var(--blue-light);
  outline-offset: 3px;
  border-radius: 4px;
}

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---------- Logo (inline SVG, colors driven by CSS) ---------- */
.logo {
  --logo-word: var(--navy);
  --logo-accent: var(--blue);
  height: 44px;
  width: auto;
  overflow: visible;
}
.logo__word,
.logo__sub { font-family: var(--font); }
.logo__word { font-size: 196px; font-weight: 700; fill: var(--logo-word); transition: fill .3s ease; }
.logo__sub  { font-size: 57px;  font-weight: 500; fill: var(--logo-accent); transition: fill .3s ease; }
.logo__rule { stroke: var(--logo-accent); stroke-width: 5; transition: stroke .3s ease; }
.logo--dark { --logo-word: #fff; --logo-accent: var(--blue-light); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: .9375rem;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}
.btn .icon { width: 18px; height: 18px; transition: transform .2s ease; }
.btn:hover .icon { transform: translateX(3px); }
.btn--sm { padding: 10px 18px; font-size: .875rem; }
.btn--lg { padding: 15px 28px; font-size: 1rem; }
.btn--block { width: 100%; }

.btn--primary { background: var(--blue); color: #fff; }
.btn--primary:hover { background: var(--blue-dark); }

.btn--ghost { border-color: rgba(255, 255, 255, .3); color: #fff; }
.btn--ghost:hover { border-color: rgba(255, 255, 255, .6); background: rgba(255, 255, 255, .06); }

/* ---------- Tag / eyebrow ---------- */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--blue);
}
.tag__line { display: inline-block; width: 32px; height: 2px; background: currentColor; }
.tag--light { color: var(--blue-light); }
.tag--center { justify-content: center; }

/* ---------- Sections ---------- */
.section { position: relative; padding-block: var(--section-y); }
.section--white { background: var(--surface); }
.section--gray { background: var(--background); }

.section-header { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-header .tag { display: flex; }

.section-title {
  font-size: 2.25rem;
  color: var(--navy);
  letter-spacing: -.01em;
  margin-bottom: 20px;
}
.section-subtitle { font-size: 1.0625rem; color: var(--text-secondary); }

@media (min-width: 768px) {
  .section-title { font-size: 3rem; }
}

.lead { color: var(--text-secondary); font-size: 1rem; margin-bottom: 16px; }
.lead:last-of-type { margin-bottom: 0; }

.split { display: grid; gap: 56px; }
.split__text .btn { margin-top: 32px; }
@media (min-width: 1024px) {
  .split { grid-template-columns: 1fr 1fr; gap: 80px; }
  .split--center { align-items: center; }
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}
.navbar__brand { display: flex; align-items: center; }
.navbar .logo { --logo-word: #fff; --logo-accent: var(--blue-light); height: 38px; }
@media (min-width: 1024px) { .navbar .logo { height: 44px; } }

.navbar__nav { display: none; align-items: center; gap: 28px; }
.navbar__links { display: flex; gap: 4px; }
.navbar__links a {
  position: relative;
  display: block;
  padding: 8px 10px;
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .85);
  transition: color .2s ease;
}
.navbar__links a::after {
  content: "";
  position: absolute;
  left: 10px; right: 10px; bottom: 2px;
  height: 2px;
  background: var(--blue-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease);
}
.navbar__links a:hover,
.navbar__links a.is-active { color: #fff; }
.navbar__links a:hover::after,
.navbar__links a.is-active::after { transform: scaleX(1); }

.navbar__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: var(--radius-sm);
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: color .2s ease, background-color .2s ease;
}
.navbar__toggle .icon { width: 24px; height: 24px; }
.navbar__toggle .icon--close { display: none; }

@media (min-width: 1024px) {
  .navbar__nav { display: flex; }
  .navbar__toggle { display: none; }
}
@media (min-width: 1024px) and (max-width: 1180px) {
  .navbar__links a { padding-inline: 7px; font-size: .8125rem; }
  .navbar__links a::after { left: 7px; right: 7px; }
  .navbar__nav { gap: 16px; }
}

/* Solid state: after scrolling or while the mobile menu is open */
.navbar.is-solid,
.navbar.is-open {
  background: var(--surface);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.navbar.is-solid .logo,
.navbar.is-open .logo { --logo-word: var(--navy); --logo-accent: var(--blue); }
.navbar.is-solid .navbar__links a { color: var(--text-secondary); }
.navbar.is-solid .navbar__links a:hover,
.navbar.is-solid .navbar__links a.is-active { color: var(--navy); }
.navbar.is-solid .navbar__links a::after { background: var(--blue); }
.navbar.is-solid .navbar__toggle,
.navbar.is-open .navbar__toggle { color: var(--navy); }
.navbar.is-open .navbar__toggle .icon--menu { display: none; }
.navbar.is-open .navbar__toggle .icon--close { display: block; }

/* Mobile menu panel */
.mobile-menu {
  display: grid;
  grid-template-rows: 0fr;
  background: var(--surface);
  transition: grid-template-rows .3s var(--ease);
}
.mobile-menu > ul { overflow: hidden; }
.navbar.is-open .mobile-menu { grid-template-rows: 1fr; border-top: 1px solid var(--border); }
.mobile-menu__links li:first-child { padding-top: 12px; }
.mobile-menu__links li:last-child { padding: 16px 0 24px; }
.mobile-menu__links a:not(.btn) {
  display: block;
  padding: 12px 0;
  font-weight: 500;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border);
}
.mobile-menu__links a:not(.btn):hover { color: var(--blue); }
@media (min-width: 1024px) { .mobile-menu { display: none; } }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  min-height: 100svh;
  padding: calc(var(--nav-height) + 48px) 0 112px;
  background: linear-gradient(135deg, #16203C 0%, #1E2D52 60%, #16203C 100%);
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--blue-light);
  z-index: 2;
}
.hero__grid,
.mission__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.hero__network {
  position: absolute;
  top: 50%;
  right: -120px;
  width: min(720px, 80vw);
  height: auto;
  transform: translateY(-50%);
  opacity: .08;
  pointer-events: none;
}
@media (min-width: 1024px) { .hero__network { right: -40px; opacity: .1; } }

.hero__content { position: relative; z-index: 1; }

.hero__title {
  font-size: clamp(2.5rem, 10vw, 4.5rem);
  letter-spacing: -.02em;
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero__title span { color: var(--blue-light); }
.hero__subtitle {
  max-width: 680px;
  font-size: 1.125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .9);
  margin-bottom: 16px;
}
.hero__text {
  max-width: 620px;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 40px;
}
@media (min-width: 768px) { .hero__subtitle { font-size: 1.25rem; } }

.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; }
@media (max-width: 639px) {
  .hero__actions .btn { width: 100%; }
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 720px;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}
.stat { display: flex; flex-direction: column; gap: 6px; }
.stat__value { font-size: 1.75rem; font-weight: 700; color: #fff; line-height: 1.1; }
.stat__label { font-size: .75rem; color: rgba(255, 255, 255, .6); }
@media (min-width: 640px) {
  .stat__value { font-size: 2.25rem; }
  .stat__label { font-size: .875rem; }
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-left: -20px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  color: rgba(255, 255, 255, .7);
  animation: bounce 2s ease-in-out infinite;
  transition: color .2s ease, border-color .2s ease;
}
.hero__scroll:hover { color: #fff; border-color: rgba(255, 255, 255, .5); }
@media (max-height: 700px) { .hero__scroll { display: none; } }

/* ---------- Animations ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(8px); }
}

.fade-up {
  opacity: 0;
  animation: fadeUp .7s ease forwards;
  animation-delay: var(--delay, 0s);
}

/* The stagger delay only applies to opacity/transform so hover effects stay instant */
.js .reveal { opacity: 0; transform: translateY(24px); }
.js .reveal.is-visible {
  opacity: 1;
  transform: none;
  transition:
    opacity .7s ease var(--reveal-delay, 0s),
    transform .7s var(--ease) var(--reveal-delay, 0s),
    border-color .25s ease,
    box-shadow .25s ease,
    background-color .2s ease,
    color .2s ease;
}
.reveal.d-1 { --reveal-delay: .1s; }
.reveal.d-2 { --reveal-delay: .2s; }
.reveal.d-3 { --reveal-delay: .3s; }
.reveal.d-4 { --reveal-delay: .4s; }
.reveal.d-5 { --reveal-delay: .5s; }
.reveal.d-6 { --reveal-delay: .6s; }
.reveal.d-7 { --reveal-delay: .7s; }
.reveal.d-8 { --reveal-delay: .8s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fade-up, .js .reveal { opacity: 1; transform: none; animation: none; transition: none; }
  .hero__scroll { animation: none; }
}

/* ---------- Quiénes somos ---------- */
.checklist { display: grid; gap: 14px; margin-top: 32px; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 500;
  color: var(--text-primary);
}
.checklist .icon { color: var(--blue); margin-top: 1px; }

.about-visual {
  position: relative;
  align-self: center;
  margin: 16px 16px 32px 0;
}
.about-visual__corner {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 112px;
  height: 112px;
  border-top: 2px solid var(--blue-light);
  border-right: 2px solid var(--blue-light);
  border-top-right-radius: var(--radius-lg);
}
.about-visual__media {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  box-shadow: var(--shadow-lg);
}
.about-visual__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .6;
  mix-blend-mode: luminosity;
}
.about-visual__card {
  position: absolute;
  left: -8px;
  bottom: -32px;
  max-width: 240px;
  padding: 22px 24px;
  border-radius: var(--radius-md);
  background: var(--blue);
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.about-visual__card strong { display: block; font-size: 2.25rem; line-height: 1.1; margin-bottom: 6px; }
.about-visual__card span { display: block; font-size: .875rem; color: rgba(255, 255, 255, .85); }
@media (min-width: 640px) {
  .about-visual__card { left: -24px; }
}

/* ---------- Servicios ---------- */
.services-grid { display: grid; gap: 20px; }
@media (min-width: 768px)  { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; } }

.service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: none;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.service-card:hover { border-color: var(--blue-light); box-shadow: var(--shadow-lg); }
.service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
  border-radius: var(--radius-sm);
  background: var(--background);
  color: var(--navy);
  transition: background-color .25s ease, color .25s ease;
}
.service-card__icon .icon { width: 22px; height: 22px; }
.service-card:hover .service-card__icon { background: var(--blue); color: #fff; }
.service-card h3 { font-size: 1.0625rem; color: var(--navy); }
.service-card p { font-size: .875rem; color: var(--text-secondary); }

/* ---------- Misión ---------- */
.mission {
  background: linear-gradient(135deg, #16203C 0%, #1E2D52 100%);
  color: #fff;
  overflow: hidden;
}
.mission::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--blue-light);
}
.mission__content {
  position: relative;
  max-width: calc(768px + var(--gutter) * 2);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mission__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 28px;
  border: 1px solid rgba(61, 132, 226, .4);
  border-radius: 999px;
  color: var(--blue-light);
}
.mission__icon .icon { width: 28px; height: 28px; stroke-width: 1.75; }
.mission__quote {
  margin: 8px 0 0;
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.45;
  color: #fff;
}
@media (min-width: 768px) { .mission__quote { font-size: 1.875rem; } }
.mission__rule {
  display: block;
  width: 64px;
  height: 3px;
  margin-top: 40px;
  border-radius: 2px;
  background: var(--blue-light);
}

/* ---------- Valores ---------- */
.values-grid { display: grid; gap: 40px 32px; }
@media (min-width: 640px)  { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .values-grid { grid-template-columns: repeat(3, 1fr); gap: 48px 40px; } }

.value { display: flex; flex-direction: column; gap: 12px; }
.value__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 8px;
  border: 1px solid rgba(61, 132, 226, .3);
  border-radius: var(--radius-sm);
  color: var(--blue);
}
.value__icon .icon { width: 24px; height: 24px; }
.value h3 { font-size: 1.125rem; color: var(--navy); }
.value p { color: var(--text-secondary); font-size: .9375rem; }

/* ---------- Empleos ---------- */
.careers-card { padding: 32px; }
@media (min-width: 640px) { .careers-card { padding: 40px; } }
.careers-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.careers-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--blue);
  color: #fff;
}
.careers-card__icon .icon { width: 24px; height: 24px; }
.careers-card__eyebrow {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gray-dark);
  margin-bottom: 2px;
}
.careers-card__title { font-size: 1.25rem; color: var(--navy); }

.careers-card__areas { display: grid; gap: 12px 24px; }
@media (min-width: 640px) { .careers-card__areas { grid-template-columns: repeat(2, 1fr); } }
.careers-card__areas li,
.dot-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .9375rem;
  font-weight: 500;
  color: var(--text-primary);
}
.careers-card__areas li::before,
.dot-list li::before {
  content: "";
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--blue);
}
.careers-card__areas li {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: var(--background);
}
.careers-card__footer {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: .875rem;
  color: var(--text-secondary);
}
.careers-card__footer a { color: var(--blue); font-weight: 600; word-break: break-word; }
.careers-card__footer a:hover { color: var(--blue-dark); text-decoration: underline; }

/* ---------- Contacto ---------- */
.contact-blocks { display: grid; gap: 20px; }

.contact-email {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: border-color .25s ease, box-shadow .25s ease;
}
.contact-email:hover { border-color: var(--blue-light); box-shadow: var(--shadow-md); }
.contact-email__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: var(--background);
  color: var(--navy);
  transition: background-color .25s ease, color .25s ease;
}
.contact-email:hover .contact-email__icon { background: var(--blue); color: #fff; }
.contact-email__text { display: flex; flex-direction: column; min-width: 0; flex: 1; }
.contact-email__label { font-size: .8125rem; color: var(--text-secondary); }
.contact-email__value {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--blue);
  overflow-wrap: anywhere;
}
.contact-email__arrow { color: var(--gray-dark); transition: color .2s ease, transform .2s ease; }
.contact-email:hover .contact-email__arrow { color: var(--blue); transform: translate(2px, -2px); }

.contact-topics {
  padding: 28px;
  border-radius: var(--radius-md);
  background: var(--background);
}
.contact-topics h3 { font-size: 1.0625rem; color: var(--navy); margin-bottom: 18px; }
.dot-list { display: grid; gap: 12px; }

/* ---------- Footer ---------- */
.footer { background: var(--navy); color: #fff; padding-top: 72px; }
.footer__grid { display: grid; gap: 48px; padding-bottom: 56px; }
@media (min-width: 768px) {
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
.footer__brand .logo { height: 48px; margin-bottom: 20px; }
.footer__brand p { max-width: 320px; font-size: .875rem; color: rgba(255, 255, 255, .6); margin-bottom: 16px; }
.footer__email { font-size: .875rem; font-weight: 600; color: var(--blue-light); transition: color .2s ease; }
.footer__email:hover { color: #fff; }

.footer__col h3 {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 20px;
}
.footer__col ul { display: grid; gap: 10px; }
.footer__col a { font-size: .875rem; color: rgba(255, 255, 255, .75); transition: color .2s ease; }
.footer__col a:hover { color: var(--blue-light); }

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-block: 24px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: .8125rem;
  color: rgba(255, 255, 255, .5);
}
.footer__signature {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--blue-light);
}
.footer__signature .tag__line { width: 24px; height: 1px; }
@media (min-width: 768px) {
  .footer__bottom { flex-direction: row; align-items: center; justify-content: space-between; }
}
