﻿:root {
  --azul-claro: #7d95c4;
  --amarillo: #e0a41c;
  --azul-oscuro: #131767;
  --azul-medio: #27338f;
  --tinta: #101741;
  --fondo: #f3f6ff;
  --blanco: #ffffff;
  --borde: rgba(19, 23, 103, 0.22);
  --sombra: 0 18px 36px rgba(19, 23, 103, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Nunito", sans-serif;
  color: var(--tinta);
  background: var(--fondo);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.pattern-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1100px 480px at 0% -10%, rgba(19, 23, 103, 0.34), transparent 60%),
    radial-gradient(950px 420px at 100% 0%, rgba(125, 149, 196, 0.5), transparent 58%),
    linear-gradient(180deg, #f7f9ff 0%, #eef3ff 100%);
}

.pattern-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image:
    linear-gradient(45deg, rgba(19, 23, 103, 0.24) 1px, transparent 1px),
    linear-gradient(-45deg, rgba(224, 164, 28, 0.18) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 70%);
}

.container {
  width: min(1160px, calc(100% - 2.4rem));
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(19, 23, 103, 0.1), rgba(125, 149, 196, 0.11));
  border-top: 1px solid rgba(19, 23, 103, 0.15);
  border-bottom: 1px solid rgba(19, 23, 103, 0.15);
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
  line-height: 1.2;
  color: var(--azul-oscuro);
}

h1,
h2 {
  font-family: "Fraunces", serif;
}

h1 {
  font-size: clamp(1.85rem, 3.6vw, 3.05rem);
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.65rem);
}

h3 {
  font-size: 1.22rem;
}

p {
  margin: 0 0 1rem;
}

.kicker {
  margin: 0 0 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.74rem;
  font-weight: 900;
  color: var(--azul-medio);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(12px);
  background: rgba(244, 247, 255, 0.82);
  border-bottom: 1px solid rgba(19, 23, 103, 0.2);
}

.nav-shell {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.72rem;
  flex-shrink: 0;
}

.brand-logo {
  display: block;
  height: 62px;
  width: auto;
  object-fit: contain;
}

.logo-mark {
  width: 42px;
  aspect-ratio: 1;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: var(--azul-oscuro);
  background: linear-gradient(135deg, #f0cb59, var(--amarillo));
}

.logo strong {
  display: block;
  font-size: 0.98rem;
}

.logo small {
  color: rgba(16, 23, 65, 0.76);
  font-size: 0.78rem;
  font-weight: 700;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.02rem;
}

.main-nav a {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--azul-oscuro);
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.34rem;
  width: 100%;
  height: 2px;
  border-radius: 3px;
  background: var(--amarillo);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}

.main-nav .nav-cta {
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  border: 1px solid var(--borde);
  background: rgba(255, 255, 255, 0.7);
}

.main-nav .nav-cta::after {
  display: none;
}

.menu-btn {
  display: none;
  width: 40px;
  border: 0;
  background: transparent;
  padding: 0;
}

.menu-btn span {
  display: block;
  height: 2px;
  margin: 7px 0;
  background: var(--azul-oscuro);
}

.hero {
  padding: 4.9rem 0 3.5rem;
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 1rem;
  align-items: stretch;
}

.hero-copy,
.hero-media {
  border-radius: 26px;
  border: 1px solid var(--borde);
  box-shadow: var(--sombra);
}

.hero-copy {
  padding: 1.8rem;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.93), rgba(227, 234, 255, 0.82));
}

.hero-lead {
  max-width: 64ch;
}

.hero-points {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
}

.hero-points li + li {
  margin-top: 0.35rem;
}

.hero-points li::marker {
  color: var(--amarillo);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.hero-media {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  background: linear-gradient(135deg, rgba(19, 23, 103, 0.8), rgba(125, 149, 196, 0.5));
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
  filter: contrast(1.1) saturate(1.08);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(19, 23, 103, 0.1), rgba(19, 23, 103, 0.75));
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.8rem 1.2rem;
  font-size: 0.92rem;
  font-weight: 900;
  transition: transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--blanco);
  background: linear-gradient(145deg, var(--azul-oscuro), #2a36a1);
  box-shadow: 0 8px 20px rgba(19, 23, 103, 0.28);
}

.btn-light {
  border: 1px solid var(--borde);
  background: var(--blanco);
}

.section-head {
  max-width: 780px;
  margin-bottom: 1.5rem;
}

.pillars-grid,
.facts-grid,
.activities-grid,
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.pillar-card,
.facts-grid article,
.activities-grid article,
.steps-grid li,
.facility-grid article,
.blocks-grid article,
.ig-section {
  border: 1px solid var(--borde);
  background: rgba(255, 255, 255, 0.88);
  border-radius: 16px;
}

.pillar-card,
.facts-grid article,
.activities-grid article,
.steps-grid li,
.facility-grid article {
  padding: 1rem;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.pillar-card:hover,
.facts-grid article:hover,
.activities-grid article:hover,
.steps-grid li:hover,
.facility-grid article:hover {
  background: rgba(255, 245, 219, 0.85);
  border-color: rgba(224, 164, 28, 0.55);
  transform: translateY(-2px);
}

.facility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.facility-grid ul {
  margin: 0;
  padding-left: 1.1rem;
}

.blocks-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
}

.blocks-grid article {
  padding: 0.95rem 0.85rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(125, 149, 196, 0.17));
}

.blocks-grid strong {
  display: block;
  margin-bottom: 0.4rem;
}

.blocks-grid p {
  margin: 0;
  font-size: 0.9rem;
}

.method-note {
  margin-top: 0.9rem;
  border-left: 4px solid var(--amarillo);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 0 12px 12px 0;
  padding: 0.9rem 1rem;
}

.planing-ui {
  border: 1px solid var(--borde);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  padding: 1rem;
}

.planing-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.9rem;
}

.planing-tab {
  border: 1px solid rgba(19, 23, 103, 0.24);
  background: rgba(255, 255, 255, 0.95);
  color: var(--azul-oscuro);
  border-radius: 999px;
  padding: 0.45rem 0.78rem;
  font-weight: 900;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.planing-tab:hover {
  background: rgba(224, 164, 28, 0.22);
  border-color: rgba(224, 164, 28, 0.85);
  transform: translateY(-1px);
}

.planing-tab.is-active {
  background: linear-gradient(145deg, var(--azul-oscuro), #2b39aa);
  color: var(--blanco);
  border-color: var(--azul-oscuro);
}

.planing-panel {
  display: none;
  border: 1px solid rgba(19, 23, 103, 0.16);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(236, 241, 255, 0.9), rgba(255, 248, 229, 0.7));
  padding: 1rem;
  animation: panelIn 0.22s ease;
}

.planing-panel.is-active {
  display: block;
}

.planing-panel ul {
  margin: 0;
  padding-left: 1.1rem;
}

.planing-panel li + li {
  margin-top: 0.25rem;
}

.planing-panel li::marker {
  color: var(--amarillo);
}

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.includes-wrap {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr 0.62fr;
  gap: 0.9rem;
}

.includes-card,
.price-card {
  border-radius: 20px;
  border: 1px solid var(--borde);
  background: rgba(255, 255, 255, 0.94);
  padding: 1.2rem;
}

.includes-card ul {
  margin: 0;
  padding-left: 1.15rem;
}

.amount {
  margin: 0.45rem 0 0.6rem;
  line-height: 1;
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 3.8vw, 2.95rem);
  color: var(--azul-oscuro);
}

.amount span {
  font-size: 1rem;
  font-family: "Nunito", sans-serif;
  color: rgba(16, 23, 65, 0.8);
}

.small {
  font-size: 0.9rem;
}

.ig-section {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1rem;
  padding: 1rem;
  align-items: center;
}

.ig-section img {
  width: 100%;
  border-radius: 14px;
  border: 2px solid rgba(19, 23, 103, 0.24);
}

.contact-box {
  margin-top: 1rem;
  border-radius: 16px;
  border: 1px solid var(--borde);
  background: linear-gradient(145deg, rgba(19, 23, 103, 0.16), rgba(125, 149, 196, 0.24));
  padding: 1.2rem;
}

.site-footer {
  padding: 1.2rem 0 1.8rem;
}

.footer-shell {
  border-top: 1px solid rgba(19, 23, 103, 0.2);
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  color: rgba(16, 23, 65, 0.8);
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .blocks-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .facility-grid,
  .facts-grid,
  .activities-grid,
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .includes-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .menu-btn {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid var(--borde);
    border-radius: 14px;
    background: var(--blanco);
    box-shadow: var(--sombra);
    padding: 1rem;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav .nav-cta {
    width: 100%;
    text-align: center;
  }

  .section {
    padding: 4rem 0;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(1160px, calc(100% - 1.2rem));
  }

  .facility-grid,
  .blocks-grid,
  .facts-grid,
  .activities-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .ig-section {
    grid-template-columns: 1fr;
  }

  .ig-section img {
    width: 96px;
  }

  .footer-shell {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-logo {
    height: 48px;
  }
}

.facility-img {
  width: 100%;
  height: 134px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 0.85rem;
  border: 1px solid rgba(19, 23, 103, 0.22);
}

.mba-showcase {
  border: 1px solid var(--borde);
  border-radius: 20px;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.94), rgba(230, 236, 255, 0.82));
  padding: 1rem;
}

.mba-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 0.9rem;
}

.mba-tab {
  border: 1px solid rgba(19, 23, 103, 0.24);
  background: rgba(255, 255, 255, 0.94);
  color: var(--azul-oscuro);
  border-radius: 999px;
  padding: 0.5rem 0.82rem;
  font-weight: 900;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.mba-tab:hover {
  border-color: rgba(224, 164, 28, 0.9);
  background: rgba(224, 164, 28, 0.18);
  transform: translateY(-1px);
}

.mba-tab.is-active {
  background: linear-gradient(145deg, var(--azul-oscuro), #2b39aa);
  border-color: var(--azul-oscuro);
  color: var(--blanco);
}

.mba-panel {
  display: none;
  border-radius: 14px;
  border: 1px solid rgba(19, 23, 103, 0.16);
  background: linear-gradient(180deg, rgba(240, 244, 255, 0.95), rgba(255, 248, 230, 0.75));
  padding: 1rem;
  animation: panelIn 0.24s ease;
}

.mba-panel.is-active {
  display: block;
}

.mba-panel ul {
  margin: 0;
  padding-left: 1.15rem;
}

.mba-panel li + li {
  margin-top: 0.28rem;
}

.mba-panel li::marker {
  color: var(--amarillo);
}

.nfc-demo {
  margin-top: 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(19, 23, 103, 0.15);
  background: rgba(255, 255, 255, 0.88);
  padding: 0.8rem;
}

.nfc-demo p {
  margin-bottom: 0.55rem;
  font-weight: 800;
}

.nfc-display {
  font-size: 1.45rem;
  font-family: "Fraunces", serif;
  color: var(--azul-oscuro);
  margin-bottom: 0.65rem;
}

.nfc-display.flash {
  color: var(--amarillo);
}

.nfc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.nfc-btn {
  border: 1px solid rgba(19, 23, 103, 0.3);
  background: #fff;
  color: var(--azul-oscuro);
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
  font-weight: 800;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.nfc-btn:hover {
  border-color: rgba(224, 164, 28, 0.9);
  background: rgba(224, 164, 28, 0.2);
  transform: translateY(-1px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.gallery-item {
  margin: 0;
  min-height: 170px;
  border: 1px dashed rgba(19, 23, 103, 0.35);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(214, 224, 255, 0.6));
  display: grid;
  place-items: center;
  font-weight: 800;
  color: rgba(19, 23, 103, 0.72);
  transition: border-color 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.gallery-item:hover {
  border-color: rgba(224, 164, 28, 0.85);
  transform: translateY(-2px);
  background: linear-gradient(145deg, rgba(255, 248, 230, 0.94), rgba(218, 229, 255, 0.7));
}

.gallery-item--real {
  border-style: solid;
  padding: 0;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nfc-band-img {
  width: min(320px, 100%);
  margin: 0.9rem 0 0.2rem;
  border-radius: 12px;
  border: 1px solid rgba(19, 23, 103, 0.2);
  box-shadow: 0 10px 22px rgba(19, 23, 103, 0.16);
}

@media (max-width: 920px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
/* Instagram section: intro + 3x3 placeholder grid */
.ig-section {
  display: grid;
  gap: 1rem;
  padding: 1rem;
}

.ig-intro {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1rem;
  align-items: center;
}

.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}

.ig-grid-item {
  margin: 0;
  min-height: 120px;
  border-radius: 12px;
  border: 1px dashed rgba(19, 23, 103, 0.34);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(214, 224, 255, 0.6));
  display: grid;
  place-items: center;
  font-weight: 800;
  color: rgba(19, 23, 103, 0.75);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.ig-grid-item:hover {
  border-color: rgba(224, 164, 28, 0.9);
  transform: translateY(-2px);
}

/* Registration list: remove outer numbers to avoid duplicates */
.steps-grid {
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 620px) {
  .ig-intro {
    grid-template-columns: 1fr;
  }

  .ig-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* Forms: inscription + doubts */
.enroll-form,
.mini-form {
  display: grid;
  gap: 0.7rem;
}

.enroll-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0.8rem;
}

.enroll-form .field-full {
  grid-column: 1 / -1;
}

.enroll-form label,
.mini-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 800;
  color: var(--azul-oscuro);
}

.enroll-form input,
.enroll-form select,
.enroll-form textarea,
.mini-form input,
.mini-form select,
.mini-form textarea {
  width: 100%;
  border: 1px solid rgba(19, 23, 103, 0.22);
  border-radius: 10px;
  padding: 0.62rem 0.7rem;
  font: inherit;
  color: var(--tinta);
  background: rgba(255, 255, 255, 0.95);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.enroll-form input:focus,
.enroll-form select:focus,
.enroll-form textarea:focus,
.mini-form input:focus,
.mini-form select:focus,
.mini-form textarea:focus {
  outline: none;
  border-color: rgba(224, 164, 28, 0.95);
  box-shadow: 0 0 0 3px rgba(224, 164, 28, 0.18);
}

.enroll-form button {
  width: fit-content;
}

.doubts-grid {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.doubt-card {
  border-radius: 12px;
  border: 1px solid rgba(19, 23, 103, 0.22);
  background: rgba(255, 255, 255, 0.9);
  padding: 0.9rem;
}

.doubt-card h4 {
  margin: 0 0 0.4rem;
  color: var(--azul-oscuro);
}

@media (max-width: 620px) {
  .enroll-form,
  .doubts-grid {
    grid-template-columns: 1fr;
  }
}
/* Integrated imagery across sections */
.feature-img,
.activity-img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(19, 23, 103, 0.2);
  margin-bottom: 0.75rem;
}

/* Activities in a single visual row */
.activities-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.9rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
}

.activities-grid article {
  min-width: 250px;
  flex: 1 1 0;
}

@media (min-width: 1200px) {
  .activities-grid article {
    min-width: 0;
  }
}
/* CTA accent */
.btn-accent {
  color: var(--azul-oscuro);
  background: linear-gradient(145deg, #f4cb5c, #e0a41c);
  border: 1px solid rgba(224, 164, 28, 0.95);
  box-shadow: 0 10px 20px rgba(224, 164, 28, 0.32);
}

.btn-accent:hover {
  transform: translateY(-2px) scale(1.01);
}

/* Enroll section more notable */
.contact-box--enroll {
  border-color: rgba(224, 164, 28, 0.82);
  background: linear-gradient(145deg, rgba(19, 23, 103, 0.2), rgba(224, 164, 28, 0.24));
  box-shadow: 0 16px 34px rgba(19, 23, 103, 0.18);
}

.contact-box--enroll h3 {
  font-size: 1.5rem;
}

/* Doubts: quieter but dynamic */
.contact-box--doubts {
  border-color: rgba(19, 23, 103, 0.16);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(223, 232, 255, 0.66));
  box-shadow: none;
}

.doubt-switches {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.doubt-switch {
  border: 1px solid rgba(19, 23, 103, 0.26);
  background: rgba(255, 255, 255, 0.88);
  color: var(--azul-oscuro);
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  font-weight: 800;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.doubt-switch:hover {
  border-color: rgba(224, 164, 28, 0.9);
  background: rgba(224, 164, 28, 0.2);
}

.doubt-switch.is-active {
  background: rgba(19, 23, 103, 0.9);
  border-color: rgba(19, 23, 103, 0.9);
  color: #fff;
}

.doubt-panels {
  margin-top: 0.8rem;
}

.doubt-panel {
  display: none;
  border-radius: 12px;
  border: 1px solid rgba(19, 23, 103, 0.16);
  background: rgba(255, 255, 255, 0.88);
  padding: 0.85rem;
  animation: panelIn 0.22s ease;
}

.doubt-panel.is-active {
  display: block;
}

.doubt-panel h4 {
  margin: 0 0 0.45rem;
}
/* MBA fusion adjustments */
.mba-explorer-block {
  margin-top: 1rem;
}

.nfc-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0.9rem;
  align-items: start;
}

.nfc-layout .nfc-band-img {
  margin-top: 0.1rem;
  justify-self: end;
}

@media (max-width: 860px) {
  .nfc-layout {
    grid-template-columns: 1fr;
  }

  .nfc-layout .nfc-band-img {
    justify-self: start;
  }
}
/* Simplified top nav */
.main-nav {
  gap: 0.85rem;
}

.main-nav a {
  white-space: nowrap;
}

/* Inscription wizard */
.contact-box--enroll {
  overflow: hidden;
}

.enroll-wizard {
  margin-top: 0.8rem;
  display: grid;
  gap: 1rem;
}

.wizard-top {
  display: grid;
  gap: 0.5rem;
}

.wizard-eyebrow {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.wizard-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.wizard-step {
  display: grid;
  justify-items: center;
  gap: 0.25rem;
  padding: 0.55rem 0.4rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.wizard-step span {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.18);
}

.wizard-step small {
  font-weight: 800;
  font-size: 0.75rem;
}

.wizard-step.is-active {
  border-color: rgba(224, 164, 28, 0.85);
  background: rgba(224, 164, 28, 0.2);
  color: #fff;
  transform: translateY(-2px);
}

.wizard-step.is-active span,
.wizard-step.is-done span {
  background: rgba(224, 164, 28, 0.95);
  color: var(--azul-oscuro);
}

.wizard-step.is-done {
  border-color: rgba(224, 164, 28, 0.35);
  color: rgba(255, 255, 255, 0.92);
}

.wizard-panel {
  display: none;
  padding: 1rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.93);
  color: var(--tinta);
  animation: wizard-in 0.28s ease;
}

.wizard-panel.is-active {
  display: grid;
  gap: 0.9rem;
}

@keyframes wizard-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wizard-field {
  display: grid;
  gap: 0.4rem;
  font-weight: 800;
  color: var(--azul-oscuro);
}

.wizard-field input,
.wizard-field textarea {
  width: 100%;
  border: 1px solid rgba(19, 23, 103, 0.24);
  border-radius: 12px;
  padding: 0.72rem 0.82rem;
  font: inherit;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.wizard-field input:focus,
.wizard-field textarea:focus {
  outline: none;
  border-color: rgba(224, 164, 28, 0.9);
  box-shadow: 0 0 0 3px rgba(224, 164, 28, 0.2);
}

.age-control {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.7rem;
}

#childAgeRange {
  accent-color: var(--amarillo);
}

.age-chip {
  border-radius: 999px;
  padding: 0.4rem 0.7rem;
  font-weight: 900;
  background: rgba(224, 164, 28, 0.22);
  color: var(--azul-oscuro);
}

.wizard-help {
  margin: 0;
  font-weight: 700;
  color: var(--azul-oscuro);
}

.date-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.date-chip {
  border: 1px solid rgba(19, 23, 103, 0.26);
  border-radius: 12px;
  padding: 0.62rem 0.7rem;
  text-align: left;
  font: inherit;
  font-weight: 800;
  color: var(--azul-oscuro);
  background: rgba(255, 255, 255, 0.94);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.date-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(224, 164, 28, 0.95);
  background: rgba(224, 164, 28, 0.15);
}

.date-chip.is-active {
  border-color: rgba(19, 23, 103, 0.95);
  background: linear-gradient(145deg, rgba(19, 23, 103, 0.92), rgba(40, 52, 146, 0.9));
  color: #fff;
}

.wizard-summary {
  border-radius: 12px;
  border: 1px solid rgba(19, 23, 103, 0.14);
  background: linear-gradient(145deg, rgba(243, 246, 255, 0.95), rgba(223, 232, 255, 0.8));
  padding: 0.85rem;
}

.wizard-summary h4 {
  margin: 0 0 0.45rem;
}

.wizard-summary p {
  margin: 0.15rem 0;
}

.wizard-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.wizard-prev[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
}

.wizard-note {
  margin: 0;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.9);
}

.wizard-success {
  margin: 0;
  border-radius: 10px;
  border: 1px solid rgba(224, 164, 28, 0.5);
  background: rgba(224, 164, 28, 0.2);
  color: #fff;
  padding: 0.6rem 0.75rem;
  font-weight: 800;
}

.enroll-wizard.is-sent .wizard-submit {
  opacity: 0.65;
  pointer-events: none;
}

@media (max-width: 620px) {
  .date-options {
    grid-template-columns: 1fr;
  }

  .wizard-actions .btn {
    width: 100%;
  }
}
/* Wizard v2: cleaner palette and dynamic cards */
.contact-box--enroll {
  background: linear-gradient(160deg, #1a237c 0%, #22339a 58%, #2c4bb4 100%);
  border: 1px solid rgba(125, 149, 196, 0.45);
}

.enroll-wizard {
  gap: 1.1rem;
}

.wizard-panel {
  border: 1px solid rgba(125, 149, 196, 0.4);
  background: linear-gradient(165deg, #f8fbff 0%, #edf3ff 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.children-list {
  display: grid;
  gap: 0.8rem;
}

.child-card {
  border: 1px solid rgba(19, 23, 103, 0.2);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  padding: 0.9rem;
  display: grid;
  gap: 0.65rem;
}

.child-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.child-head h4 {
  margin: 0;
  font-size: 1rem;
}

.remove-child {
  border: 1px solid rgba(19, 23, 103, 0.25);
  background: #fff;
  color: var(--azul-oscuro);
  border-radius: 999px;
  padding: 0.28rem 0.62rem;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
}

.remove-child:hover {
  border-color: rgba(224, 164, 28, 0.95);
  background: rgba(224, 164, 28, 0.14);
}

.sibling-check {
  display: flex;
  align-items: center;
  gap: 0.48rem;
  font-weight: 800;
  color: var(--azul-oscuro);
}

.sibling-check.is-hidden,
.remove-child.is-hidden {
  display: none;
}

.age-inline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 64px auto;
  align-items: center;
  gap: 0.55rem;
}

.age-inline .child-age-range {
  width: 100%;
  accent-color: var(--amarillo);
}

.age-inline .child-age-input {
  width: 64px;
  text-align: center;
  border: 1px solid rgba(19, 23, 103, 0.25);
  border-radius: 8px;
  padding: 0.38rem 0.3rem;
  font-weight: 800;
  color: var(--azul-oscuro);
}

.age-years {
  font-weight: 900;
  color: var(--azul-oscuro);
  white-space: nowrap;
}

.add-child-btn {
  justify-self: start;
}

.add-child-btn[disabled] {
  opacity: 0.65;
  cursor: not-allowed;
}

.date-options {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.date-chip {
  text-align: left;
  display: grid;
  gap: 0.2rem;
  border-width: 2px;
}

.date-chip span {
  font-weight: 900;
}

.date-chip small {
  font-size: 0.74rem;
  font-weight: 800;
  opacity: 0.9;
}

.date-chip[data-status="ok"] {
  border-color: rgba(37, 142, 74, 0.55);
  background: rgba(224, 248, 231, 0.82);
  color: #166436;
}

.date-chip[data-status="ok"]:hover {
  border-color: rgba(23, 115, 57, 0.9);
  background: rgba(193, 237, 206, 0.95);
}

.date-chip.is-low,
.date-chip[data-status="low"] {
  border-color: rgba(224, 164, 28, 0.72);
  background: rgba(255, 241, 205, 0.92);
  color: #895e00;
}

.date-chip.is-low:hover,
.date-chip[data-status="low"]:hover {
  border-color: rgba(224, 164, 28, 0.98);
  background: rgba(255, 231, 164, 0.98);
}

.date-chip.is-active {
  background: linear-gradient(145deg, #131767, #2b3eb1);
  border-color: #131767;
  color: #fff;
}

.coupon-box {
  border: 1px dashed rgba(19, 23, 103, 0.33);
  border-radius: 12px;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.82);
}

.coupon-title {
  margin: 0 0 0.4rem;
  font-weight: 900;
  color: var(--azul-oscuro);
}

.coupon-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.55rem;
}

.coupon-row input {
  border: 1px solid rgba(19, 23, 103, 0.24);
  border-radius: 10px;
  padding: 0.62rem 0.72rem;
  font: inherit;
}

.coupon-help {
  margin: 0.5rem 0 0;
  font-size: 0.82rem;
  color: rgba(19, 23, 103, 0.82);
}

.coupon-list {
  margin: 0.55rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.4rem;
}

.coupon-item {
  border-radius: 10px;
  background: rgba(19, 23, 103, 0.08);
  border: 1px solid rgba(19, 23, 103, 0.16);
  padding: 0.4rem 0.55rem;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
}

.coupon-item strong {
  color: #0f6e32;
}

.coupon-item button {
  border: 0;
  background: transparent;
  color: var(--azul-oscuro);
  font-weight: 800;
  cursor: pointer;
}

.wizard-summary--price {
  border: 1px solid rgba(19, 23, 103, 0.2);
  background: linear-gradient(145deg, #ffffff, #f2f6ff);
}

.price-lines {
  margin-top: 0.4rem;
  display: grid;
  gap: 0.35rem;
}

.price-lines p {
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
}

.price-discount strong {
  color: #0f6e32;
  font-size: 1.05rem;
}

.price-total {
  margin-top: 0.35rem !important;
  border-top: 1px dashed rgba(19, 23, 103, 0.28);
  padding-top: 0.55rem;
}

.price-total strong {
  font-size: 1.5rem;
  color: var(--azul-oscuro);
}

.discount-badge {
  margin-top: 0.65rem;
  border-radius: 10px;
  border: 1px solid rgba(19, 23, 103, 0.14);
  background: rgba(19, 23, 103, 0.06);
  padding: 0.5rem 0.68rem;
  font-weight: 800;
}

.discount-badge.has-discount {
  border-color: rgba(15, 110, 50, 0.55);
  background: rgba(201, 245, 219, 0.92);
  color: #0f6e32;
  font-size: 1.02rem;
}

@media (max-width: 720px) {
  .age-inline {
    grid-template-columns: 1fr;
    gap: 0.42rem;
  }

  .age-inline .child-age-input {
    width: 100%;
    max-width: 96px;
  }

  .coupon-row {
    grid-template-columns: 1fr;
  }
}
.price-discount strong {
  font-size: 1.22rem;
  font-weight: 900;
}

.discount-badge.has-discount {
  font-size: 1.12rem;
  box-shadow: 0 8px 20px rgba(15, 110, 50, 0.18);
}
/* Lighter enroll block override */
.contact-box--enroll {
  background: linear-gradient(160deg, #dfe8ff 0%, #eaf1ff 55%, #f4f8ff 100%);
  border: 1px solid rgba(19, 23, 103, 0.22);
  box-shadow: 0 14px 28px rgba(19, 23, 103, 0.12);
}

.wizard-eyebrow,
.wizard-note {
  color: rgba(19, 23, 103, 0.82);
}

.wizard-step {
  border-color: rgba(19, 23, 103, 0.2);
  background: rgba(255, 255, 255, 0.78);
  color: rgba(19, 23, 103, 0.78);
}

.wizard-success {
  color: var(--azul-oscuro);
  border-color: rgba(224, 164, 28, 0.55);
  background: rgba(255, 234, 181, 0.9);
}
/* MBA tabs with image thumbnails */
.mba-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.mba-tab img {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(19, 23, 103, 0.2);
  flex-shrink: 0;
}

.mba-tab span {
  line-height: 1;
}

.mba-tab.is-active img {
  border-color: rgba(255, 255, 255, 0.55);
}
/* MBA panel visuals + icon-like internet images */
.mba-panel-layout {
  display: grid;
  grid-template-columns: 1fr 170px;
  align-items: start;
  gap: 0.9rem;
}

.mba-panel-visual {
  margin: 0;
  border: 1px solid rgba(19, 23, 103, 0.14);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  padding: 0.8rem 0.65rem;
  text-align: center;
}

.mba-panel-visual img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  margin: 0 auto 0.45rem;
  filter: drop-shadow(0 6px 10px rgba(19, 23, 103, 0.12));
}

.mba-panel-visual figcaption {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 800;
  color: rgba(19, 23, 103, 0.85);
}

.mba-tab img {
  object-fit: contain;
  background: rgba(255, 255, 255, 0.96);
  padding: 4px;
}

.mba-tab.is-active img {
  background: rgba(255, 255, 255, 0.18);
}

@media (max-width: 860px) {
  .mba-panel-layout {
    grid-template-columns: 1fr;
  }

  .mba-panel-visual {
    max-width: 260px;
  }
}
/* MBA panel visuals: panoramic image ratio */
.mba-panel-visual {
  align-self: start;
}

.mba-panel-visual img {
  width: 100%;
  max-width: 100%;
  height: 96px;
  border-radius: 10px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.9);
  margin: 0 auto 0.45rem;
}

@media (max-width: 860px) {
  .mba-panel-visual img {
    height: 120px;
  }
}
/* MBA panel image wider override */
.mba-panel-layout {
  grid-template-columns: 1fr 260px;
}

.mba-panel-visual {
  width: 100%;
}

.mba-panel-visual img {
  width: 100%;
  height: 140px;
}

@media (max-width: 860px) {
  .mba-panel-layout {
    grid-template-columns: 1fr;
  }

  .mba-panel-visual {
    max-width: 100%;
  }

  .mba-panel-visual img {
    height: 160px;
  }
}
/* Planning panels with side visuals (same language as MBA section) */
.planing-panel-layout {
  display: grid;
  grid-template-columns: 1fr 250px;
  gap: 0.9rem;
  align-items: start;
}

.planing-panel-visual {
  margin: 0;
  border: 1px solid rgba(19, 23, 103, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.55rem;
  text-align: center;
}

.planing-panel-visual img {
  width: 100%;
  height: 132px;
  object-fit: cover;
  border-radius: 9px;
  margin-bottom: 0.45rem;
}

.planing-panel-visual figcaption {
  margin: 0;
  font-size: 0.79rem;
  font-weight: 800;
  color: rgba(19, 23, 103, 0.84);
}

@media (max-width: 860px) {
  .planing-panel-layout {
    grid-template-columns: 1fr;
  }

  .planing-panel-visual img {
    height: 158px;
  }
}
/* Unified yellow highlight block */
.mega-highlight {
  border: 1px solid rgba(224, 164, 28, 0.65);
  border-radius: 24px;
  padding: 1.3rem;
  background: linear-gradient(160deg, rgba(255, 244, 208, 0.98) 0%, rgba(255, 236, 176, 0.98) 52%, rgba(255, 248, 224, 0.98) 100%);
  box-shadow: 0 22px 44px rgba(122, 91, 0, 0.18);
}

.mega-highlight-head {
  max-width: 920px;
}

.mega-highlight-head h2 {
  color: #5d4300;
}

.mega-pillars {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.mega-pillars article {
  border: 1px solid rgba(122, 91, 0, 0.28);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.68);
}

.mega-pillars h3 {
  margin-bottom: 0.55rem;
  color: #5d4300;
}

.mega-pillars ul {
  margin: 0;
  padding-left: 1.1rem;
}

.mega-pillars li + li {
  margin-top: 0.2rem;
}

.mega-pillars li::marker {
  color: #b17b00;
}

.mega-cta {
  margin: 1.05rem 0 1rem;
  display: flex;
  justify-content: center;
}

.mega-cta .btn {
  min-width: 190px;
}

.mega-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.mega-gallery figure {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(122, 91, 0, 0.28);
}

.mega-gallery img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.mega-gallery figure:hover img {
  transform: scale(1.03);
}

.mega-cred {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.cred-stat,
.cred-logos {
  border: 1px solid rgba(122, 91, 0, 0.3);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
  padding: 0.85rem;
}

.cred-stat h3,
.cred-logos h4 {
  margin: 0;
  color: #5d4300;
}

.logo-row {
  margin-top: 0.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.logo-row img {
  width: 128px;
  height: 50px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(122, 91, 0, 0.25);
  background: #fff;
}

@media (max-width: 960px) {
  .mega-pillars,
  .mega-cred,
  .mega-gallery {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .mega-pillars,
  .mega-cred,
  .mega-gallery {
    grid-template-columns: 1fr;
  }

  .mega-gallery img {
    height: 210px;
  }
}

/* Mega cred: more spectacular emphasis */
.mega-cred {
  margin-top: 1.15rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cred-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(122, 91, 0, 0.36);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(255, 244, 207, 0.86));
  box-shadow: 0 10px 22px rgba(122, 91, 0, 0.16);
}

.cred-card::before {
  content: "";
  position: absolute;
  top: -120%;
  left: -20%;
  width: 46%;
  height: 260%;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: rotate(20deg);
  animation: cred-shine 6.5s linear infinite;
  pointer-events: none;
}

@keyframes cred-shine {
  0% { transform: translateX(-220%) rotate(20deg); }
  100% { transform: translateX(420%) rotate(20deg); }
}

.cred-card--primary h3 {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.25;
}

.cred-card--primary p {
  margin: 0.45rem 0 0;
  font-weight: 700;
  color: rgba(93, 67, 0, 0.86);
}

.cred-tag {
  margin: 0 0 0.45rem;
  width: fit-content;
  border-radius: 999px;
  padding: 0.25rem 0.58rem;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(19, 23, 103, 0.12);
  color: var(--azul-oscuro);
}

.cred-card--logos h4 {
  font-size: 1.08rem;
}

.logo-row {
  margin-top: 0.72rem;
  gap: 0.55rem;
}

.logo-row img {
  width: 120px;
  height: 50px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(19, 23, 103, 0.1);
}

@media (max-width: 700px) {
  .mega-cred {
    grid-template-columns: 1fr;
  }
}
.form-feedback {
  margin: 0 0 0.9rem;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  font-weight: 800;
}

.form-feedback-ok {
  border: 1px solid rgba(15, 120, 65, 0.35);
  background: rgba(220, 248, 234, 0.85);
  color: #0b6d3a;
}

.form-feedback-error {
  border: 1px solid rgba(173, 36, 36, 0.35);
  background: rgba(255, 229, 229, 0.9);
  color: #8d1616;
}
.lead-toast {
  position: fixed;
  inset: auto 16px 16px auto;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.lead-toast.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.lead-toast-card {
  width: min(380px, calc(100vw - 32px));
  border-radius: 14px;
  border: 1px solid rgba(16, 120, 66, 0.4);
  background: linear-gradient(145deg, rgba(234, 253, 242, 0.98), rgba(217, 248, 229, 0.98));
  color: #0e5d34;
  box-shadow: 0 14px 32px rgba(16, 120, 66, 0.22);
  padding: 0.9rem;
}

.lead-toast-card.is-error {
  border-color: rgba(160, 29, 29, 0.35);
  background: linear-gradient(145deg, rgba(255, 240, 240, 0.98), rgba(255, 228, 228, 0.98));
  color: #7f1717;
  box-shadow: 0 14px 32px rgba(160, 29, 29, 0.2);
}

.lead-toast-title {
  margin: 0 0 0.2rem;
  font-weight: 900;
}

.lead-toast-text {
  margin: 0;
  font-weight: 700;
}

.lead-toast-close {
  margin-top: 0.6rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  font-weight: 800;
  padding: 0.35rem 0.7rem;
  cursor: pointer;
}
