/* ============================================================
   AI CONTA — styles.css  v3.1
   Tipografia: Bodoni Moda (display) + Plus Jakarta Sans (body)
   Paleta: Ink #0E1F2A · Teal #0E8A92 · Mist #F2F7F8 · Aqua #3BB7C7
   ============================================================ */

/* ---------- CUSTOM PROPERTIES ---------- */
:root {
  --navy:   #0E1F2A;
  --navy2:  #17384B;
  --copper: #0E8A92;
  --gold:   #3BB7C7;
  --cream:  #F2F7F8;
  --white:  #FFFFFF;
  --gray:   #5A6572;
  --light:  #E9F1F3;

  --ff-display: 'Bodoni Moda', Georgia, serif;
  --ff-body:    'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --tr: .25s ease;
  --radius: 1rem;
  --shadow: 0 4px 24px rgba(10,22,40,.12);
  --shadow-lg: 0 12px 48px rgba(10,22,40,.2);
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  background: var(--cream);
  color: var(--navy);
  line-height: 1.6;
  overflow-x: hidden;
}
body.modal-open { overflow: hidden; }
img { max-width: 100%; display: block; }
.hero-dashboard-media picture {
  display: block;
  width: 100%;
  height: 100%;
}
.hero-dashboard-media picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nav-logo-mark picture,
.footer-brand picture,
.chat-avatar picture {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.ai-assistant-fab picture,
#chatToggle picture {
  display: block;
  width: 100%;
  line-height: 0;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---------- LIQUID GLASS NAVBAR ---------- */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  /* Liquid glass effect */
  background: rgba(10, 22, 40, 0.45);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(14,138,146, 0.18);
  box-shadow: 0 2px 32px rgba(10,22,40,.18), inset 0 1px 0 rgba(255,255,255,.06);
  transition: background var(--tr), box-shadow var(--tr);
}
#navbar.scrolled {
  background: rgba(10, 22, 40, 0.82);
  box-shadow: 0 4px 40px rgba(10,22,40,.32);
}
.nav-inner {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 1px 6px rgba(14,138,146,.3));
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-reg {
  font-size: .5em;
  vertical-align: super;
  line-height: 1;
  margin-left: .06em;
}
.nav-logo-text strong {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  color: var(--white);
  letter-spacing: .03em;
}
.nav-logo-text span {
  font-size: .62rem;
  color: var(--copper);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 500;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: .1rem;
  flex-wrap: nowrap;
}
.nav-links a {
  color: rgba(255,255,255,.88);
  font-size: .72rem;
  font-weight: 500;
  padding: .4rem .5rem;
  border-radius: .45rem;
  letter-spacing: .01em;
  white-space: nowrap;
  transition: color var(--tr), background var(--tr);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: .6rem; right: .6rem;
  height: 1.5px;
  background: var(--copper);
  transform: scaleX(0);
  transition: transform .3s ease;
  border-radius: 2px;
}
.nav-links a:hover { color: var(--white); background: rgba(14,138,146,.12); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--copper); }

/* CTA pill in navbar */
.nav-cta {
  background: linear-gradient(135deg, var(--copper), var(--gold)) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  border-radius: 2rem !important;
  padding: .45rem 1.1rem !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { opacity: .9; transform: translateY(-1px); }

/* Hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .5rem;
  background: none;
  border: none;
}
.nav-burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}
.nav-mobile {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(10,22,40,.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 1rem 1.5rem 1.5rem;
  flex-direction: column;
  gap: .25rem;
  border-bottom: 1px solid rgba(14,138,146,.2);
  z-index: 999;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: rgba(255,255,255,.85);
  font-size: .95rem;
  font-weight: 500;
  padding: .7rem 1rem;
  border-radius: .5rem;
  transition: background var(--tr);
}
.nav-mobile a:hover { background: rgba(14,138,146,.15); color: var(--white); }

@media (max-width: 1280px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
}

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1600&h=900&fit=crop') center/cover no-repeat;
  padding: 120px 2rem 80px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(10,22,40,.82) 0%, rgba(17,32,64,.75) 60%, rgba(26,48,96,.7) 100%);
  z-index: 0;
}
.hero-content { position: relative; z-index: 1; max-width: 820px; }
.hero-logo-wrap {
  margin: 0 auto 1.8rem;
  width: 110px; height: 110px;
  background: rgba(255,255,255,.07);
  border-radius: 50%;
  border: 2px solid rgba(14,138,146,.3);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 40px rgba(14,138,146,.2);
}
.hero-logo-wrap img {
  width: 90px; height: 90px;
  object-fit: contain;
  border-radius: 50%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(14,138,146,.15);
  border: 1px solid rgba(14,138,146,.3);
  color: var(--copper);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 2rem;
  margin-bottom: 1.4rem;
  backdrop-filter: blur(8px);
}
.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 6vw, 5rem);
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 1.4rem;
  letter-spacing: -.01em;
}
.hero-title em {
  display: block;
  font-style: italic;
  color: var(--copper);
  font-size: clamp(1.8rem, 4.5vw, 3.8rem);
}
.hero-sub {
  color: rgba(255,255,255,.72);
  font-size: clamp(1rem,2vw,1.2rem);
  max-width: 580px;
  margin: 0 auto 2.2rem;
  font-weight: 400;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 2.5rem;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  border: none;
  transition: all .25s;
  letter-spacing: .01em;
}
.btn-primary {
  background: linear-gradient(135deg, var(--copper), var(--gold));
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(14,138,146,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(14,138,146,.45); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.35);
}
.btn-outline:hover { border-color: var(--copper); color: var(--copper); transform: translateY(-2px); }
.hero-scroll {
  margin-top: 3rem;
  animation: bounce 2s ease-in-out infinite;
  color: rgba(255,255,255,.4);
  font-size: 1.5rem;
}
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }

/* ---------- SECTION WRAPPER ---------- */
.section { padding: 6rem 2rem; }
.section-dark { background: var(--navy); color: var(--white); }
.section-cream { background: var(--cream); }
.section-light { background: var(--light); }
.container { max-width: 1200px; margin: 0 auto; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: .8rem;
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-title em { font-style: italic; color: var(--copper); }
.section-sub {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.section-dark .section-sub { color: rgba(255,255,255,.65); }
.section-dark .section-title { color: var(--white); }
.center { text-align: center; }
.center .section-sub { margin-left: auto; margin-right: auto; }

/* ---------- MARQUEE / SCROLLING BANNER ---------- */
.marquee-wrap {
  overflow: hidden;
  padding: 1.2rem 0;
  background: var(--navy);
  border-top: 1px solid rgba(14,138,146,.15);
  border-bottom: 1px solid rgba(14,138,146,.15);
}
.mq-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  align-items: center;
}
.mq-track.left  { animation: scrollLeft 28s linear infinite; }
.mq-track.right { animation: scrollRight 28s linear infinite; }
@keyframes scrollLeft  { from{transform:translateX(0)} to{transform:translateX(-50%)} }
@keyframes scrollRight { from{transform:translateX(-50%)} to{transform:translateX(0)} }
.mq-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: rgba(255,255,255,.75);
  font-size: .85rem;
  font-weight: 500;
  white-space: nowrap;
  letter-spacing: .03em;
}
.mq-item i { color: var(--copper); }
.mq-dot {
  width: 5px; height: 5px;
  background: var(--copper);
  border-radius: 50%;
  opacity: .5;
}
.marquee-double { display: flex; flex-direction: column; gap: .4rem; }

/* ---------- QUALITY BUBBLES ---------- */
#bubblesCluster {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  padding: 1.5rem 0 2.5rem;
  max-width: 700px;
  margin: 0 auto;
}
.q-bubble {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem 1.3rem;
  border-radius: 2.5rem;
  font-weight: 600;
  font-size: .88rem;
  cursor: grab;
  user-select: none;
  touch-action: none;
  transition: box-shadow .3s;
  will-change: transform;
}
.q-bubble:active { cursor: grabbing; }
.q-bubble i { font-size: .85rem; }

.q-bubble.b-navy  { background: var(--navy);  color: var(--white);  box-shadow: 0 4px 16px rgba(10,22,40,.25); }
.q-bubble.b-copper{ background: var(--copper); color: var(--navy);   box-shadow: 0 4px 16px rgba(14,138,146,.35); }
.q-bubble.b-gold  { background: var(--gold);   color: var(--navy);   box-shadow: 0 4px 16px rgba(59,183,199,.35); }
.q-bubble.b-cream { background: var(--cream);  color: var(--navy);   border: 1.5px solid rgba(10,22,40,.1); box-shadow: 0 4px 16px rgba(10,22,40,.08); }
.q-bubble.b-dark  { background: #1C2D4F;       color: var(--white);  box-shadow: 0 4px 16px rgba(10,22,40,.3); }

/* Float keyframes */
@keyframes float-a { 0%,100%{transform:translateY(0)   rotate(0deg)} 50%{transform:translateY(-10px) rotate(1.5deg)} }
@keyframes float-b { 0%,100%{transform:translateY(0)   rotate(0deg)} 50%{transform:translateY(-14px) rotate(-1.2deg)} }
@keyframes float-c { 0%,100%{transform:translateY(0)   rotate(0deg)} 50%{transform:translateY(-8px)  rotate(1deg)} }
@keyframes float-d { 0%,100%{transform:translateY(0)   rotate(0deg)} 50%{transform:translateY(-12px) rotate(-1.5deg)} }
@keyframes float-e { 0%,100%{transform:translateY(0)   rotate(0deg)} 50%{transform:translateY(-6px)  rotate(.8deg)} }
.float-a { animation: float-a 4.2s ease-in-out infinite; }
.float-b { animation: float-b 5.1s ease-in-out infinite .6s; }
.float-c { animation: float-c 3.8s ease-in-out infinite 1.2s; }
.float-d { animation: float-d 4.7s ease-in-out infinite .3s; }
.float-e { animation: float-e 5.5s ease-in-out infinite .9s; }

/* ---------- WHY PILLS ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.why-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(14,138,146,.15);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all .3s;
  backdrop-filter: blur(4px);
}
.why-card:hover {
  border-color: var(--copper);
  background: rgba(14,138,146,.06);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(10,22,40,.2);
}
.why-icon {
  width: 52px; height: 52px;
  background: rgba(14,138,146,.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--copper);
  margin-bottom: 1rem;
}
.why-title { font-weight: 700; font-size: 1rem; margin-bottom: .4rem; color: var(--white); }
.why-desc { font-size: .88rem; color: rgba(255,255,255,.6); line-height: 1.6; }

/* ---------- STATS ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  text-align: center;
}
.stat-card {
  padding: 2rem 1rem;
  background: rgba(14,138,146,.06);
  border: 1px solid rgba(14,138,146,.15);
  border-radius: var(--radius);
  transition: transform .3s;
}
.stat-card:hover { transform: translateY(-4px); }
.stat-num {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--copper);
  line-height: 1;
  margin-bottom: .3rem;
}
.stat-label { font-size: .82rem; color: rgba(255,255,255,.6); font-weight: 500; text-transform: uppercase; letter-spacing: .06em; }

/* ---------- SERVICES CARDS ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: all .3s;
  border-top: 3px solid transparent;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--copper);
}
.service-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(14,138,146,.15), rgba(59,183,199,.15));
  border-radius: 1rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--copper);
  margin-bottom: 1.2rem;
}
.service-title { font-weight: 700; font-size: 1.05rem; margin-bottom: .5rem; color: var(--navy); }
.service-desc { font-size: .88rem; color: var(--gray); line-height: 1.65; margin-bottom: 1rem; }
.service-price {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--copper);
}
.service-price span { font-family: var(--ff-body); font-size: .8rem; color: var(--gray); }

/* ---------- REVIEWS INFINITE SCROLL ---------- */
.reviews-wrap { overflow: hidden; padding: 1rem 0; }
.rev-track {
  display: flex;
  gap: 1.2rem;
  width: max-content;
}
.rev-track.go-left  { animation: scrollLeft  35s linear infinite; }
.rev-track.go-right { animation: scrollRight 35s linear infinite; }
.rev-card {
  flex-shrink: 0;
  width: 280px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: 0 2px 12px rgba(10,22,40,.08);
  border: 1px solid rgba(10,22,40,.06);
}
.rev-stars { color: #F59E0B; margin-bottom: .5rem; font-size: .85rem; }
.rev-text { font-size: .85rem; color: var(--navy); line-height: 1.6; margin-bottom: .8rem; }
.rev-author { font-size: .78rem; font-weight: 600; color: var(--gray); }

/* ---------- PAYMENT CIRCLES ---------- */
.pay-circle-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  padding: 2rem 0;
}
.pay-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .8rem;
  cursor: grab;
  user-select: none;
  touch-action: none;
  will-change: transform;
}
.pay-circle:active { cursor: grabbing; }
.pc-inner {
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 6px 24px rgba(10,22,40,.12);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  transition: box-shadow .3s;
}
.pay-circle:hover .pc-inner {
  box-shadow: 0 10px 36px rgba(14,138,146,.25);
}
.pay-circle:nth-child(1) .pc-inner { width: 130px; height: 130px; }
.pay-circle:nth-child(2) .pc-inner { width: 110px; height: 110px; }
.pay-circle:nth-child(3) .pc-inner { width: 140px; height: 140px; }
.pay-circle:nth-child(4) .pc-inner { width: 115px; height: 115px; }
.pay-circle:nth-child(5) .pc-inner { width: 125px; height: 125px; }
.pc-inner img { width: 85%; height: 85%; object-fit: contain; }
.pc-label {
  font-size: .78rem;
  font-weight: 600;
  color: var(--gray);
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* ---------- PROCESS TIMELINE ---------- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  position: relative;
}
.process-step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
}
.step-num {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--copper), var(--gold));
  color: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 16px rgba(14,138,146,.35);
}
.step-title { font-weight: 700; font-size: .95rem; margin-bottom: .4rem; color: var(--navy); }
.step-desc { font-size: .83rem; color: var(--gray); line-height: 1.6; }

/* ---------- AULAS VIRTUALES ---------- */
.aulas-section {
  background: linear-gradient(160deg, var(--navy) 0%, #174058 60%, #123949 100%);
  position: relative;
  overflow: hidden;
}
.aulas-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(14,138,146,.1) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.aulas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media(max-width:860px){ .aulas-grid{ grid-template-columns:1fr; gap:2.5rem; } }
.aulas-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(14,138,146,.12);
  border: 1px solid rgba(14,138,146,.25);
  color: var(--copper);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .38rem .9rem;
  border-radius: 2rem;
  margin-bottom: 1rem;
}
.aulas-title {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.aulas-title em { font-style: italic; color: var(--copper); }
.aulas-desc { color: rgba(255,255,255,.68); line-height: 1.7; margin-bottom: 1.8rem; font-size: .98rem; }
.aulas-features {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 2rem;
}
.aula-feat {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}
.aula-feat-icon {
  width: 32px; height: 32px;
  background: rgba(14,138,146,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--copper);
  font-size: .8rem;
  flex-shrink: 0;
  margin-top: .1rem;
}
.aula-feat-text strong { display: block; font-size: .92rem; color: var(--white); margin-bottom: .1rem; }
.aula-feat-text span  { font-size: .82rem; color: rgba(255,255,255,.6); }

/* Course cards panel */
.aulas-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.aula-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(14,138,146,.18);
  border-radius: 1rem;
  padding: 1.4rem;
  backdrop-filter: blur(8px);
  transition: all .3s;
}
.aula-card:hover {
  border-color: var(--copper);
  background: rgba(14,138,146,.08);
  transform: translateY(-4px);
}
.aula-card-icon {
  font-size: 1.4rem;
  color: var(--copper);
  margin-bottom: .6rem;
}
.aula-card-name { font-weight: 700; font-size: .92rem; color: var(--white); margin-bottom: .25rem; }
.aula-card-type { font-size: .75rem; color: var(--copper); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.aula-price-tag {
  display: inline-block;
  margin-top: .5rem;
  background: rgba(14,138,146,.15);
  color: var(--gold);
  font-size: .78rem;
  font-weight: 700;
  padding: .2rem .6rem;
  border-radius: 1rem;
}

/* ---------- COMUNIDAD ---------- */
.comunidad-section {
  background: linear-gradient(135deg, #113849 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}
.comunidad-section::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(37,211,102,.07) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.comunidad-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media(max-width:860px){ .comunidad-inner{ grid-template-columns:1fr; gap:2.5rem; } }
.wa-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(37,211,102,.1);
  border: 1px solid rgba(37,211,102,.25);
  color: #25d366;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .38rem .9rem;
  border-radius: 2rem;
  margin-bottom: 1rem;
}
.comunidad-title {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.comunidad-title em { font-style: italic; color: #25d366; }
.comunidad-desc { color: rgba(255,255,255,.68); line-height: 1.7; margin-bottom: 1.5rem; font-size: .98rem; }
.free-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: var(--white);
  font-size: .82rem;
  font-weight: 700;
  padding: .4rem 1rem;
  border-radius: 2rem;
  margin-bottom: 1.8rem;
  letter-spacing: .04em;
}
.clases-list {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-bottom: 2rem;
}
.clase-item {
  display: flex;
  align-items: center;
  gap: .7rem;
  color: rgba(255,255,255,.8);
  font-size: .9rem;
}
.clase-item i { color: #25d366; width: 16px; text-align: center; }
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: var(--white);
  font-weight: 700;
  padding: .9rem 2rem;
  border-radius: 2.5rem;
  font-size: 1rem;
  transition: all .25s;
  box-shadow: 0 4px 20px rgba(37,211,102,.3);
}
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,.4); }

/* Comunidad phone mockup */
.comunidad-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
.wa-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(37,211,102,.15);
  border-radius: 1.2rem;
  padding: 1.5rem;
  width: 100%;
  max-width: 340px;
  backdrop-filter: blur(8px);
}
.wa-card-header {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: 1rem;
  padding-bottom: .8rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.wa-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
}
.wa-group-name { font-weight: 700; color: var(--white); font-size: .92rem; }
.wa-members { font-size: .75rem; color: #25d366; }
.wa-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .8rem;
}
.wa-stat { text-align: center; }
.wa-stat-num { font-family: var(--ff-display); font-size: 1.5rem; color: #25d366; font-weight: 700; }
.wa-stat-label { font-size: .72rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .05em; }

.schedule-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(14,138,146,.15);
  border-radius: 1rem;
  padding: 1.2rem 1.5rem;
  width: 100%;
  max-width: 340px;
}
.schedule-title { font-size: .78rem; font-weight: 700; color: var(--copper); text-transform: uppercase; letter-spacing: .08em; margin-bottom: .8rem; }
.schedule-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .4rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: .82rem;
}
.schedule-item:last-child { border-bottom: none; }
.schedule-item span { color: rgba(255,255,255,.75); }
.schedule-item .tag {
  background: rgba(14,138,146,.15);
  color: var(--copper);
  font-size: .7rem;
  padding: .15rem .5rem;
  border-radius: 1rem;
  font-weight: 600;
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--copper) 0%, var(--gold) 100%);
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
}
.cta-banner-title {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--navy);
  margin-bottom: .8rem;
  position: relative;
}
.cta-banner-sub { color: rgba(10,22,40,.7); margin-bottom: 1.8rem; font-size: 1rem; position: relative; }
.btn-dark {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(10,22,40,.25);
  position: relative;
}
.btn-dark:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(10,22,40,.35); }

/* ---------- CONTACT ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media(max-width:768px){ .contact-grid{ grid-template-columns:1fr; } }
.contact-info { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-icon {
  width: 44px; height: 44px;
  background: rgba(14,138,146,.12);
  border-radius: .75rem;
  display: flex; align-items: center; justify-content: center;
  color: var(--copper);
  font-size: .95rem;
  flex-shrink: 0;
}
.contact-label { font-size: .78rem; color: var(--gray); text-transform: uppercase; letter-spacing: .06em; margin-bottom: .15rem; }
.contact-value { font-weight: 600; color: var(--navy); font-size: .95rem; }
.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: .82rem; font-weight: 600; color: var(--navy); margin-bottom: .4rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid rgba(10,22,40,.12);
  border-radius: .6rem;
  font-family: var(--ff-body);
  font-size: .9rem;
  color: var(--navy);
  background: var(--cream);
  transition: border-color .25s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--copper); }
.form-group textarea { resize: vertical; min-height: 100px; }

/* ---------- FAQ ACCORDION ---------- */
.faq-list { display: flex; flex-direction: column; gap: .75rem; max-width: 780px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(10,22,40,.06);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  padding: 1.2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--ff-body);
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  gap: 1rem;
}
.faq-q i { color: var(--copper); transition: transform .3s; flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner { padding: 0 1.5rem 1.2rem; font-size: .88rem; color: var(--gray); line-height: 1.7; }

/* ---------- FOOTER ---------- */
footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding: 4rem 2rem 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}
@media(max-width:1100px){ .footer-grid{ grid-template-columns:1.5fr 1fr 1fr; } }
@media(max-width:900px){ .footer-grid{ grid-template-columns:1fr 1fr; } }
@media(max-width:540px){ .footer-grid{ grid-template-columns:1fr; } }
.footer-brand img {
  width: 68px;
  height: 68px;
  object-fit: cover;
  object-position: center 14%;
  margin-bottom: .8rem;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(241,236,228,.92));
  box-shadow: 0 14px 34px rgba(10,22,40,.16);
}
.footer-brand-title {
  display: block;
  margin-bottom: .55rem;
  font-family: var(--ff-display);
  font-size: 1.05rem;
  letter-spacing: .04em;
  color: var(--white);
}
.footer-brand p { font-size: .82rem; line-height: 1.7; max-width: 280px; }
.footer-heading { font-weight: 700; color: var(--white); margin-bottom: 1rem; font-size: .9rem; letter-spacing: .04em; text-transform: uppercase; }
.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a { font-size: .82rem; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-links a:hover { color: var(--copper); }
.footer-social { display: flex; gap: .7rem; margin-top: 1rem; }
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .45rem;
  margin-bottom: 1rem;
  color: rgba(10,22,40,.64);
  font-size: .82rem;
  letter-spacing: .02em;
}
.breadcrumbs a {
  color: rgba(10,22,40,.78);
  font-weight: 600;
}
.breadcrumbs span:last-child {
  color: var(--copper);
  font-weight: 700;
}
.page-hero .breadcrumbs {
  color: rgba(255,255,255,.68);
}
.page-hero .breadcrumbs a {
  color: rgba(255,255,255,.82);
}
.page-hero .breadcrumbs span:last-child {
  color: #9fdde5;
}
.keyword-chip-list,
.seo-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}
.keyword-chip-list span,
.seo-link-list a {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .72rem 1rem;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(10,22,40,.08);
  border-radius: 999px;
  box-shadow: 0 14px 32px rgba(10,22,40,.08);
  color: var(--navy);
  font-weight: 600;
  font-size: .9rem;
}
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .75fr);
  gap: 1.5rem;
  align-items: start;
}
.article-stack,
.article-aside {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.article-card {
  background: var(--white);
  border: 1px solid rgba(10,22,40,.08);
  border-radius: 1.75rem;
  padding: 1.8rem;
  box-shadow: 0 18px 40px rgba(10,22,40,.08);
}
.article-card h2,
.article-card h3 {
  margin-bottom: .9rem;
  color: var(--navy);
}
.article-card h2 {
  font-size: clamp(1.5rem, 2vw, 2rem);
}
.article-card p,
.article-card li {
  color: var(--gray);
  line-height: 1.85;
  font-size: 1rem;
}
.article-card p + p {
  margin-top: .9rem;
}
.article-list {
  margin: 0;
  padding-left: 1.15rem;
}
.article-list li + li {
  margin-top: .65rem;
}
.article-sticky {
  position: sticky;
  top: 7rem;
}
.toc-links {
  display: flex;
  flex-direction: column;
  gap: .7rem;
}
.toc-links a {
  color: var(--navy);
  font-weight: 600;
}
.toc-links a:hover {
  color: var(--copper);
}
.article-callout {
  padding: 1.15rem 1.2rem;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, rgba(14,138,146,.12), rgba(255,255,255,.94));
  border: 1px solid rgba(14,138,146,.16);
}
.article-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.article-meta {
  padding: 1rem 1.1rem;
  border-radius: 1.25rem;
  background: rgba(10,22,40,.04);
  border: 1px solid rgba(10,22,40,.08);
}
.article-meta strong {
  display: block;
  color: var(--navy);
  margin-bottom: .35rem;
}
.article-wa-cta {
  width: 100%;
  justify-content: center;
  margin-top: .45rem;
  padding: 1rem 1.4rem;
  font-size: 1.02rem;
}
.local-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.local-coverage-section {
  position: relative;
  overflow: hidden;
}
.local-proof-head {
  max-width: 920px;
  margin: 0 auto 2.2rem;
}
.local-proof-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .9rem;
  margin-top: 1.35rem;
}
.local-proof-trust-item {
  text-align: left;
  padding: 1rem 1.05rem;
  border-radius: 1.35rem;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(10,22,40,.08);
  box-shadow: 0 16px 32px rgba(10,22,40,.05);
}
.local-proof-trust-item strong {
  display: block;
  margin-bottom: .35rem;
  color: var(--navy);
  font-size: .98rem;
  line-height: 1.3;
}
.local-proof-trust-item p {
  margin: 0;
  color: rgba(10,22,40,.68);
  font-size: .94rem;
  line-height: 1.65;
}
.local-proof-card {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.9));
  border: 1px solid rgba(10,22,40,.08);
  border-radius: 1.65rem;
  padding: 1.45rem;
  box-shadow: 0 22px 44px rgba(10,22,40,.08);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.local-proof-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 54px rgba(10,22,40,.12);
  border-color: rgba(14,138,146,.22);
}
.local-proof-card-featured {
  background:
    radial-gradient(circle at top right, rgba(14,138,146,.16), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,255,255,.92));
}
.local-proof-card strong {
  display: block;
  margin-bottom: .15rem;
  color: var(--navy);
  font-size: 1.5rem;
  line-height: 1.15;
  letter-spacing: -.02em;
}
.local-proof-kicker {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  width: fit-content;
  padding: .45rem .78rem;
  border-radius: 999px;
  background: rgba(14,138,146,.12);
  color: var(--copper);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.local-proof-card p {
  color: var(--gray);
  line-height: 1.75;
  margin: 0;
}
.local-proof-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .45rem;
}
.local-proof-list li {
  position: relative;
  padding-left: 1.1rem;
  color: rgba(10,22,40,.76);
  font-size: .92rem;
  line-height: 1.5;
}
.local-proof-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .48rem;
  width: .42rem;
  height: .42rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #0E8A92, #88D2DC);
}
.local-proof-card a {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-top: auto;
  color: #0e8a92;
  font-weight: 700;
}
.local-proof-card a i {
  transition: transform .2s ease;
}
.local-proof-card:hover a i {
  transform: translateX(4px);
}
.service-intro-card {
  max-width: 980px;
  margin: 1.1rem auto 0;
  padding: 1.55rem 1.65rem;
  border-radius: 1.75rem;
  background:
    radial-gradient(circle at top right, rgba(14,138,146,.12), transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.9));
  border: 1px solid rgba(10,22,40,.08);
  box-shadow: 0 24px 48px rgba(10,22,40,.08);
}
.service-intro-eyebrow {
  margin: 0 0 .55rem;
  color: var(--copper);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.service-intro-lead {
  margin: 0;
  color: rgba(10,22,40,.8);
  font-size: 1.14rem;
  font-weight: 600;
  line-height: 1.82;
}
.service-intro-text {
  max-width: 860px;
  margin: .8rem auto 0;
  color: rgba(10,22,40,.68);
  font-size: 1rem;
  line-height: 1.82;
}
.service-intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .95rem;
  margin-top: 1.2rem;
  text-align: left;
}
.service-intro-feature {
  padding: 1.05rem 1.1rem;
  border-radius: 1.3rem;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(10,22,40,.08);
  box-shadow: 0 14px 26px rgba(10,22,40,.05);
}
.service-intro-feature span {
  display: block;
  margin-bottom: .45rem;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.3;
}
.service-intro-feature p {
  margin: 0;
  color: rgba(10,22,40,.68);
  font-size: .96rem;
  line-height: 1.7;
}
.service-positioning-section {
  padding-bottom: 1.5rem;
}
.service-routing-section {
  padding-top: .25rem;
}
.service-route-head {
  max-width: 760px;
  margin: 0 auto 1.55rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(10,22,40,.08);
}
.service-route-eyebrow {
  margin: 0 0 .45rem;
  color: var(--copper);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.service-route-head h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.45rem, 2.5vw, 2.1rem);
  line-height: 1.2;
}
.service-route-head p {
  margin: .7rem 0 0;
  color: rgba(10,22,40,.66);
  font-size: 1rem;
  line-height: 1.8;
}
.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.guide-card {
  display: flex;
  flex-direction: column;
  gap: .9rem;
  background: var(--white);
  border-radius: 1.7rem;
  border: 1px solid rgba(10,22,40,.08);
  padding: 1.5rem;
  box-shadow: 0 18px 40px rgba(10,22,40,.08);
}
.guide-card strong,
.guide-card h3 {
  color: var(--navy);
}
.guide-card p {
  color: var(--gray);
  line-height: 1.75;
}
.guide-card a {
  color: #0e8a92;
  font-weight: 700;
}
.guide-switchboard {
  display: grid;
  gap: 1.3rem;
}
.guide-switch-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .9rem;
}
.guide-switch-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .28rem;
  padding: 1rem 1.1rem;
  border-radius: 1.4rem;
  border: 1px solid rgba(10,22,40,.08);
  background: rgba(255,255,255,.92);
  color: var(--navy);
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(10,22,40,.05);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}
.guide-switch-btn span {
  color: var(--copper);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.guide-switch-btn:hover,
.guide-switch-btn.active {
  transform: translateY(-2px);
  border-color: rgba(14,138,146,.28);
  box-shadow: 0 18px 36px rgba(10,22,40,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,248,240,.98));
}
.guide-switch-panels {
  position: relative;
}
.guide-spotlight {
  display: none;
  grid-template-columns: minmax(300px, .92fr) minmax(0, 1.08fr);
  gap: 1.35rem;
  padding: 1.35rem;
  border-radius: 2rem;
  border: 1px solid rgba(10,22,40,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,255,255,.94));
  box-shadow: 0 22px 48px rgba(10,22,40,.08);
}
.guide-spotlight.active {
  display: grid;
  animation: fadeUp .28s ease;
}
.guide-spotlight-media {
  position: relative;
  overflow: hidden;
  border-radius: 1.7rem;
  min-height: 100%;
}
.guide-spotlight-media img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  display: block;
}
.guide-spotlight-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,22,40,.06), rgba(10,22,40,.58));
}
.guide-media-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  padding: .45rem .8rem;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.16);
  color: var(--white);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.guide-spotlight-copy {
  display: flex;
  flex-direction: column;
}
.guide-spotlight-tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: .7rem;
  padding: .42rem .78rem;
  border-radius: 999px;
  background: rgba(14,138,146,.12);
  color: var(--copper);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.guide-spotlight-copy h3 {
  margin: 0 0 .65rem;
  color: var(--navy);
  font-size: clamp(1.7rem, 2.8vw, 2.6rem);
  line-height: 1.06;
}
.guide-spotlight-lead {
  margin: 0;
  color: rgba(10,22,40,.7);
  font-size: 1rem;
  line-height: 1.85;
}
.guide-stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .8rem;
  margin-top: 1rem;
}
.guide-stat {
  padding: .95rem 1rem;
  border-radius: 1.25rem;
  background: rgba(10,22,40,.04);
  border: 1px solid rgba(10,22,40,.08);
}
.guide-stat strong {
  display: block;
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: .16rem;
}
.guide-stat span {
  display: block;
  color: rgba(10,22,40,.58);
  font-size: .84rem;
  line-height: 1.45;
}
.guide-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .95rem;
  margin-top: 1rem;
}
.guide-info-card {
  padding: 1rem 1.05rem;
  border-radius: 1.35rem;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(10,22,40,.08);
  box-shadow: 0 14px 26px rgba(10,22,40,.04);
}
.guide-info-card h4 {
  margin: 0 0 .7rem;
  color: var(--navy);
  font-size: 1rem;
}
.guide-spotlight-actions {
  display: flex;
  gap: .85rem;
  flex-wrap: wrap;
  margin-top: 1.15rem;
}
.guide-outline-btn {
  color: var(--navy);
  border-color: rgba(10,22,40,.14);
}
.guide-outline-btn:hover {
  color: var(--copper);
  border-color: rgba(14,138,146,.42);
}
.guide-card-value {
  gap: 1rem;
}
.guide-feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .62rem;
}
.guide-feature-list li {
  position: relative;
  padding-left: 1.15rem;
  color: rgba(10,22,40,.72);
  line-height: 1.65;
}
.guide-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .58rem;
  width: .42rem;
  height: .42rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #0E8A92, #88D2DC);
}
.city-link-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.city-link-strip a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.15rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(10,22,40,.08);
  background: rgba(255,255,255,.88);
  color: var(--navy);
  font-weight: 700;
}
.city-link-strip a:hover {
  border-color: rgba(14,138,146,.5);
  color: var(--copper);
}
.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.07);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  transition: all .25s;
}
.social-btn:hover { background: var(--copper); color: var(--navy); transform: translateY(-2px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  font-size: .78rem;
}
.footer-bottom a { color: var(--copper); }

/* ---------- MODALS ---------- */
.modal-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(10,22,40,.72);
  backdrop-filter: blur(6px);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--white);
  border-radius: 1.2rem;
  max-width: 680px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 24px 80px rgba(10,22,40,.4);
}
.modal-head {
  padding: 1.5rem 2rem 1rem;
  border-bottom: 1px solid rgba(10,22,40,.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 1;
}
.modal-head h3 { font-family: var(--ff-display); font-size: 1.2rem; color: var(--navy); }
.modal-close {
  width: 32px; height: 32px;
  background: var(--light);
  border-radius: 50%;
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; color: var(--gray);
  transition: all .2s;
}
.modal-close:hover { background: var(--copper); color: var(--white); }
.modal-body { padding: 1.5rem 2rem; font-size: .88rem; line-height: 1.8; color: var(--navy); }
.modal-body h4 { font-family: var(--ff-display); font-size: 1rem; color: var(--copper); margin: 1.2rem 0 .4rem; }
.modal-body p { margin-bottom: .8rem; }

/* IP Ack modal */
.ipAck-check-wrap {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  background: linear-gradient(135deg, rgba(14,138,146,.08), rgba(59,183,199,.06));
  border: 1px solid rgba(14,138,146,.24);
  border-radius: 1.15rem;
  padding: 1rem 1.15rem;
  margin: 0;
  font-size: .86rem;
  line-height: 1.6;
  color: var(--navy);
  box-shadow: 0 16px 34px rgba(14,138,146,.08);
}
.ipAck-check-wrap input[type=checkbox] { margin-top: 3px; flex-shrink: 0; accent-color: var(--copper); width: 16px; height: 16px; }
.ipAck-check-wrap label {
  color: var(--navy);
  font-weight: 600;
}
.modal-footer-btns {
  padding: 1rem 2rem 1.5rem;
  display: flex;
  gap: .8rem;
  justify-content: flex-end;
}
.ipAck-footer {
  padding: .95rem 0 0;
}

/* ---------- CHATBOT ---------- */
#chatWidget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 8000;
}
#chatToggle {
  width: 58px; height: 58px;
  background: linear-gradient(135deg, var(--copper), var(--gold));
  border-radius: 50%;
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(14,138,146,.4);
  transition: all .3s;
}
#chatToggle:hover { transform: scale(1.08); }
#chatBox {
  display: none;
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 340px;
  background: var(--white);
  border-radius: 1.2rem;
  box-shadow: 0 16px 56px rgba(10,22,40,.2);
  overflow: hidden;
  flex-direction: column;
}
#chatBox.open { display: flex; }
.chat-head {
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: .8rem;
  color: var(--white);
}
.chat-avatar {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(241,236,228,.92));
  border-radius: 14px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem;
  color: var(--navy);
  font-weight: 700;
}
.chat-head-info strong { display: block; font-size: .9rem; }
.chat-head-info span  { font-size: .72rem; color: rgba(255,255,255,.6); }
.chat-messages {
  height: 270px;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  scroll-behavior: smooth;
}
.msg {
  max-width: 88%;
  padding: .6rem .9rem;
  border-radius: .9rem;
  font-size: .83rem;
  line-height: 1.55;
  animation: fadeUp .3s ease;
}
@keyframes fadeUp { from{opacity:0;transform:translateY(6px)} to{opacity:1;transform:translateY(0)} }
.msg.bot { background: var(--light); color: var(--navy); border-bottom-left-radius: .2rem; align-self: flex-start; }
.msg.user { background: var(--copper); color: var(--navy); border-bottom-right-radius: .2rem; align-self: flex-end; font-weight: 600; }
.chat-quick {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  padding: .5rem 1rem;
  border-top: 1px solid var(--light);
}
.qbtn {
  background: rgba(14,138,146,.1);
  border: 1px solid rgba(14,138,146,.25);
  color: var(--navy);
  font-size: .75rem;
  font-weight: 600;
  padding: .3rem .7rem;
  border-radius: 1rem;
  cursor: pointer;
  transition: all .2s;
  font-family: var(--ff-body);
}
.qbtn:hover { background: var(--copper); color: var(--navy); }
.chat-input-row {
  display: flex;
  gap: .5rem;
  padding: .75rem 1rem;
  border-top: 1px solid var(--light);
}
#chatInput {
  flex: 1;
  border: 1.5px solid rgba(10,22,40,.12);
  border-radius: 2rem;
  padding: .5rem 1rem;
  font-family: var(--ff-body);
  font-size: .85rem;
  outline: none;
  color: var(--navy);
  background: var(--cream);
}
#chatInput:focus { border-color: var(--copper); }
#chatSend {
  width: 36px; height: 36px;
  background: var(--copper);
  border: none; border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  font-size: .9rem;
  transition: all .2s;
}
#chatSend:hover { background: var(--gold); }

/* ---------- NOTICE CENTER ---------- */
#noticeCenter {
  position: fixed;
  left: 1.35rem;
  bottom: 1.35rem;
  z-index: 7800;
}
#noticeToggle {
  width: 58px;
  height: 58px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #50b9c8, #1f8f9d);
  color: #10223d;
  box-shadow: 0 20px 34px rgba(10,22,40,.22);
  cursor: pointer;
  position: relative;
  font-size: 1.08rem;
  transition: transform .2s ease, box-shadow .2s ease;
}
#noticeToggle:hover,
#noticeToggle.active {
  transform: translateY(-2px);
  box-shadow: 0 24px 40px rgba(10,22,40,.28);
}
.notice-count {
  position: absolute;
  top: -4px;
  right: -2px;
  min-width: 24px;
  height: 24px;
  padding: 0 .35rem;
  border-radius: 999px;
  background: #ef4f4f;
  color: var(--white);
  font-size: .74rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
}
#noticePanel {
  position: absolute;
  left: 0;
  bottom: 72px;
  width: min(360px, calc(100vw - 2rem));
  padding: 1rem;
  border-radius: 1.45rem;
  background: rgba(10,22,40,.96);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 24px 54px rgba(10,22,40,.32);
  backdrop-filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity .22s ease, transform .22s ease;
}
#noticePanel.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.notice-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: .8rem;
  margin-bottom: .9rem;
}
.notice-head strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
}
.notice-head span {
  display: block;
  margin-top: .15rem;
  color: rgba(255,255,255,.62);
  font-size: .8rem;
  line-height: 1.45;
}
#noticeClose {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.78);
  cursor: pointer;
}
.notice-list {
  display: grid;
  gap: .8rem;
}
.notice-card {
  padding: .95rem;
  border-radius: 1.1rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
}
.notice-tag {
  display: inline-flex;
  align-items: center;
  padding: .28rem .58rem;
  border-radius: 999px;
  background: rgba(240,201,119,.14);
  color: #7fd5df;
  font-size: .72rem;
  font-weight: 700;
  margin-bottom: .5rem;
}
.notice-card h3 {
  color: var(--white);
  font-size: .96rem;
  margin-bottom: .25rem;
}
.notice-card p {
  color: rgba(255,255,255,.72);
  font-size: .84rem;
  line-height: 1.58;
}
.notice-card a {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: .7rem;
  color: #7fd5df;
  font-size: .82rem;
  font-weight: 700;
}

/* ---------- WA FLOAT ---------- */
#waFloat {
  position: fixed;
  bottom: 7rem;
  right: 2rem;
  z-index: 7999;
}
#waFloat a {
  width: 82px; height: 82px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 2.3rem;
  box-shadow: 0 10px 28px rgba(37,211,102,.38), 0 0 0 10px rgba(37,211,102,.10);
  transition: all .3s;
}
#waFloat a:hover { transform: scale(1.08) translateY(-2px); }

/* ---------- LEGAL TOAST ---------- */
#ipToast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--navy);
  color: var(--white);
  padding: .7rem 1.5rem;
  border-radius: 2rem;
  font-size: .82rem;
  font-weight: 600;
  border: 1px solid rgba(14,138,146,.3);
  z-index: 9999;
  transition: transform .4s cubic-bezier(.23,1,.32,1);
  pointer-events: none;
}
#ipToast.show { transform: translateX(-50%) translateY(0); }

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: rgba(14,138,146,.35); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--copper); }

/* ---------- SCROLL REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- RESPONSIVE ---------- */
@media(max-width:768px){
  .section { padding: 4rem 1.2rem; }
  .hero { padding: 100px 1.2rem 60px; }
  .aulas-panel { grid-template-columns: 1fr; }
  .pay-circle-grid { gap: 1.5rem; }
  .pay-circle:nth-child(n) .pc-inner { width: 100px; height: 100px; }
}

/* ==============================================
   SQUARESPACE-STYLE UPGRADE  v3.2
   Más whitespace · tipografía protagonista
   Feature tabs · cards limpias
   ============================================== */

/* ---- Más espacio en secciones ---- */
.section { padding: 7rem 2rem; }
.section-dark + .section-dark { padding-top: 3rem; }

/* ---- Hero más grande y limpio ---- */
.hero { min-height: 100vh; }
.hero-badge { margin-bottom: 1.8rem; }
.hero-title { letter-spacing: -.02em; }
.hero-sub { font-size: clamp(1.05rem,1.8vw,1.25rem); line-height: 1.75; }
.hero-btns { margin-top: 2.5rem; gap: 1.2rem; }

/* ---- Section headings más grandes ---- */
.section-title { font-size: clamp(2rem, 4.5vw, 3.4rem); letter-spacing: -.01em; }
.section-sub   { font-size: 1.05rem; line-height: 1.8; max-width: 600px; margin-bottom: 3.5rem; }

/* ---- Feature Tabs (estilo Squarespace) ---- */
.feature-tabs {
  display: flex;
  justify-content: center;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.ftab {
  padding: .55rem 1.3rem;
  border-radius: 2rem;
  border: 1.5px solid rgba(10,22,40,.14);
  background: transparent;
  color: var(--gray);
  font-family: var(--ff-body);
  font-size: .86rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .25s;
  letter-spacing: .01em;
}
.ftab:hover { border-color: var(--copper); color: var(--navy); }
.ftab.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(10,22,40,.18);
}
.ftab-panel { display: none; }
.ftab-panel.active { display: block; animation: fadeUp .35s ease; }

/* ---- Service cards más limpias ---- */
.service-card {
  border-top: none;
  border: 1.5px solid rgba(10,22,40,.07);
  box-shadow: 0 2px 12px rgba(10,22,40,.06);
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.service-card:hover {
  border-color: var(--copper);
  box-shadow: 0 8px 32px rgba(14,138,146,.12);
  transform: translateY(-5px);
}
.service-icon {
  border-radius: .75rem;
  background: rgba(14,138,146,.08);
}

/* ---- Cards "why" más espaciadas ---- */
.why-grid { gap: 1.8rem; }
.why-card { padding: 2.4rem; }

/* ---- Stats más grandes ---- */
.stat-num { font-size: clamp(2.4rem,5vw,3.5rem); }
.stats-grid { gap: 2rem; }

/* ---- Aulas — panel más amplio ---- */
.aulas-panel { gap: 1.2rem; }
.aula-card { padding: 1.6rem; }
.aula-card-name { font-size: 1rem; margin-bottom: .3rem; }

/* ---- FAQ más espaciado ---- */
.faq-list { gap: 1rem; }
.faq-q { padding: 1.4rem 1.8rem; font-size: 1rem; }
.faq-a-inner { padding: 0 1.8rem 1.4rem; font-size: .9rem; line-height: 1.75; color: var(--gray); }

/* ---- Reviews: suaviza las sombras ---- */
.rev-card {
  box-shadow: none;
  border: 1.5px solid rgba(10,22,40,.07);
}

/* ---- CTA banner más espaciado ---- */
.cta-banner { padding: 6rem 2rem; }
.cta-banner-title { font-size: clamp(2rem, 3.5vw, 2.8rem); margin-bottom: 1rem; }
.cta-banner-sub { font-size: 1.1rem; margin-bottom: 2.2rem; }

/* ---- Tipografía más limpia en dark sections ---- */
.section-dark .section-sub { color: rgba(255,255,255,.6); font-weight: 400; }
.why-desc { line-height: 1.7; }

/* ---- Footer más aire ---- */
footer { padding: 6rem 2rem 2.5rem; }
.footer-grid { gap: 4rem; }

/* ---- Botones ligeramente más grandes ---- */
.btn { padding: .9rem 2.2rem; font-size: .97rem; }
.nav-cta { padding: .5rem 1.2rem !important; }

/* ---- Marquee items más legibles ---- */
.mq-item { font-size: .88rem; font-weight: 600; gap: .7rem; }

/* ---- Scrollbar más sutil ---- */
::-webkit-scrollbar { width: 5px; }

/* ---- Mobile refinements ---- */
@media(max-width:768px){
  .section { padding: 5rem 1.4rem; }
  .feature-tabs { gap: .4rem; }
  .ftab { font-size: .8rem; padding: .45rem 1rem; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { gap: 2.5rem; }
  /* Feature tab panels: stack on mobile */
  .ftab-panel > div[style*="grid-template-columns"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.8rem !important;
  }
}

/* ==============================================
   ORBITAL HERO   v3.3
   ============================================== */
.orbit-wrap {
  position: relative;
  width: 450px;
  height: 450px;
  margin: 0 auto;
}
/* Outer ring */
.orbit-ring {
  position: absolute;
  inset: 0;
  border: 1.5px solid rgba(14,138,146,.15);
  border-radius: 50%;
  animation: spinOrbit 45s linear infinite;
}
@keyframes spinOrbit { to { transform: rotate(360deg); } }

/* Inner ring (smaller) */
.orbit-ring-inner {
  position: absolute;
  top: 60px; left: 60px; right: 60px; bottom: 60px;
  border: 1px solid rgba(14,138,146,.08);
  border-radius: 50%;
}

/* Center logo */
.orbit-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 220px; height: 220px;
  background: rgba(17,32,64,.85);
  border: 2px solid rgba(14,138,146,.35);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .3rem;
  box-shadow: 0 0 60px rgba(14,138,146,.15), 0 0 120px rgba(10,22,40,.5);
  z-index: 5;
  backdrop-filter: blur(10px);
}
.orbit-center img {
  width: 110px; height: 110px;
  object-fit: contain;
  border-radius: 50%;
}
.orbit-center-name {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--white);
}
.orbit-center-tagline {
  font-size: .7rem;
  color: var(--copper);
  letter-spacing: .06em;
}

/* Orbiting bubbles */
.orbit-bubble {
  position: absolute;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: rgba(17,32,64,.8);
  border: 1.5px solid rgba(14,138,146,.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .15rem;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(10,22,40,.4);
  z-index: 4;
  /* counter-rotate so text stays readable */
  animation: counterSpin 45s linear infinite;
}
@keyframes counterSpin { to { transform: rotate(-360deg); } }
.orbit-bubble strong {
  font-size: .72rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .04em;
  line-height: 1.2;
  text-align: center;
}
.orbit-bubble span {
  font-size: .6rem;
  color: var(--copper);
  font-weight: 500;
}
/* Positions on the ring */
.ob-top    { top: -10px;  left: 50%; margin-left: -50px; }
.ob-right  { top: 50%;    right: -10px; margin-top: -50px; }
.ob-bottom { bottom: -10px; left: 50%; margin-left: -50px; }
.ob-left   { top: 50%;    left: -10px; margin-top: -50px; }

/* Responsive orbit */
@media(max-width:540px){
  .orbit-wrap { width: 300px; height: 300px; }
  .orbit-ring-inner { top: 40px; left: 40px; right: 40px; bottom: 40px; }
  .orbit-center { width: 150px; height: 150px; }
  .orbit-center img { width: 75px; height: 75px; }
  .orbit-center-name { font-size: .9rem; }
  .orbit-center-tagline { font-size: .55rem; }
  .orbit-bubble { width: 72px; height: 72px; }
  .orbit-bubble strong { font-size: .58rem; }
  .orbit-bubble span { font-size: .5rem; }
  .ob-top    { margin-left: -36px; }
  .ob-right  { margin-top: -36px; }
  .ob-bottom { margin-left: -36px; }
  .ob-left   { margin-top: -36px; }
}

/* ==============================================
   AULAS TABS (Privada / Pública / Comunidad)
   ============================================== */
.aulas-tabs {
  display: flex;
  justify-content: center;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.atab {
  padding: .6rem 1.5rem;
  border-radius: 2rem;
  border: 1.5px solid rgba(14,138,146,.2);
  background: transparent;
  color: rgba(255,255,255,.65);
  font-family: var(--ff-body);
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .25s;
}
.atab:hover { border-color: var(--copper); color: var(--white); }
.atab.active {
  background: var(--copper);
  border-color: var(--copper);
  color: var(--navy);
}
.atab-panel { display: none; }
.atab-panel.active { display: block; animation: fadeUp .35s ease; }

/* Donadores grid */
.donadores-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
.donador-card {
  background: rgba(255,255,255,.04);
  border: 1.5px solid rgba(14,138,146,.15);
  border-radius: 1rem;
  padding: 2rem;
  backdrop-filter: blur(6px);
  transition: all .3s;
}
.donador-card:hover { border-color: var(--copper); transform: translateY(-3px); }
.donador-card.premium {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(59,183,199,.08), rgba(14,138,146,.04));
}
.donador-badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: .25rem .7rem;
  border-radius: 1.5rem;
  margin-bottom: .8rem;
}
.donador-badge.regular { background: rgba(14,138,146,.12); color: var(--copper); }
.donador-badge.premium-badge { background: rgba(59,183,199,.15); color: var(--gold); }
.donador-title { font-weight: 700; color: var(--white); font-size: 1.1rem; margin-bottom: .6rem; }
.donador-perks { list-style: none; display: flex; flex-direction: column; gap: .45rem; }
.donador-perks li {
  display: flex; align-items: center; gap: .6rem;
  font-size: .85rem; color: rgba(255,255,255,.7);
}
.donador-perks li i { color: var(--copper); width: 16px; text-align: center; }
@media(max-width:768px){ .donadores-grid{ grid-template-columns:1fr; } }

.donor-studio {
  display: grid;
  grid-template-columns: 1.15fr .95fr;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
  align-items: stretch;
}
.donor-studio-copy {
  padding: 1.45rem 1.5rem;
  border-radius: 1.7rem;
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(10,22,40,.08);
  box-shadow: 0 18px 40px rgba(10,22,40,.07);
}
.donor-studio-copy h2 {
  margin: .2rem 0 .8rem;
  color: var(--navy);
  font-size: clamp(1.55rem, 2.6vw, 2.35rem);
  line-height: 1.12;
}
.donor-studio-copy p {
  margin: 0;
  color: rgba(10,22,40,.68);
  line-height: 1.85;
}
.donor-studio-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.donor-shot {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  border-radius: 1.7rem;
  box-shadow: 0 20px 40px rgba(10,22,40,.10);
}
.donor-shot img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
}
.donor-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,22,40,.04), rgba(10,22,40,.62));
}
.donor-shot span {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.3;
}
.donor-plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem;
  margin-top: 1.4rem;
}
.donor-plan-card {
  overflow: hidden;
  border-radius: 1.85rem;
  background: rgba(255,255,255,.97);
  border: 1px solid rgba(10,22,40,.08);
  box-shadow: 0 24px 48px rgba(10,22,40,.08);
}
.donor-plan-card-premium {
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,248,236,.98));
  border-color: rgba(14,138,146,.2);
}
.donor-plan-media img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}
.donor-plan-body {
  padding: 1.35rem 1.4rem 1.5rem;
}
.donor-plan-badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .42rem .8rem;
  border-radius: 999px;
  background: rgba(14,138,146,.12);
  color: var(--copper);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.donor-plan-badge-premium {
  background: rgba(59,183,199,.16);
  color: #1c7984;
}
.donor-plan-card h3 {
  margin: .8rem 0 .45rem;
  color: var(--navy);
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.15;
}
.donor-plan-price {
  display: inline-flex;
  margin-bottom: .75rem;
  padding: .4rem .78rem;
  border-radius: 999px;
  background: rgba(10,22,40,.05);
  color: var(--navy);
  font-size: .9rem;
  font-weight: 800;
}
.donor-plan-copy {
  margin: 0 0 1rem;
  color: rgba(10,22,40,.68);
  line-height: 1.8;
}
.donor-plan-list {
  display: grid;
  gap: .62rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.donor-plan-list li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  color: rgba(10,22,40,.74);
  line-height: 1.65;
}
.donor-plan-list li i {
  color: var(--copper);
  margin-top: .18rem;
}
.donor-plan-btn {
  margin-top: 1rem;
}
.donor-support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}
.donor-support-card {
  padding: 1.2rem 1.15rem;
  border-radius: 1.45rem;
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(10,22,40,.08);
  box-shadow: 0 16px 34px rgba(10,22,40,.06);
}
.donor-support-card i {
  width: 52px;
  height: 52px;
  border-radius: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .9rem;
  background: rgba(14,138,146,.12);
  color: var(--copper);
  font-size: 1.1rem;
}
.donor-support-card h3 {
  margin: 0 0 .45rem;
  color: var(--navy);
  font-size: 1.08rem;
}
.donor-support-card p {
  margin: 0;
  color: rgba(10,22,40,.68);
  line-height: 1.72;
}

/* ---- Reveal stagger for children ---- */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal-stagger.visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: .1s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: .2s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: .25s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: .3s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: .35s; }

/* ---- Slide-in from left/right ---- */
.reveal-left { opacity:0; transform:translateX(-30px); transition:opacity .6s ease, transform .6s ease; }
.reveal-left.visible { opacity:1; transform:translateX(0); }
.reveal-right { opacity:0; transform:translateX(30px); transition:opacity .6s ease, transform .6s ease; }
.reveal-right.visible { opacity:1; transform:translateX(0); }

/* ==============================================
   SQUARE SERVICE CARDS
   ============================================== */
.services-square-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}
.sq-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  aspect-ratio: 1;
  background: var(--white);
  border: 1.5px solid rgba(10,22,40,.07);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  transition: border-color .3s, transform .3s, box-shadow .3s;
  box-shadow: 0 2px 12px rgba(10,22,40,.06);
  text-decoration: none;
  color: var(--navy);
}
.sq-card:hover {
  border-color: var(--copper);
  transform: translateY(-5px);
  box-shadow: 0 8px 32px rgba(14,138,146,.12);
}
.sq-card i {
  font-size: 2.2rem;
  color: var(--copper);
}
.sq-card span {
  font-family: var(--ff-body);
  font-size: .88rem;
  font-weight: 600;
  line-height: 1.3;
}
@media(max-width:600px){
  .services-square-grid { grid-template-columns: repeat(2, 1fr); gap: .8rem; }
  .sq-card { aspect-ratio: auto; padding: 1.2rem; }
}

/* ==============================================
   REVIEWS MARQUEE (scrolling ribbon)
   ============================================== */
.reviews-marquee {
  overflow: hidden;
  width: 100%;
  position: relative;
}
.reviews-marquee::before,
.reviews-marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.reviews-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--cream), transparent);
}
.reviews-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--cream), transparent);
}

/* ==============================================
   INDEX REDESIGN
   ============================================== */
.hero.hero-clean {
  min-height: 100vh;
  padding: 120px 2rem 88px;
  background:
    radial-gradient(circle at top left, rgba(14,138,146,.18), transparent 34%),
    linear-gradient(135deg, #07161f 0%, #0d2734 48%, #174058 100%);
}
.hero.hero-clean::before {
  background:
    radial-gradient(circle at 15% 18%, rgba(14,138,146,.12), transparent 24%),
    radial-gradient(circle at 82% 20%, rgba(59,183,199,.10), transparent 20%),
    linear-gradient(180deg, rgba(10,22,40,.28) 0%, rgba(10,22,40,.52) 100%);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.9), rgba(0,0,0,.15));
  opacity: .6;
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 3.2rem;
  align-items: center;
}
.hero-copy { max-width: 620px; }
.hero-title.hero-title-clean {
  font-size: clamp(2.9rem, 6.1vw, 5.7rem);
  text-align: left;
  margin-bottom: 1.3rem;
}
.hero-title.hero-title-clean em {
  display: block;
  color: var(--white);
  font-style: normal;
  font-size: clamp(2rem, 4vw, 3.25rem);
}
.hero-sub.hero-sub-clean {
  margin: 0 0 2rem;
  max-width: 100%;
  text-align: left;
  color: rgba(255,255,255,.78);
}
.hero-btns.hero-btns-clean {
  justify-content: flex-start;
  margin-bottom: 2rem;
}
.hero-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.hero-kpi {
  padding: 1.05rem 1rem;
  border-radius: 1.25rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
}
.hero-kpi strong {
  display: block;
  color: var(--white);
  font-family: var(--ff-display);
  font-size: 1.7rem;
  line-height: 1;
  margin-bottom: .35rem;
}
.hero-kpi span {
  display: block;
  color: rgba(255,255,255,.72);
  font-size: .8rem;
  line-height: 1.45;
}
.hero-dashboard {
  position: relative;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 2rem;
  padding: 1.15rem;
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 90px rgba(0,0,0,.24);
}
.hero-dashboard-bar {
  display: flex;
  gap: .65rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.hero-chip {
  display: inline-flex;
  align-items: center;
  padding: .45rem .8rem;
  border-radius: 999px;
  background: rgba(255,255,255,.96);
  color: var(--navy);
  font-size: .74rem;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(10,22,40,.15);
}
.hero-chip.ghost {
  background: rgba(255,255,255,.10);
  color: rgba(255,255,255,.82);
  box-shadow: none;
}
.hero-dashboard-media {
  position: relative;
  min-height: 430px;
  border-radius: 1.5rem;
  overflow: hidden;
}
.hero-dashboard-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,22,40,.08) 0%, rgba(10,22,40,.38) 100%);
}
.hero-dashboard-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-floating-card {
  position: absolute;
  z-index: 2;
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  max-width: 250px;
  border-radius: 1.45rem;
  padding: 1rem 1rem 1rem .95rem;
  background: rgba(255,255,255,.96);
  box-shadow: 0 18px 40px rgba(10,22,40,.20);
}
.hero-floating-card strong {
  display: block;
  color: var(--navy);
  font-size: .9rem;
  margin-bottom: .2rem;
}
.hero-floating-card p {
  color: var(--gray);
  font-size: .74rem;
  line-height: 1.45;
}
.hero-floating-number {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0e8a92, #3bb7c7);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  font-weight: 700;
  flex-shrink: 0;
}
.hero-floating-a {
  top: 1rem;
  right: 1rem;
}
.hero-floating-b {
  bottom: 1rem;
  left: 1rem;
}
.hero-shortcuts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .8rem;
  margin-top: 1rem;
}
.hero-shortcut {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  min-height: 84px;
  border-radius: 1.35rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.84);
  transition: transform .25s ease, border-color .25s ease, color .25s ease;
}
.hero-shortcut i {
  font-size: 1.2rem;
  color: var(--copper);
}
.hero-shortcut span {
  font-size: .8rem;
  font-weight: 700;
}
.hero-shortcut:hover {
  transform: translateY(-3px);
  border-color: rgba(14,138,146,.5);
  color: var(--white);
}

.about-split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: center;
}
.about-media {
  position: relative;
  padding-bottom: 3rem;
}
.about-media img {
  width: 100%;
  min-height: 520px;
  border-radius: 2rem;
  object-fit: cover;
  box-shadow: 0 20px 80px rgba(10,22,40,.15);
}
.about-media-card {
  position: absolute;
  right: -1.2rem;
  bottom: 0;
  width: min(320px, 92%);
  padding: 1.4rem;
  border-radius: 1.6rem;
  background: var(--white);
  border: 1px solid rgba(10,22,40,.07);
  box-shadow: 0 18px 44px rgba(10,22,40,.12);
}
.about-media-tag {
  display: inline-flex;
  margin-bottom: .65rem;
  padding: .35rem .7rem;
  border-radius: 999px;
  background: rgba(14,138,146,.08);
  color: #0e8a92;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.about-media-card strong {
  display: block;
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 1.45;
  margin-bottom: .45rem;
}
.about-media-card p {
  color: var(--gray);
  font-size: .82rem;
  line-height: 1.55;
}
.about-sub { margin-bottom: 1.1rem; }
.about-text {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.6rem;
}
.about-points {
  display: grid;
  gap: 1rem;
}
.about-point {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.15rem 1.2rem;
  border-radius: 1.35rem;
  background: var(--white);
  border: 1px solid rgba(10,22,40,.06);
  box-shadow: 0 8px 26px rgba(10,22,40,.05);
}
.about-point span {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: rgba(10,22,40,.06);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  font-weight: 700;
}
.about-point h3 {
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: .3rem;
}
.about-point p {
  color: var(--gray);
  font-size: .9rem;
  line-height: 1.6;
}

.service-switch {
  display: inline-flex;
  gap: .65rem;
  padding: .5rem;
  background: var(--white);
  border: 1px solid rgba(10,22,40,.08);
  border-radius: 999px;
  box-shadow: 0 16px 40px rgba(10,22,40,.08);
  margin-bottom: 3rem;
}
.service-pill {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  border: none;
  background: transparent;
  color: var(--gray);
  font-size: .92rem;
  font-weight: 700;
  padding: .85rem 1.35rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all .25s ease;
}
.service-pill i { color: inherit; }
.service-pill.active {
  background: linear-gradient(135deg, #e9f0ff 0%, #ffffff 100%);
  color: #0e8a92;
  box-shadow: 0 10px 26px rgba(14,138,146,.16);
}
.service-pill:hover { color: var(--navy); }
.service-panel { display: none; }
.service-panel.active { display: block; }
.service-hero-card {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 0;
  overflow: hidden;
  border-radius: 2rem;
  background: var(--white);
  border: 1px solid rgba(10,22,40,.06);
  box-shadow: 0 24px 60px rgba(10,22,40,.10);
  margin-bottom: 2rem;
}
.service-hero-light {
  background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(243,247,255,.96));
}
.service-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}
.service-hero-copy {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-number {
  display: inline-flex;
  width: 58px;
  height: 58px;
  border-radius: 20px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0e8a92, #3bb7c7);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 1rem;
}
.service-hero-copy h3 {
  font-family: var(--ff-display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: .9rem;
}
.service-hero-copy p {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.4rem;
}
.service-actions {
  display: flex;
  gap: .9rem;
  flex-wrap: wrap;
}
.service-actions .btn-outline {
  color: var(--navy);
  border-color: rgba(10,22,40,.12);
}
.service-actions .btn-outline:hover {
  color: var(--copper);
  border-color: var(--copper);
}
.advisory-box {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 1.5rem;
  padding: 2rem;
  border-radius: 2rem;
  background: linear-gradient(135deg, #103748, #1b4a60);
  margin-bottom: 2rem;
}
.advisory-copy h3 {
  font-family: var(--ff-display);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  color: var(--white);
  margin-bottom: .8rem;
}
.advisory-copy p {
  color: rgba(255,255,255,.68);
  line-height: 1.75;
  font-size: .98rem;
}
.advisory-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.advisory-item {
  padding: 1.2rem;
  border-radius: 1.4rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
}
.advisory-item span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.95);
  color: var(--navy);
  font-size: .82rem;
  font-weight: 700;
  margin-bottom: .8rem;
}
.advisory-item h4 {
  color: var(--white);
  font-size: .96rem;
  margin-bottom: .35rem;
}
.advisory-item p {
  color: rgba(255,255,255,.68);
  font-size: .83rem;
  line-height: 1.6;
}
.service-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.service-detail-card {
  padding: 1.5rem;
  border-radius: 1.5rem;
  background: var(--white);
  border: 1px solid rgba(10,22,40,.06);
  box-shadow: 0 14px 34px rgba(10,22,40,.07);
}
.service-detail-card i {
  display: inline-flex;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  align-items: center;
  justify-content: center;
  background: rgba(14,138,146,.10);
  color: var(--copper);
  font-size: 1.2rem;
  margin-bottom: .95rem;
}
.service-detail-card h4 {
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: .45rem;
}
.service-detail-card p {
  color: var(--gray);
  font-size: .88rem;
  line-height: 1.65;
}
.student-specialty-head {
  max-width: 760px;
  margin: 0 auto 1.6rem;
  text-align: center;
}
.student-specialty-head h3 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  color: var(--navy);
  margin-bottom: .65rem;
}
.student-specialty-head p {
  color: var(--gray);
  font-size: .95rem;
  line-height: 1.7;
}
.student-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.student-module {
  position: relative;
  padding: 1.4rem;
  border-radius: 1.6rem;
  background: linear-gradient(180deg, #ffffff 0%, #f6f8fc 100%);
  border: 1px solid rgba(10,22,40,.06);
  box-shadow: 0 18px 40px rgba(10,22,40,.07);
}
.module-number {
  display: inline-flex;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  align-items: center;
  justify-content: center;
  background: rgba(14,138,146,.08);
  color: #0e8a92;
  font-size: .86rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.student-module h4 {
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: .45rem;
}
.student-module p {
  color: var(--gray);
  font-size: .86rem;
  line-height: 1.65;
}
.promise-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.4rem 1.5rem;
  border-radius: 1.6rem;
  background: linear-gradient(135deg, rgba(10,22,40,.95), rgba(21,43,84,.95));
  box-shadow: 0 18px 40px rgba(10,22,40,.12);
}
.promise-card i {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(255,255,255,.10);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.promise-card strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
  margin-bottom: .35rem;
}
.promise-card p {
  color: rgba(255,255,255,.68);
  font-size: .88rem;
  line-height: 1.65;
}

.aulas-tabs.aulas-tabs-polished {
  margin-bottom: 2rem;
}
.campus-card {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 0;
  overflow: hidden;
  border-radius: 2rem;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 24px 60px rgba(0,0,0,.18);
}
.campus-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}
.campus-info {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.campus-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: .42rem .8rem;
  border-radius: 999px;
  background: rgba(14,138,146,.12);
  color: var(--copper);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: .9rem;
}
.campus-pill-soft {
  background: rgba(59,183,199,.12);
  color: var(--gold);
}
.campus-pill-wa {
  background: rgba(37,211,102,.12);
  color: #25d366;
}
.campus-info h3 {
  font-family: var(--ff-display);
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  color: var(--white);
  margin-bottom: .8rem;
}
.campus-info p {
  color: rgba(255,255,255,.72);
  line-height: 1.75;
  font-size: .96rem;
}
.campus-bullets {
  display: grid;
  gap: .65rem;
  margin: 1.25rem 0 1.6rem;
}
.campus-bullets li {
  display: flex;
  align-items: center;
  gap: .7rem;
  color: rgba(255,255,255,.84);
  font-size: .9rem;
}
.campus-bullets li i {
  width: 18px;
  color: var(--copper);
  text-align: center;
}
.campus-actions {
  display: flex;
  gap: .9rem;
  flex-wrap: wrap;
}
.campus-outline {
  color: var(--white);
  border-color: rgba(255,255,255,.25);
}
.campus-note {
  margin-top: 1rem;
  padding: .95rem 1rem;
  border-radius: 1rem;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.68);
  font-size: .8rem;
  line-height: 1.55;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}
.trust-card {
  overflow: hidden;
  border-radius: 2rem;
  background: var(--white);
  border: 1px solid rgba(10,22,40,.06);
  box-shadow: 0 22px 54px rgba(10,22,40,.10);
}
.trust-card-dark {
  background: linear-gradient(180deg, #ffffff, #f5f8fe);
}
.trust-card-media img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.trust-card-copy {
  padding: 1.8rem;
}
.trust-label {
  display: inline-flex;
  margin-bottom: .75rem;
  padding: .38rem .8rem;
  border-radius: 999px;
  background: rgba(14,138,146,.08);
  color: #0e8a92;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.trust-card-copy h3 {
  font-family: var(--ff-display);
  font-size: clamp(1.7rem, 3vw, 2.15rem);
  color: var(--navy);
  margin-bottom: .7rem;
}
.trust-card-copy p {
  color: var(--gray);
  font-size: .95rem;
  line-height: 1.75;
}
.trust-list {
  display: grid;
  gap: .55rem;
  margin: 1.1rem 0 1.5rem;
}
.trust-list li {
  display: flex;
  gap: .65rem;
  align-items: center;
  color: var(--navy);
  font-size: .88rem;
}
.trust-list li i {
  width: 16px;
  color: var(--copper);
  text-align: center;
}

.client-portal-spotlight {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.35rem;
  margin: 0 auto 1.4rem;
  padding: clamp(1.15rem, 2vw, 1.55rem);
  border-radius: 1.5rem;
  background:
    radial-gradient(520px 220px at 18% 0%, rgba(59, 183, 199, .18), transparent 68%),
    linear-gradient(135deg, rgba(14, 31, 42, .98), rgba(23, 56, 75, .94));
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 24px 60px rgba(10, 22, 40, .16);
  color: var(--white);
}
.client-portal-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .1);
  color: #3bb7c7;
  font-size: 1.35rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .14);
}
.client-portal-copy span {
  display: inline-flex;
  margin-bottom: .28rem;
  color: #c78466;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.client-portal-copy h3 {
  margin: 0 0 .22rem;
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  line-height: 1.18;
  color: var(--white);
}
.client-portal-copy p {
  margin: 0;
  max-width: 680px;
  color: rgba(255, 255, 255, .72);
  font-size: .94rem;
  line-height: 1.6;
}
.client-portal-main-btn,
.client-card-btn {
  white-space: normal;
  text-align: center;
}
.client-portal-main-btn {
  min-width: 210px;
  justify-content: center;
  background: var(--white) !important;
  color: var(--navy) !important;
}
.client-card-btn {
  width: 100%;
  justify-content: center;
}
.client-portal-hero-link {
  border-color: rgba(255, 255, 255, .36) !important;
  color: var(--white) !important;
  background: rgba(255, 255, 255, .06) !important;
}
.client-portal-hero-link:hover {
  background: rgba(255, 255, 255, .14) !important;
  color: var(--white) !important;
}
.service-client-portal {
  margin-top: .15rem;
  margin-bottom: 1.5rem;
}

.donation-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}
.donation-card {
  padding: 2rem;
  border-radius: 2rem;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  box-shadow: 0 20px 48px rgba(0,0,0,.14);
}
.donation-card-regular {
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
}
.donation-card-premium {
  background: linear-gradient(135deg, rgba(59,183,199,.14), rgba(255,255,255,.05));
  border-color: rgba(59,183,199,.35);
}
.donation-badge {
  display: inline-flex;
  padding: .4rem .85rem;
  border-radius: 999px;
  background: rgba(14,138,146,.14);
  color: var(--copper);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: .85rem;
}
.donation-badge-premium {
  background: rgba(59,183,199,.18);
  color: var(--gold);
}
.donation-card h3 {
  font-family: var(--ff-display);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: .7rem;
}
.donation-copy {
  color: rgba(255,255,255,.72);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.price-note {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: .4rem .8rem;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: var(--white);
  font-size: .84rem;
  font-weight: 800;
}
.price-note-premium {
  background: rgba(59,183,199,.18);
  color: #a7e3ea;
}
.donation-list {
  display: grid;
  gap: .65rem;
  margin-bottom: 1.4rem;
}
.donation-list li {
  display: flex;
  gap: .7rem;
  align-items: center;
  color: rgba(255,255,255,.88);
  font-size: .9rem;
}
.donation-list li i {
  width: 16px;
  color: var(--gold);
  text-align: center;
}
.donation-btn {
  width: fit-content;
}

@media (max-width: 1080px) {
  .hero-grid,
  .about-split,
  .advisory-box,
  .campus-card,
  .service-hero-card,
  .trust-grid,
  .donation-layout {
    grid-template-columns: 1fr;
  }

  .client-portal-spotlight {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .client-portal-main-btn {
    grid-column: 1 / -1;
    width: 100%;
  }

  .service-card-grid,
  .student-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-copy {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .hero.hero-clean {
    padding-inline: 1.4rem;
  }

  .hero-title.hero-title-clean,
  .hero-sub.hero-sub-clean,
  .hero-btns.hero-btns-clean {
    text-align: center;
    justify-content: center;
  }

  .hero-kpis,
  .hero-shortcuts,
  .advisory-grid,
  .service-card-grid,
  .student-grid {
    grid-template-columns: 1fr;
  }

  .hero-dashboard-media {
    min-height: 320px;
  }

  .hero-floating-card {
    position: static;
    max-width: none;
    margin-top: .8rem;
  }

  .hero-dashboard-media {
    display: flex;
    flex-direction: column;
    gap: .8rem;
  }

  .hero-dashboard-media::after {
    display: none;
  }

  .about-media {
    padding-bottom: 0;
  }

  .about-media-card {
    position: static;
    width: 100%;
    margin-top: 1rem;
  }

  .service-switch {
    flex-direction: column;
    border-radius: 1.6rem;
  }

  .campus-media img,
  .service-hero-media img {
    min-height: 260px;
  }

  .campus-actions,
  .service-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .client-portal-spotlight {
    align-items: flex-start;
    gap: 1rem;
    border-radius: 1.25rem;
  }

  .donation-btn {
    width: 100%;
    justify-content: center;
  }
}

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

  .service-pill {
    justify-content: center;
  }

  .campus-info,
  .service-hero-copy,
  .trust-card-copy,
  .donation-card,
  .advisory-box {
    padding: 1.4rem;
  }

  .client-portal-spotlight {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .client-portal-icon {
    width: 52px;
    height: 52px;
  }

  .about-point {
    grid-template-columns: 56px 1fr;
    padding: 1rem;
  }
}
.reviews-track {
  display: flex;
  gap: 1.5rem;
  animation: scrollReviews 40s linear infinite;
  width: max-content;
}
@keyframes scrollReviews {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.rev-marquee-card {
  flex-shrink: 0;
  width: 320px;
  background: var(--white);
  border: 1.5px solid rgba(10,22,40,.07);
  border-radius: 1rem;
  padding: 1.5rem 1.8rem;
  box-shadow: 0 2px 12px rgba(10,22,40,.06);
}
.rev-marquee-card p {
  color: var(--gray);
  font-size: .9rem;
  line-height: 1.6;
  margin-bottom: .8rem;
  font-style: italic;
}
.rev-marquee-card strong {
  font-size: .9rem;
  color: var(--navy);
}
.rev-marquee-card span {
  font-size: .78rem;
  color: var(--gray);
  margin-left: .3rem;
}
.reviews-marquee:hover .reviews-track {
  animation-play-state: paused;
}

/* ==============================================
   SITE REFRESH
   ============================================== */
#navbar {
  height: auto;
  padding: .75rem 1rem 0;
  background: transparent;
  border-bottom: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
#navbar.scrolled {
  padding-top: .45rem;
  background: transparent;
  box-shadow: none;
}
#navbar .nav-inner {
  max-width: 1280px;
  padding: .8rem 1rem;
  border-radius: 999px;
  background: rgba(10,22,40,.58);
  border: 1px solid rgba(14,138,146,.16);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  box-shadow: 0 18px 44px rgba(10,22,40,.18), inset 0 1px 0 rgba(255,255,255,.08);
  transition: max-width .28s ease, padding .28s ease, background .28s ease, box-shadow .28s ease;
}
#navbar.scrolled .nav-inner {
  max-width: 1040px;
  padding: .55rem .85rem;
  background: rgba(10,22,40,.72);
  box-shadow: 0 18px 48px rgba(10,22,40,.25), inset 0 1px 0 rgba(255,255,255,.08);
}
.nav-logo img {
  height: 58px;
  transition: height .25s ease;
}
#navbar.scrolled .nav-logo img { height: 44px; }
.nav-logo-text strong {
  font-size: 1.22rem;
}
.nav-links {
  gap: .25rem;
}
.nav-links a {
  padding: .62rem .88rem;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 700;
}
.nav-links a::after {
  display: none;
}
.nav-links a.active,
.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,.12);
}
#navbar.scrolled .nav-logo-text span,
#navbar.scrolled .nav-cta {
  display: none;
}
.nav-cta {
  padding: .62rem 1rem !important;
}

.page-hero {
  min-height: 78vh;
  padding: 132px 2rem 84px;
}
.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .95fr);
  gap: 2.5rem;
  align-items: center;
}
.page-hero-copy {
  max-width: 640px;
}
.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem .9rem;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.12);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.page-hero-title {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 5.8vw, 5.1rem);
  color: var(--white);
  line-height: 1.04;
  margin-bottom: 1rem;
}
.page-hero-title em {
  font-style: italic;
  color: var(--copper);
}
.page-hero-sub {
  color: rgba(255,255,255,.78);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.6rem;
}
.page-hero-actions {
  display: flex;
  gap: .9rem;
  flex-wrap: wrap;
  margin-bottom: 1.6rem;
}
.page-hero-actions .btn-outline {
  border-color: rgba(255,255,255,.25);
}
.page-hero-trust {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
}
.page-hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .55rem .85rem;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.84);
  font-size: .82rem;
  font-weight: 600;
}
.page-hero-media {
  padding: 1rem;
  border-radius: 2rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 26px 70px rgba(0,0,0,.22);
  backdrop-filter: blur(18px);
}
.page-hero-media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 1.5rem;
}
.page-hero-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .9rem;
  margin-top: .95rem;
}
.page-hero-tile {
  padding: 1rem;
  border-radius: 1.35rem;
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 40px rgba(10,22,40,.12);
}
.page-hero-tile strong {
  display: block;
  color: var(--navy);
  font-size: 1.25rem;
  font-family: var(--ff-display);
  margin-bottom: .25rem;
}
.page-hero-tile p {
  color: var(--gray);
  font-size: .82rem;
  line-height: 1.55;
}

.section-frame {
  background: var(--white);
  border: 1px solid rgba(10,22,40,.06);
  border-radius: 2rem;
  box-shadow: 0 20px 60px rgba(10,22,40,.10);
  padding: 2rem;
}
.visual-split {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 2rem;
  align-items: center;
}
.visual-split img,
.section-visual img {
  width: 100%;
  border-radius: 1.7rem;
  object-fit: cover;
}
.section-text h2,
.section-text h3 {
  font-family: var(--ff-display);
  color: var(--navy);
  line-height: 1.12;
  margin-bottom: .8rem;
}
.section-text p {
  color: var(--gray);
  line-height: 1.8;
}
.consult-banner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: 1.4rem;
  padding: 1.7rem;
  border-radius: 2rem;
  background: linear-gradient(135deg, #103748, #1d5470);
  color: var(--white);
  box-shadow: 0 22px 54px rgba(10,22,40,.16);
}
.consult-banner h3 {
  font-family: var(--ff-display);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  margin-bottom: .75rem;
}
.consult-banner p {
  color: rgba(255,255,255,.74);
  line-height: 1.75;
}
.consult-price {
  padding: 1.4rem;
  border-radius: 1.5rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
}
.consult-price strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 2.25rem;
  color: var(--white);
  margin-bottom: .3rem;
}
.consult-price span {
  display: block;
  color: rgba(255,255,255,.78);
  font-size: .88rem;
  line-height: 1.65;
}

.feature-grid-3,
.feature-grid-4,
.portal-grid,
.process-grid,
.faq-quick-grid {
  display: grid;
  gap: 1rem;
}
.feature-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.feature-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.portal-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.process-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.faq-quick-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.feature-card,
.portal-card,
.process-card,
.faq-quick-card {
  padding: 1.45rem;
  border-radius: 1.55rem;
  background: var(--white);
  border: 1px solid rgba(10,22,40,.06);
  box-shadow: 0 16px 38px rgba(10,22,40,.08);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.feature-card:hover,
.portal-card:hover,
.process-card:hover,
.faq-quick-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(10,22,40,.10);
  border-color: rgba(14,138,146,.28);
}
.feature-card i,
.portal-card i,
.process-card i,
.faq-quick-card i {
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(14,138,146,.10);
  color: var(--copper);
  font-size: 1.2rem;
  margin-bottom: .95rem;
}
.feature-card h3,
.portal-card h3,
.process-card h3,
.faq-quick-card h3 {
  color: var(--navy);
  font-size: 1.02rem;
  margin-bottom: .45rem;
}
.feature-card p,
.portal-card p,
.process-card p,
.faq-quick-card p {
  color: var(--gray);
  font-size: .88rem;
  line-height: 1.68;
}
.portal-card a {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-top: .8rem;
  color: #0e8a92;
  font-size: .85rem;
  font-weight: 700;
}

.dark-surface {
  background: linear-gradient(135deg, #0e1f2a, #18485f);
  color: var(--white);
}
.dark-surface .feature-card,
.dark-surface .portal-card,
.dark-surface .process-card,
.dark-surface .faq-quick-card {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.08);
  box-shadow: none;
}
.dark-surface .feature-card h3,
.dark-surface .portal-card h3,
.dark-surface .process-card h3,
.dark-surface .faq-quick-card h3 {
  color: var(--white);
}
.dark-surface .feature-card p,
.dark-surface .portal-card p,
.dark-surface .process-card p,
.dark-surface .faq-quick-card p {
  color: rgba(255,255,255,.72);
}

.student-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.student-tab {
  border: 1px solid rgba(10,22,40,.10);
  background: var(--white);
  color: var(--navy);
  border-radius: 999px;
  padding: .8rem 1.1rem;
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .25s ease;
  box-shadow: 0 14px 34px rgba(10,22,40,.08);
}
.student-tab.active {
  background: linear-gradient(135deg, #0e8a92, #3bb7c7);
  color: var(--white);
  border-color: transparent;
}
.student-tab-panel {
  display: none;
}
.student-tab-panel.active {
  display: block;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.timeline-step {
  position: relative;
  padding: 1.4rem;
  border-radius: 1.6rem;
  background: var(--white);
  border: 1px solid rgba(10,22,40,.06);
  box-shadow: 0 16px 36px rgba(10,22,40,.08);
}
.timeline-step span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(10,22,40,.06);
  color: var(--navy);
  font-weight: 700;
  margin-bottom: .8rem;
}
.timeline-step h3 {
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: .35rem;
}
.timeline-step p {
  color: var(--gray);
  font-size: .86rem;
  line-height: 1.62;
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 1.5rem;
}
.contact-methods {
  display: grid;
  gap: 1rem;
}
.contact-method {
  padding: 1.35rem;
  border-radius: 1.5rem;
  background: var(--white);
  border: 1px solid rgba(10,22,40,.06);
  box-shadow: 0 16px 36px rgba(10,22,40,.08);
}
.contact-method h3 {
  color: var(--navy);
  margin-bottom: .35rem;
}
.contact-method p,
.contact-method li {
  color: var(--gray);
  font-size: .92rem;
  line-height: 1.7;
}
.contact-method strong {
  color: var(--navy);
}
.mail-routing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.mail-routing-card {
  padding: 1.25rem;
  border-radius: 1.5rem;
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(247,244,238,.92));
  border: 1px solid rgba(10,22,40,.07);
  box-shadow: 0 16px 38px rgba(10,22,40,.08);
}
.mail-routing-badge {
  display: inline-flex;
  align-items: center;
  padding: .36rem .72rem;
  border-radius: 999px;
  background: rgba(14,138,146,.08);
  color: #0e8a92;
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.mail-routing-card strong {
  display: block;
  margin: .8rem 0 .45rem;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.5;
  word-break: break-word;
}
.mail-routing-card p {
  color: var(--gray);
  font-size: .88rem;
  line-height: 1.68;
}
.mail-routing-meta {
  display: block;
  margin-top: .8rem;
  color: var(--navy);
  font-size: .78rem;
  font-weight: 600;
}
.mail-routing-note {
  margin-top: 1.1rem;
  padding: 1rem 1.1rem;
  border-radius: 1.25rem;
  background: rgba(10,22,40,.95);
  color: rgba(255,255,255,.82);
  font-size: .86rem;
  line-height: 1.7;
}
.mail-routing-note strong,
.mail-routing-note span {
  color: var(--white);
}
.booking-card {
  padding: 1.65rem;
  border-radius: 1.8rem;
  background: linear-gradient(135deg, #0e1f2a, #1f5a78);
  color: var(--white);
  box-shadow: 0 24px 60px rgba(10,22,40,.16);
}
.booking-card h3 {
  font-family: var(--ff-display);
  font-size: 2rem;
  margin-bottom: .6rem;
}
.booking-card p {
  color: rgba(255,255,255,.72);
  line-height: 1.75;
}
.booking-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.3rem;
}
.booking-field label {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  color: rgba(255,255,255,.88);
  margin-bottom: .4rem;
}
.booking-field input,
.booking-field textarea,
.booking-field select {
  width: 100%;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  color: var(--white);
  border-radius: 1rem;
  padding: .85rem 1rem;
  font-family: var(--ff-body);
}
.booking-field input::placeholder,
.booking-field textarea::placeholder {
  color: rgba(255,255,255,.42);
}
.slot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .65rem;
}
.slot-btn {
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.84);
  border-radius: 999px;
  padding: .75rem .6rem;
  font-size: .84rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .25s ease;
}
.slot-btn.active {
  background: linear-gradient(135deg, var(--copper), var(--gold));
  color: var(--navy);
  border-color: transparent;
}
.booking-note {
  margin-top: .7rem;
  color: rgba(255,255,255,.66);
  font-size: .8rem;
  line-height: 1.55;
}
.booking-summary {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 1.1rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
}
.booking-summary strong {
  display: block;
  color: var(--white);
  margin-bottom: .25rem;
}
.booking-summary span {
  color: rgba(255,255,255,.74);
  font-size: .84rem;
}

.chat-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 14%;
}

/* ---------- LEGAL MODALS REFRESH ---------- */
.legal-modal-box {
  max-width: 1040px;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  border-radius: 2rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(circle at top left, rgba(14,138,146,.16), transparent 28%),
    linear-gradient(180deg, #f7f4ef 0%, #ffffff 26%);
}
.legal-modal-head {
  padding: 1.35rem 1.6rem 1rem;
  background: linear-gradient(135deg, rgba(10,22,40,.98), rgba(18,38,74,.96));
  border-bottom: 1px solid rgba(255,255,255,.08);
  flex-shrink: 0;
}
.legal-modal-head h3 {
  color: var(--white);
  font-size: 1.18rem;
}
.legal-modal-head .modal-close {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.74);
}
.legal-modal-head .modal-close:hover {
  background: rgba(14,138,146,.2);
  color: var(--white);
}
.legal-modal-body {
  padding: 1.5rem 1.6rem 1.75rem;
  overflow-y: auto;
  max-height: calc(92vh - 150px);
  scrollbar-width: thin;
  scrollbar-color: rgba(10,22,40,.18) transparent;
}
.legal-modal-body::-webkit-scrollbar {
  width: 8px;
}
.legal-modal-body::-webkit-scrollbar-thumb {
  background: rgba(10,22,40,.18);
  border-radius: 999px;
}
.legal-hero {
  padding: 1.25rem 1.25rem 1.35rem;
  border-radius: 1.6rem;
  background: linear-gradient(135deg, rgba(10,22,40,.95), rgba(19,42,82,.92));
  color: var(--white);
  box-shadow: 0 24px 56px rgba(10,22,40,.14);
}
.legal-kicker {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .42rem .74rem;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  color: rgba(255,255,255,.88);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.legal-hero p {
  margin: .9rem 0 0;
  color: rgba(255,255,255,.78);
  font-size: .92rem;
  line-height: 1.75;
}
.legal-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 1rem;
}
.legal-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .56rem .82rem;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.9);
  font-size: .8rem;
  font-weight: 600;
}
.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.15rem;
}
.legal-grid-single {
  grid-template-columns: 1fr;
}
.legal-card {
  padding: 1.15rem 1.2rem;
  border-radius: 1.5rem;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(10,22,40,.07);
  box-shadow: 0 16px 38px rgba(10,22,40,.06);
}
.legal-card h4 {
  margin: 0 0 .55rem;
  color: var(--navy);
  font-family: var(--ff-display);
  font-size: 1rem;
}
.legal-card p {
  margin: 0;
  color: var(--gray);
  font-size: .88rem;
  line-height: 1.75;
}
.legal-card a {
  color: #0e8a92;
  font-weight: 700;
}
.legal-list {
  margin: 0;
  padding-left: 1rem;
  color: var(--gray);
  font-size: .88rem;
  line-height: 1.75;
}
.legal-note {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 1.25rem;
  background: rgba(14,138,146,.08);
  border: 1px solid rgba(14,138,146,.16);
  color: var(--navy);
  font-size: .84rem;
  line-height: 1.7;
}
.legal-modal-box .modal-footer-btns {
  flex-shrink: 0;
  padding: 1rem 1.6rem 1.2rem;
  border-top: 1px solid rgba(10,22,40,.07);
  background: linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.97));
}
.legal-modal-box .modal-footer-btns .btn {
  min-width: 170px;
  justify-content: center;
}
.legal-modal-compact .legal-modal-body {
  padding-bottom: 1rem;
  max-height: calc(92vh - 108px);
  overflow-y: auto;
}
.legal-modal-compact {
  max-width: 1040px;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
}
.legal-modal-compact .legal-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ipAck-hero {
  padding: 1.15rem 1.2rem;
  border-radius: 1.55rem;
  background: linear-gradient(135deg, rgba(10,22,40,.96), rgba(24,47,89,.9));
  box-shadow: 0 18px 42px rgba(10,22,40,.14);
}
.ipAck-kicker {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .42rem .72rem;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  color: #9fdde5;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.ipAck-hero p {
  margin: .85rem 0 0;
  color: rgba(255,255,255,.82);
  font-size: .9rem;
  line-height: 1.7;
}
.ipAck-badges {
  margin: 1rem 0 1.05rem;
}
.legal-modal-compact .legal-badge {
  background: rgba(10,22,40,.05);
  border: 1px solid rgba(10,22,40,.08);
  color: var(--navy);
  box-shadow: 0 10px 24px rgba(10,22,40,.05);
}
.legal-modal-compact .legal-badge i {
  color: var(--copper);
}
.legal-modal-compact .legal-card {
  background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(249,247,243,.96));
}
.ipAck-consent-panel {
  position: sticky;
  bottom: 0;
  margin-top: 1rem;
  padding-top: .95rem;
  background: linear-gradient(180deg, rgba(247,244,239,0) 0%, rgba(255,255,255,.92) 18%, #ffffff 48%);
  backdrop-filter: blur(4px);
}

/* ---------- STUDENT INTERACTIVE LAB ---------- */
.class-vote-shell {
  display: grid;
  gap: 1.2rem;
}
.class-vote-board {
  padding: 1.4rem;
  border-radius: 2rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.09);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}
.class-vote-switch {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-bottom: 1rem;
}
.class-vote-btn {
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.82);
  border-radius: 999px;
  padding: .8rem 1rem;
  font-size: .88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .25s ease;
}
.class-vote-btn:hover,
.class-vote-btn.active {
  background: linear-gradient(135deg, #0e8a92, #9adde4);
  color: var(--navy);
  border-color: transparent;
}
.class-vote-panel {
  display: none;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 1rem;
  align-items: stretch;
}
.class-vote-panel.active {
  display: grid;
}
.class-vote-copy,
.class-vote-meta {
  padding: 1.2rem;
  border-radius: 1.6rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
}
.class-vote-copy h3,
.class-vote-meta h3 {
  color: var(--white);
  margin-bottom: .45rem;
  font-size: 1.05rem;
}
.class-vote-copy p,
.class-vote-meta p,
.class-vote-meta li {
  color: rgba(255,255,255,.74);
  line-height: 1.75;
  font-size: .88rem;
}
.class-vote-meta ul {
  margin: .6rem 0 0;
  padding-left: 1rem;
}
.class-vote-tag {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-bottom: .8rem;
  padding: .45rem .7rem;
  border-radius: 999px;
  background: rgba(14,138,146,.14);
  color: #9adbe3;
  font-size: .76rem;
  font-weight: 700;
}
.social-vote-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.social-vote-card {
  display: block;
  padding: 1.15rem;
  border-radius: 1.5rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--white);
  text-decoration: none;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.social-vote-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59,183,199,.38);
  background: rgba(255,255,255,.09);
}
.social-vote-card i {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(255,255,255,.1);
  color: #74c9d4;
  margin-bottom: .8rem;
  font-size: 1.1rem;
}
.social-vote-card strong {
  display: block;
  margin-bottom: .35rem;
  font-size: 1rem;
}
.social-vote-card p {
  color: rgba(255,255,255,.72);
  font-size: .85rem;
  line-height: 1.65;
}

/* ---------- BRAND LOCKUP ---------- */
.nav-logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(241,236,228,.9));
  border: 1px solid rgba(14,138,146,.18);
  box-shadow: 0 14px 34px rgba(10,22,40,.12);
  flex-shrink: 0;
}
.nav-logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 14%;
  border-radius: inherit;
}

#navbar.scrolled .nav-logo-mark {
  width: 56px;
  height: 56px;
  border-radius: 18px;
}

#navbar.scrolled .nav-logo-mark img {
  width: 100%;
  height: 100%;
}

/* ---------- ANNUAL PF POPUP ---------- */
.annual-popup {
  background: rgba(6,14,27,.82);
  backdrop-filter: blur(10px);
}
.annual-popup-box {
  width: min(1060px, 100%);
  max-width: 1060px;
  max-height: min(88vh, 780px);
  border-radius: 2rem;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(238,219,178,.1), transparent 24%),
    linear-gradient(135deg, #15281f, #243d31);
  color: var(--white);
  position: relative;
}
.annual-popup.open .annual-popup-box {
  animation: popupRise .26s ease both;
}
.annual-popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.78);
}
.annual-popup-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(310px, .78fr);
  height: min(88vh, 780px);
}
.annual-popup-copy {
  padding: 1.35rem 1.35rem 1.15rem;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.2) transparent;
}
.annual-popup-copy::-webkit-scrollbar {
  width: 8px;
}
.annual-popup-copy::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,.2);
  border-radius: 999px;
}
.annual-popup-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .75rem;
}
.annual-popup-kicker {
  display: inline-flex;
  padding: .35rem .65rem;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: #b8e8ee;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
}
.annual-popup-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .55rem;
}
.annual-popup-tags span {
  display: inline-flex;
  align-items: center;
  padding: .42rem .7rem;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.09);
  color: rgba(255,255,255,.78);
  font-size: .74rem;
  font-weight: 700;
}
.annual-popup-copy h2 {
  margin: 0 0 .6rem;
  color: #d8f1f5;
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 2.8vw, 2.45rem);
  line-height: 1.02;
  max-width: 460px;
}
.annual-popup-lead {
  color: rgba(255,255,255,.8);
  font-size: .92rem;
  line-height: 1.52;
  max-width: 520px;
}
.annual-popup-note {
  margin-top: .8rem;
  padding: .85rem .95rem;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, rgba(241,229,204,.16), rgba(241,229,204,.08));
  border: 1px solid rgba(241,229,204,.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}
.annual-popup-note strong {
  display: block;
  color: #9ddfe7;
  font-size: 1.12rem;
  margin-bottom: .15rem;
}
.annual-popup-note span {
  display: block;
  color: rgba(255,255,255,.76);
  font-size: .81rem;
  line-height: 1.48;
}
.annual-popup-pills {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .55rem;
  margin-top: .75rem;
}
.annual-popup-pills span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: .62rem .7rem;
  border-radius: 1rem;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.82);
  font-size: .78rem;
  font-weight: 700;
}
.annual-popup-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
  margin-top: .8rem;
}
.annual-popup-card {
  padding: .85rem .95rem;
  border-radius: 1.25rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
}
.annual-popup-columns h3 {
  color: #c5e9ef;
  margin-bottom: .45rem;
  font-size: .92rem;
}
.annual-popup-columns ul {
  margin: 0;
  padding-left: 1rem;
  color: rgba(255,255,255,.8);
  line-height: 1.48;
  font-size: .8rem;
}
.annual-popup-columns li + li {
  margin-top: .22rem;
}
.annual-popup-trust {
  display: flex;
  flex-wrap: wrap;
  gap: .72rem;
  margin-top: .8rem;
}
.annual-popup-trust span {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: rgba(255,255,255,.74);
  font-size: .8rem;
}
.annual-popup-cta {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: .9rem;
}
.annual-popup-visual {
  position: relative;
  min-height: 100%;
}
.annual-popup-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(.88) contrast(.92) brightness(.84);
}
.annual-popup-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, rgba(21,40,31,.12), rgba(21,40,31,.48));
}
.annual-popup-visual-overlay {
  position: absolute;
  inset: auto 1.2rem 1.2rem 1.2rem;
  display: grid;
  gap: .75rem;
  z-index: 1;
}
.annual-visual-card {
  padding: .95rem 1rem;
  border-radius: 1.2rem;
  background: rgba(18,36,29,.72);
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
}
.annual-visual-card span {
  display: block;
  color: #70c7d2;
  font-size: .74rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: .25rem;
  font-weight: 700;
}
.annual-visual-card strong {
  display: block;
  color: var(--white);
  font-size: .96rem;
  line-height: 1.45;
}
.annual-visual-card-soft {
  background: rgba(241,229,204,.18);
}

@keyframes popupRise {
  from {
    opacity: 0;
    transform: translateY(24px) scale(.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1100px) {
  .page-hero-grid,
  .visual-split,
  .consult-banner,
  .contact-shell,
  .donor-studio,
  .guide-spotlight,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .guide-grid,
  .guide-switch-tabs,
  .guide-stat-row,
  .guide-info-grid,
  .donor-plan-grid,
  .local-proof-trust,
  .local-proof-grid,
  .article-meta-grid,
  .feature-grid-4,
  .portal-grid,
  .process-grid,
  .timeline-grid,
  .legal-grid,
  .mail-routing-grid,
  .service-intro-grid,
  .donor-support-grid,
  .social-vote-grid,
  .annual-popup-columns,
  .annual-popup-pills {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-quick-grid {
    grid-template-columns: 1fr;
  }

  .class-vote-panel {
    grid-template-columns: 1fr;
  }

  .annual-popup-grid {
    grid-template-columns: 1fr;
  }

  .annual-popup-visual {
    min-height: 280px;
  }

  .annual-popup-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .annual-popup-tags {
    justify-content: flex-start;
  }

  #noticePanel {
    width: min(340px, calc(100vw - 2rem));
  }
}

@media (max-width: 768px) {
  #navbar {
    padding-inline: .8rem;
  }

  #navbar .nav-inner,
  #navbar.scrolled .nav-inner {
    border-radius: 1.2rem;
    padding: .75rem .85rem;
  }

  .page-hero {
    padding-inline: 1.4rem;
  }

  .page-hero-title,
  .page-hero-sub {
    text-align: center;
  }

  .page-hero-actions,
  .page-hero-trust {
    justify-content: center;
  }

  .page-hero-media img {
    height: 320px;
  }

  .guide-spotlight-media img {
    min-height: 280px;
  }

  #waFloat {
    right: 1.1rem;
    bottom: 6rem;
  }

  #waFloat a {
    width: 60px;
    height: 60px;
    font-size: 1.75rem;
    box-shadow: 0 8px 22px rgba(37,211,102,.34), 0 0 0 8px rgba(37,211,102,.09);
  }

  .page-hero-stack,
  .guide-grid,
  .guide-switch-tabs,
  .guide-stat-row,
  .guide-info-grid,
  .city-link-strip,
  .donor-studio-gallery,
  .donor-plan-grid,
  .local-proof-trust,
  .local-proof-grid,
  .article-meta-grid,
  .feature-grid-3,
  .feature-grid-4,
  .portal-grid,
  .process-grid,
  .timeline-grid,
  .slot-grid,
  .legal-grid,
  .mail-routing-grid,
  .service-intro-grid,
  .donor-support-grid,
  .social-vote-grid,
  .annual-popup-columns,
  .annual-popup-pills {
    grid-template-columns: 1fr;
  }

  .class-vote-board,
  .legal-modal-body {
    padding-inline: 1rem;
  }

  .legal-modal-box {
    border-radius: 1.45rem;
    max-height: 94vh;
  }

  .legal-modal-body {
    max-height: calc(94vh - 146px);
  }

  .legal-modal-box .modal-footer-btns {
    padding: .9rem 1rem 1rem;
    flex-direction: column;
  }

  .legal-modal-box .modal-footer-btns .btn {
    width: 100%;
  }

  .legal-modal-compact .legal-modal-body {
    max-height: calc(92vh - 96px);
  }

  .ipAck-badges {
    gap: .5rem;
  }

  .ipAck-footer {
    flex-direction: column-reverse;
  }

  .ipAck-footer .btn {
    width: 100%;
    justify-content: center;
  }

  .annual-popup-copy {
    padding: 1.2rem;
  }

  .annual-popup-grid {
    height: auto;
  }

  .annual-popup-box {
    max-height: 90vh;
  }

  .annual-popup-cta {
    flex-direction: column;
  }

  .nav-logo-mark {
    width: 56px;
    height: 56px;
    border-radius: 18px;
  }

  .nav-logo-mark img {
    width: 100%;
    height: 100%;
  }

  .annual-popup-box {
    border-radius: 1.45rem;
  }

  .article-card {
    padding: 1.35rem;
  }

  .service-intro-card {
    padding: 1.15rem;
  }

  .service-intro-lead {
    font-size: 1rem;
    line-height: 1.75;
  }

  .service-intro-text {
    font-size: .96rem;
    line-height: 1.74;
  }

  .article-sticky {
    position: static;
  }

  #noticeCenter {
    left: 1rem;
    bottom: 1rem;
  }

  #noticePanel {
    left: 0;
    width: min(320px, calc(100vw - 2rem));
  }
}


/* ---------- LONGFORM GUIDES 20260324 ---------- */
.article-layout-expanded {
  grid-template-columns: minmax(0, 1.55fr) minmax(290px, .7fr);
}
.article-guide-summary {
  background: linear-gradient(180deg, #ffffff, #f8fafc);
}
.article-longform-section {
  scroll-margin-top: 8rem;
}
.article-kicker {
  display: inline-flex;
  margin-bottom: .85rem;
  padding: .38rem .8rem;
  border-radius: 999px;
  background: rgba(14,138,146,.12);
  color: var(--copper);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.guide-summary-pills {
  display: flex;
  gap: .7rem;
  flex-wrap: wrap;
  margin-top: 1.1rem;
}
.guide-summary-pills span {
  display: inline-flex;
  align-items: center;
  padding: .55rem .9rem;
  border-radius: 999px;
  background: rgba(10,22,40,.06);
  color: var(--navy);
  font-size: .82rem;
  font-weight: 600;
}
.article-card h4 {
  color: var(--navy);
  margin-top: 1rem;
  margin-bottom: .6rem;
  font-size: 1.08rem;
}
.article-card h3 {
  font-size: 1.25rem;
  margin-top: 1rem;
}
.article-steps {
  margin: 0;
  padding-left: 1.15rem;
  display: grid;
  gap: .7rem;
}
.article-steps li::marker {
  font-weight: 700;
  color: var(--copper);
}
.article-table-wrap {
  margin: 1.1rem 0;
  border-radius: 1.3rem;
  border: 1px solid rgba(10,22,40,.08);
  overflow: auto;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
}
.article-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}
.article-table th,
.article-table td {
  padding: .85rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(10,22,40,.08);
  color: var(--navy);
  font-size: .92rem;
  line-height: 1.6;
}
.article-table th {
  background: rgba(10,22,40,.94);
  color: var(--white);
  font-size: .82rem;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.article-table tr:nth-child(even) td {
  background: rgba(10,22,40,.025);
}
.article-divider {
  border: 0;
  height: 1px;
  margin: 1.4rem 0;
  background: linear-gradient(90deg, rgba(14,138,146,0), rgba(14,138,146,.55), rgba(14,138,146,0));
}
.article-scroll-card {
  max-height: calc(100vh - 8rem);
  overflow: auto;
}
.toc-links-dense a {
  line-height: 1.45;
  font-size: .94rem;
}
.inline-placeholder-link {
  display: inline-block;
  padding: .08rem .38rem;
  border-radius: .45rem;
  background: rgba(10,22,40,.06);
  color: var(--navy);
  font-weight: 700;
}
.article-cta-side .btn-wa-large {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 1rem 1.2rem;
  gap: .6rem;
}
.article-cta-side .btn-wa-large i {
  font-size: 1.2rem;
}

.guide-editorial-hero {
  min-height: auto;
  background:
    radial-gradient(circle at 18% 20%, rgba(59,183,199, .18), transparent 24%),
    radial-gradient(circle at 84% 16%, rgba(14,138,146, .20), transparent 18%),
    radial-gradient(circle at 84% 80%, rgba(255, 255, 255, .08), transparent 18%),
    linear-gradient(135deg, #07111d 0%, #10213d 52%, #183356 100%);
}
.guide-editorial-hero::before {
  background:
    linear-gradient(140deg, rgba(6, 12, 22, .78) 0%, rgba(11, 21, 39, .52) 48%, rgba(24, 51, 86, .24) 100%),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: auto, 34px 34px, 34px 34px;
}
.guide-editorial-hero .page-hero-copy {
  max-width: 680px;
}
.guide-editorial-hero .page-hero-sub {
  max-width: 58ch;
}
.guide-editorial-hero .page-hero-trust span {
  line-height: 1.45;
}
.guide-page .reveal,
.guide-page .reveal-left,
.guide-page .reveal-right,
.guide-hub-page .reveal,
.guide-hub-page .reveal-left,
.guide-hub-page .reveal-right {
  opacity: 1;
  transform: none;
}
.guide-page .article-card,
.guide-switchboard .guide-info-card {
  backdrop-filter: blur(6px);
}
.guide-page .article-longform-section {
  position: relative;
  overflow: hidden;
}
.guide-page .article-longform-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(14,138,146,0), rgba(14,138,146,.66), rgba(59,183,199,.18));
  opacity: .85;
}
.guide-page .article-card h2 {
  line-height: 1.18;
}
.guide-page .article-card h3 {
  margin-top: 1.35rem;
  font-size: 1.28rem;
}
.guide-page .article-card h4 {
  margin-top: 1.1rem;
}
.guide-page .article-card p + .article-list,
.guide-page .article-card p + .article-steps,
.guide-page .article-card p + .article-table-wrap,
.guide-page .article-card ul + p,
.guide-page .article-card ol + p,
.guide-page .article-card .article-table-wrap + p,
.guide-page .article-card h3 + .article-table-wrap,
.guide-page .article-card h4 + .article-table-wrap {
  margin-top: 1rem;
}
.guide-page .article-card .article-list + h3,
.guide-page .article-card .article-steps + h3,
.guide-page .article-card .article-table-wrap + h3,
.guide-page .article-card .article-list + h4,
.guide-page .article-card .article-steps + h4,
.guide-page .article-card .article-table-wrap + h4 {
  margin-top: 1.45rem;
}
.guide-page .article-card .article-list,
.guide-page .article-card .article-steps {
  margin-top: .15rem;
}
.guide-page .article-card p strong:first-child {
  color: var(--navy);
}
.guide-faq-list {
  display: grid;
  gap: .9rem;
  margin-top: 1rem;
}
.guide-faq-item {
  border: 1px solid rgba(10,22,40,.08);
  border-radius: 1.2rem;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  box-shadow: 0 14px 28px rgba(10,22,40,.05);
  overflow: hidden;
}
.guide-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.15rem;
  color: var(--navy);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.55;
  position: relative;
  padding-right: 3.2rem;
}
.guide-faq-item summary::-webkit-details-marker {
  display: none;
}
.guide-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.15rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(10,22,40,.06);
  color: var(--copper);
  font-size: 1.2rem;
  font-weight: 700;
}
.guide-faq-item[open] summary {
  background: rgba(10,22,40,.025);
  border-bottom: 1px solid rgba(10,22,40,.08);
}
.guide-faq-item[open] summary::after {
  content: "–";
}
.guide-faq-answer {
  padding: 1rem 1.15rem 1.15rem;
}
.guide-faq-answer > :first-child {
  margin-top: 0;
}
.guide-faq-answer .article-divider:last-child {
  display: none;
}
.guide-spotlight-copy .guide-info-grid {
  align-items: start;
}
.guide-spotlight-copy .guide-info-grid .guide-info-card:first-child {
  grid-row: span 2;
}
.guide-spotlight-copy .guide-info-card p {
  margin: 0;
  color: rgba(10,22,40,.72);
  line-height: 1.7;
}
.guide-switch-tabs {
  align-items: stretch;
}
.guide-switch-btn {
  text-align: left;
}
@media (max-width: 980px) {
  .article-layout-expanded {
    grid-template-columns: 1fr;
  }
  .article-scroll-card {
    max-height: none;
  }
  .guide-spotlight-copy .guide-info-grid .guide-info-card:first-child {
    grid-row: auto;
  }
}
@media (max-width: 640px) {
  .article-card {
    padding: 1.35rem;
  }
  .article-table {
    min-width: 560px;
  }
  .guide-summary-pills {
    flex-direction: column;
  }
  .guide-faq-item summary {
    font-size: .96rem;
  }
}

/* PRICING SECTION 20260325 */
#precios .container > h2 {
  margin: .9rem 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  color: var(--navy);
}
#precios .container > p:not(.precios-nota) {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(10,22,40,.72);
  line-height: 1.8;
  font-size: 1.02rem;
  text-align: center;
}
.precios-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
  margin-top: 2.4rem;
}
.precio-card {
  position: relative;
  padding: 1.6rem;
  border-radius: 1.7rem;
  background:
    radial-gradient(circle at top right, rgba(183,145,108,.12), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.92));
  border: 1px solid rgba(10,22,40,.08);
  box-shadow: 0 18px 45px rgba(10,22,40,.08);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.precio-card h3 {
  margin: 0 0 .85rem;
  font-size: 1.16rem;
  line-height: 1.35;
  color: var(--navy);
}
.precio-card > p {
  margin: 0;
  color: rgba(10,22,40,.72);
  line-height: 1.72;
}
.precio-monto {
  display: flex;
  align-items: baseline;
  gap: .5rem;
  margin: 0 0 .9rem !important;
  font-family: var(--font-display);
}
.precio-monto span[itemprop="price"] {
  font-size: 2.15rem;
  line-height: 1;
  color: var(--navy);
}
.precio-moneda {
  font-size: .92rem;
  font-family: var(--font-body);
  color: rgba(10,22,40,.56);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.precio-badge {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 1rem;
  padding: .42rem .72rem;
  border-radius: 999px;
  background: rgba(33, 176, 109, .12);
  color: #117d4b;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
}
.btn-precio {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: .92rem 1.1rem;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  box-shadow: 0 14px 30px rgba(10,22,40,.14);
}
.btn-precio:hover {
  transform: translateY(-2px);
  background: #132742;
  box-shadow: 0 18px 35px rgba(10,22,40,.18);
}
.precios-nota {
  margin-top: 1.35rem;
  color: rgba(10,22,40,.58);
  font-size: .94rem;
  text-align: center;
}
@media (max-width: 1080px) {
  .precios-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 680px) {
  .precios-grid {
    grid-template-columns: 1fr;
  }
  .precio-card {
    padding: 1.35rem;
  }
}
#precios { padding: 5rem 0; }
.precios-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-bottom: 1.5rem; }
.precio-card { background: var(--bg-secondary,#f8f8f6); border: 1px solid rgba(0,0,0,0.07); border-radius: 14px; padding: 1.5rem; display: flex; flex-direction: column; justify-content: space-between; gap: 1.25rem; transition: box-shadow 0.2s ease, transform 0.2s ease; }
.precio-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.08); transform: translateY(-2px); }
.precio-card-inner { display: flex; flex-direction: column; gap: 0.5rem; }
.precio-card h3 { font-size: 1rem; font-weight: 600; margin: 0; line-height: 1.4; }
.precio-card p { font-size: 0.875rem; color: var(--color-text-secondary,#666); margin: 0; line-height: 1.6; }
.precio-footer { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-top: 1rem; border-top: 1px solid rgba(0,0,0,0.06); }
.precio-valor { font-size: 1.25rem; font-weight: 700; color: var(--color-text-primary,#1a1a1a); }
.precio-moneda { font-size: 0.75rem; color: var(--color-text-secondary,#888); font-weight: 400; }
.btn-precio { display: inline-flex; align-items: center; white-space: nowrap; padding: 0.45rem 1rem; border-radius: 8px; font-size: 0.8rem; font-weight: 500; background: transparent; border: 1.5px solid currentColor; color: inherit; text-decoration: none; transition: background 0.15s ease, color 0.15s ease; }
.btn-precio:hover { background: var(--color-accent,#0e8a92); border-color: var(--color-accent,#0e8a92); color: #fff; }
.precio-gratis { border-color: rgba(14,138,146,0.3); background: rgba(14,138,146,0.05); }
.precio-tag-gratis { display: inline-block; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; padding: 0.2rem 0.6rem; border-radius: 20px; background: rgba(14,138,146,0.15); color: #0b5f66; margin-bottom: 0.25rem; width: fit-content; }
.btn-precio-gratis { border-color: var(--color-accent,#0e8a92); color: var(--color-accent,#0b5f66); }
.btn-precio-gratis:hover { background: var(--color-accent,#0e8a92); color: #fff; }
.precios-nota { font-size: 0.8rem; color: var(--color-text-secondary,#999); margin-top: 0.5rem; }

/* ==============================================================
   INDEX HERO ANIMADO + ROBOT + PAGOS 3D
   ============================================================== */
body.has-ai-robot #chatWidget,
body.has-ai-robot #waFloat {
  display: none !important;
}

.hero.hero-clean.hero-animated {
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 12% 12%, rgba(46, 194, 255, .14), transparent 38%),
    linear-gradient(140deg, #030f1d 0%, #0a2338 54%, #123953 100%);
}
.hero.hero-clean.hero-animated .hero-pattern {
  display: none !important;
}
.hero.hero-clean.hero-animated::before {
  background:
    radial-gradient(95% 72% at 50% 100%, rgba(10,22,40,.66), transparent 70%),
    radial-gradient(44% 36% at 80% 18%, rgba(132,95,255,.18), transparent 75%),
    linear-gradient(180deg, rgba(3,12,24,.36), rgba(3,12,24,.62));
  animation: heroAuraPulse 8s ease-in-out infinite;
}
.hero.hero-clean.hero-animated .hero-grid {
  position: relative;
  z-index: 6;
}
.hero.hero-clean.hero-animated .hero-waves,
.hero.hero-clean.hero-animated .hero-bg-aurora {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.hero.hero-clean.hero-animated .hero-waves span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 140vmax;
  height: 140vmax;
  margin-left: -70vmax;
  margin-top: -70vmax;
  border-radius: 46% 54% 52% 48% / 52% 48% 55% 45%;
  filter: blur(26px);
  mix-blend-mode: screen;
  animation: heroWaveSpin 30s linear infinite;
}
.hero.hero-clean.hero-animated .hero-waves span:nth-child(1) {
  background: conic-gradient(from 0deg, transparent 0 58%, rgba(0, 224, 255, .22) 72%, rgba(0, 224, 255, .05) 88%, transparent 100%);
}
.hero.hero-clean.hero-animated .hero-waves span:nth-child(2) {
  background: conic-gradient(from 180deg, transparent 0 62%, rgba(127, 80, 255, .2) 75%, rgba(127, 80, 255, .06) 90%, transparent 100%);
  width: 114vmax;
  height: 114vmax;
  margin-left: -57vmax;
  margin-top: -57vmax;
  animation-duration: 42s;
  animation-direction: reverse;
}
.hero.hero-clean.hero-animated .hero-waves span:nth-child(3) {
  background: radial-gradient(circle at 50% 50%, rgba(0, 255, 194, .2), transparent 62%);
  filter: blur(44px);
  animation: heroWaveBreath 13s ease-in-out infinite;
}
.hero.hero-clean.hero-animated .hero-bg-aurora span {
  position: absolute;
  border-radius: 50%;
  filter: blur(34px);
  mix-blend-mode: screen;
  opacity: .56;
  animation: heroAuroraDrift 20s ease-in-out infinite alternate;
}
.hero.hero-clean.hero-animated .hero-bg-aurora span:nth-child(1) {
  width: 54vmax;
  height: 54vmax;
  left: -8%;
  top: -14%;
  background: radial-gradient(circle at 44% 42%, rgba(0, 223, 255, .48) 0%, rgba(0, 223, 255, 0) 70%);
}
.hero.hero-clean.hero-animated .hero-bg-aurora span:nth-child(2) {
  width: 40vmax;
  height: 40vmax;
  right: -8%;
  top: 8%;
  background: radial-gradient(circle at 50% 42%, rgba(181, 107, 255, .34) 0%, rgba(181, 107, 255, 0) 70%);
  animation-duration: 25s;
}
.hero.hero-clean.hero-animated .hero-bg-aurora span:nth-child(3) {
  width: 58vmax;
  height: 58vmax;
  left: 20%;
  bottom: -30%;
  background: radial-gradient(circle at 50% 50%, rgba(35, 255, 203, .28) 0%, rgba(35, 255, 203, 0) 72%);
  animation-duration: 28s;
}
@keyframes heroWaveSpin {
  to { transform: rotate(360deg); }
}
@keyframes heroWaveBreath {
  0%,100% { transform: scale(1); opacity: .72; }
  50% { transform: scale(1.14); opacity: 1; }
}
@keyframes heroAuroraDrift {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(3%, -3%, 0) scale(1.08); }
  100% { transform: translate3d(-2%, 3%, 0) scale(.95); }
}
@keyframes heroAuraPulse {
  0%,100% { opacity: .82; }
  50% { opacity: 1; }
}

.ai-chatbot-fab {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 10020;
  width: clamp(118px, 11vw, 170px);
  aspect-ratio: 1 / 1.2;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(8,19,37,.28), rgba(8,19,37,.08));
  border: 1px solid rgba(122, 208, 255, .22);
  box-shadow: 0 20px 42px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.16);
  transition: transform .3s ease;
}
.ai-chatbot-fab:hover {
  transform: translateY(-4px);
}
.ai-chatbot-viewer,
.ai-chatbot-fab spline-viewer {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  display: block;
  background: transparent;
  pointer-events: none !important;
}
.ai-chatbot-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
  transition: opacity .35s ease;
}
.ai-chatbot-fab.is-ready .ai-chatbot-fallback {
  opacity: 0;
}
.ai-chat-hint {
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #e7f7ff;
  font-size: .63rem;
  letter-spacing: .08em;
  font-weight: 700;
  animation: robotHintPulse 2.4s ease-in-out infinite;
}
@keyframes robotHintPulse {
  0%,100% { opacity: .72; transform: translateX(-50%) translateY(0); }
  50% { opacity: 1; transform: translateX(-50%) translateY(-2px); }
}

.pay-fan-stage {
  margin: 2.6rem auto 0;
  width: min(1120px, 100%);
  display: grid;
  gap: 1.1rem;
}
.pay-fan {
  position: relative;
  min-height: 395px;
  border-radius: 2.2rem;
  background:
    radial-gradient(circle at 14% 18%, rgba(75, 236, 255, .08), transparent 40%),
    radial-gradient(circle at 80% 10%, rgba(117, 146, 255, .08), transparent 40%),
    linear-gradient(145deg, #020b17 0%, #071426 42%, #051020 100%);
  overflow: hidden;
  border: 1px solid rgba(58, 108, 148, .36);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 20px 50px rgba(1,7,14,.42);
}
.pay-fan-card {
  position: absolute;
  left: 50%;
  bottom: 26px;
  width: clamp(165px, 20vw, 252px);
  aspect-ratio: 1.585 / 1;
  border-radius: 22px;
  border: 1px solid rgba(125, 246, 255, .26);
  background:
    linear-gradient(125deg, rgba(27,38,55,.96) 0%, rgba(48,62,82,.92) 52%, rgba(28,38,55,.96) 100%);
  box-shadow: 0 24px 42px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.08);
  overflow: hidden;
  animation: payCardFloat 7s ease-in-out infinite;
}
.pay-fan-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 28%, rgba(255,255,255,.16) 50%, transparent 72%);
  opacity: .3;
}
.pay-fan-card img {
  position: absolute;
  right: 14px;
  top: 12px;
  width: clamp(60px, 30%, 88px);
  height: auto;
  object-fit: contain;
  background: rgba(255,255,255,.94);
  border-radius: 8px;
  padding: 4px 8px;
}
.pay-fan-card.card-1 { transform: translateX(-330px) rotate(-48deg); z-index: 1; animation-delay: .1s; }
.pay-fan-card.card-2 { transform: translateX(-272px) rotate(-38deg); z-index: 2; animation-delay: .2s; }
.pay-fan-card.card-3 { transform: translateX(-212px) rotate(-29deg); z-index: 3; animation-delay: .3s; }
.pay-fan-card.card-4 { transform: translateX(-148px) rotate(-20deg); z-index: 4; animation-delay: .4s; }
.pay-fan-card.card-5 { transform: translateX(-84px) rotate(-10deg); z-index: 5; animation-delay: .5s; }
.pay-fan-card.card-6 { transform: translateX(-18px) rotate(0deg); z-index: 6; animation-delay: .6s; }
.pay-fan-card.card-7 { transform: translateX(50px) rotate(10deg); z-index: 7; animation-delay: .7s; }
.pay-fan-card.card-8 {
  transform: translateX(120px) rotate(20deg);
  z-index: 8;
  animation-delay: .8s;
  border-color: rgba(131, 237, 255, .4);
}
@keyframes payCardFloat {
  0%,100% { margin-bottom: 0; }
  50% { margin-bottom: 9px; }
}

.pay-podium {
  position: relative;
  margin: -8px auto 0;
  width: min(820px, 94%);
  height: 210px;
}
.pay-podium-top {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 48px;
  border-radius: 50px;
  background: linear-gradient(180deg, #d7b88d, #b79260);
  box-shadow: inset 0 2px 8px rgba(255,255,255,.35), 0 14px 24px rgba(0,0,0,.22);
}
.pay-podium-body {
  position: absolute;
  left: 0;
  right: 0;
  top: 34px;
  bottom: 0;
  border-radius: 0 0 42px 42px;
  background:
    linear-gradient(180deg, #9ca6ad, #7a8791);
  border: 1px solid rgba(110,120,128,.56);
}
.pay-stack {
  position: absolute;
  left: 50%;
  top: -62px;
  transform: translateX(-50%);
  width: 360px;
  height: 170px;
}
.pay-stack-card {
  position: absolute;
  top: 0;
  width: 180px;
  aspect-ratio: 1.58 / 1;
  border-radius: 18px;
  background: linear-gradient(130deg, #eceff1, #b8c1c7);
  box-shadow: 0 18px 30px rgba(0,0,0,.2);
  border: 1px solid rgba(255,255,255,.55);
  overflow: hidden;
}
.pay-stack-card img {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 72px;
  height: auto;
  object-fit: contain;
}
.stack-a { left: 30px; z-index: 4; transform: rotate(-4deg); }
.stack-b { left: 115px; top: 12px; z-index: 3; transform: rotate(2deg); background: linear-gradient(130deg, #c08882, #9a5f5a); }
.stack-c { left: 198px; top: 20px; z-index: 2; transform: rotate(6deg); background: linear-gradient(130deg, #a187b9, #7f639b); }

@media (max-width: 980px) {
  .pay-fan { min-height: 330px; }
  .pay-fan-card.card-1 { transform: translateX(-258px) rotate(-46deg); }
  .pay-fan-card.card-2 { transform: translateX(-212px) rotate(-36deg); }
  .pay-fan-card.card-3 { transform: translateX(-166px) rotate(-27deg); }
  .pay-fan-card.card-4 { transform: translateX(-116px) rotate(-18deg); }
  .pay-fan-card.card-5 { transform: translateX(-66px) rotate(-9deg); }
  .pay-fan-card.card-6 { transform: translateX(-12px) rotate(0deg); }
  .pay-fan-card.card-7 { transform: translateX(42px) rotate(10deg); }
  .pay-fan-card.card-8 { transform: translateX(98px) rotate(19deg); }
  .pay-podium { width: min(680px, 95%); }
}
@media (max-width: 740px) {
  .hero.hero-clean.hero-animated { padding-bottom: 118px; }
  .ai-chatbot-fab {
    width: 108px;
    right: 10px;
    bottom: 12px;
  }
  .pay-fan-stage { gap: .7rem; }
  .pay-fan { min-height: 260px; border-radius: 1.4rem; }
  .pay-fan-card {
    width: 136px;
    border-radius: 14px;
  }
  .pay-fan-card.card-1 { transform: translateX(-168px) rotate(-44deg); }
  .pay-fan-card.card-2 { transform: translateX(-138px) rotate(-34deg); }
  .pay-fan-card.card-3 { transform: translateX(-108px) rotate(-25deg); }
  .pay-fan-card.card-4 { transform: translateX(-78px) rotate(-16deg); }
  .pay-fan-card.card-5 { transform: translateX(-48px) rotate(-8deg); }
  .pay-fan-card.card-6 { transform: translateX(-16px) rotate(0deg); }
  .pay-fan-card.card-7 { transform: translateX(16px) rotate(8deg); }
  .pay-fan-card.card-8 { transform: translateX(50px) rotate(16deg); }
  .pay-podium { height: 165px; }
  .pay-podium-top { height: 36px; border-radius: 30px; }
  .pay-podium-body { top: 24px; border-radius: 0 0 26px 26px; }
  .pay-stack { width: 238px; top: -38px; }
  .pay-stack-card { width: 112px; border-radius: 12px; }
.stack-a { left: 12px; }
.stack-b { left: 66px; top: 8px; }
.stack-c { left: 118px; top: 14px; }
}

/* ==============================================================
   HOTFIX 2026-04-20 — HERO + CHATBOT + PAGOS PREMIUM
   ============================================================== */
body.has-ai-robot #chatWidget,
body.has-ai-robot #waFloat {
  display: none !important;
}

.hero.hero-clean.hero-animated {
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(120% 90% at 20% 8%, rgba(45, 190, 255, .2), transparent 55%),
    radial-gradient(80% 60% at 86% 12%, rgba(151, 90, 255, .16), transparent 60%),
    linear-gradient(140deg, #020a14 0%, #071a2d 44%, #0d3250 100%);
}
.hero.hero-clean.hero-animated .hero-pattern {
  display: none !important;
}
.hero.hero-clean.hero-animated::before {
  background:
    radial-gradient(120% 86% at 50% 105%, rgba(0, 255, 196, .16), transparent 70%),
    radial-gradient(66% 52% at 18% 28%, rgba(0, 198, 255, .22), transparent 70%),
    radial-gradient(62% 46% at 82% 22%, rgba(127, 86, 255, .2), transparent 72%),
    linear-gradient(180deg, rgba(2,10,20,.28), rgba(2,10,20,.62));
  background-size: 115% 115%, 120% 120%, 120% 120%, 100% 100%;
  animation: heroBgFlow 16s ease-in-out infinite alternate;
}
.hero.hero-clean.hero-animated::after {
  content: "";
  position: absolute;
  inset: -26% -18%;
  z-index: 2;
  pointer-events: none;
  background:
    conic-gradient(from 0deg at 50% 50%, rgba(0,255,211,.0) 0 38%, rgba(0,255,211,.09) 48%, rgba(0,255,211,.0) 56%),
    conic-gradient(from 220deg at 50% 50%, rgba(118,119,255,.0) 0 40%, rgba(118,119,255,.1) 48%, rgba(118,119,255,.0) 58%);
  mix-blend-mode: screen;
  opacity: .78;
  animation: heroHaloSpin 28s linear infinite;
}
.hero.hero-clean.hero-animated .hero-grid {
  position: relative;
  z-index: 7;
}
.hero.hero-clean.hero-animated .hero-waves,
.hero.hero-clean.hero-animated .hero-bg-aurora {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.hero.hero-clean.hero-animated .hero-waves span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 128vmax;
  height: 128vmax;
  margin-left: -64vmax;
  margin-top: -64vmax;
  border-radius: 44% 56% 51% 49% / 52% 48% 56% 44%;
  filter: blur(30px);
  mix-blend-mode: screen;
  animation: heroWaveSpinStrong 22s linear infinite;
}
.hero.hero-clean.hero-animated .hero-waves span:nth-child(1) {
  background: conic-gradient(from 0deg, transparent 0 56%, rgba(0, 232, 255, .28) 70%, rgba(0,232,255,.04) 88%, transparent 100%);
}
.hero.hero-clean.hero-animated .hero-waves span:nth-child(2) {
  background: conic-gradient(from 180deg, transparent 0 58%, rgba(136, 104, 255, .24) 74%, rgba(136,104,255,.05) 90%, transparent 100%);
  width: 108vmax;
  height: 108vmax;
  margin-left: -54vmax;
  margin-top: -54vmax;
  animation-duration: 31s;
  animation-direction: reverse;
}
.hero.hero-clean.hero-animated .hero-waves span:nth-child(3) {
  background: radial-gradient(circle at 50% 50%, rgba(0, 255, 196, .24), transparent 62%);
  filter: blur(50px);
  animation: heroWavePulseStrong 10s ease-in-out infinite;
}
.hero.hero-clean.hero-animated .hero-bg-aurora span {
  position: absolute;
  border-radius: 50%;
  filter: blur(38px);
  mix-blend-mode: screen;
  opacity: .62;
  animation: heroAuroraDriftStrong 16s ease-in-out infinite alternate;
}
.hero.hero-clean.hero-animated .hero-bg-aurora span:nth-child(1) {
  width: 52vmax;
  height: 52vmax;
  left: -8%;
  top: -16%;
  background: radial-gradient(circle at 44% 42%, rgba(0, 224, 255, .52) 0%, rgba(0,224,255,0) 72%);
}
.hero.hero-clean.hero-animated .hero-bg-aurora span:nth-child(2) {
  width: 38vmax;
  height: 38vmax;
  right: -7%;
  top: 6%;
  background: radial-gradient(circle at 50% 40%, rgba(184, 110, 255, .42) 0%, rgba(184,110,255,0) 74%);
  animation-duration: 20s;
}
.hero.hero-clean.hero-animated .hero-bg-aurora span:nth-child(3) {
  width: 56vmax;
  height: 56vmax;
  left: 18%;
  bottom: -32%;
  background: radial-gradient(circle at 50% 50%, rgba(0, 255, 189, .36) 0%, rgba(0,255,189,0) 72%);
  animation-duration: 24s;
}
@keyframes heroBgFlow {
  0% { background-position: 0% 0%, 10% 5%, 90% 4%, 0 0; }
  100% { background-position: 8% 12%, 0% 12%, 100% 18%, 0 0; }
}
@keyframes heroHaloSpin {
  to { transform: rotate(360deg); }
}
@keyframes heroWaveSpinStrong {
  to { transform: rotate(360deg); }
}
@keyframes heroWavePulseStrong {
  0%,100% { transform: scale(1); opacity: .7; }
  50% { transform: scale(1.16); opacity: 1; }
}
@keyframes heroAuroraDriftStrong {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(4%, -3%, 0) scale(1.1); }
  100% { transform: translate3d(-3%, 4%, 0) scale(.94); }
}

.ai-assistant {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 10030;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .6rem;
}
.ai-assistant-fab {
  width: clamp(120px, 10.8vw, 168px);
  aspect-ratio: 1 / 1.2;
  border: 1px solid rgba(136, 216, 255, .26);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(6,18,37,.42), rgba(7,17,34,.18));
  box-shadow: 0 22px 48px rgba(0,0,0,.38), inset 0 1px 0 rgba(255,255,255,.18);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform .26s ease;
}
.ai-assistant-fab:hover {
  transform: translateY(-4px);
}
.ai-assistant-viewer,
.ai-assistant-fab spline-viewer {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  display: block;
  background: transparent;
  pointer-events: none !important;
}
.ai-assistant-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
  transition: opacity .3s ease;
}
.ai-assistant.viewer-ready .ai-assistant-fallback {
  opacity: 0;
}
.ai-assistant-label {
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #ebfaff;
  font-size: .62rem;
  letter-spacing: .08em;
  font-weight: 700;
}
.ai-assistant-panel {
  width: min(340px, calc(100vw - 20px));
  border-radius: 1.2rem;
  border: 1px solid rgba(123, 210, 255, .22);
  background: linear-gradient(180deg, rgba(6,18,38,.95), rgba(8,25,46,.94));
  box-shadow: 0 20px 44px rgba(0,0,0,.35);
  display: none;
  flex-direction: column;
  overflow: hidden;
}
.ai-assistant.open .ai-assistant-panel {
  display: flex;
  animation: aiPanelIn .22s ease-out;
}
@keyframes aiPanelIn {
  from { opacity: 0; transform: translateY(12px) scale(.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.ai-assistant-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .7rem .8rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: #eaf8ff;
}
.ai-assistant-head strong {
  display: block;
  font-size: .9rem;
}
.ai-assistant-head span {
  display: block;
  font-size: .7rem;
  color: rgba(234,248,255,.72);
  letter-spacing: .03em;
}
.ai-assistant-close {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.86);
  cursor: pointer;
}
.ai-assistant-messages {
  padding: .8rem;
  max-height: 230px;
  overflow: auto;
  display: grid;
  gap: .55rem;
}
.ai-assistant-msg {
  padding: .55rem .7rem;
  border-radius: .8rem;
  font-size: .78rem;
  line-height: 1.4;
}
.ai-assistant-msg.bot {
  background: rgba(255,255,255,.12);
  color: rgba(240,249,255,.94);
  justify-self: start;
  border-bottom-left-radius: .3rem;
}
.ai-assistant-msg.user {
  background: linear-gradient(135deg, #0e8a92, #3bb7c7);
  color: #fff;
  justify-self: end;
  border-bottom-right-radius: .3rem;
}
.ai-assistant-quick {
  padding: 0 .75rem .65rem;
  display: grid;
  gap: .45rem;
  grid-template-columns: 1fr 1fr;
}
.ai-assistant-quick button {
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  color: rgba(237,248,255,.92);
  border-radius: .7rem;
  padding: .45rem .5rem;
  font-size: .7rem;
  font-weight: 600;
  cursor: pointer;
}
.ai-assistant-input {
  padding: 0 .75rem .7rem;
  display: flex;
  gap: .45rem;
}
.ai-assistant-input input {
  flex: 1;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: .7rem;
  background: rgba(255,255,255,.08);
  color: #eff8ff;
  padding: .52rem .62rem;
  font-size: .78rem;
}
.ai-assistant-input button {
  width: 34px;
  border: 0;
  border-radius: .7rem;
  background: linear-gradient(135deg, #0e8a92, #3bb7c7);
  color: #fff;
  cursor: pointer;
}
.ai-assistant-wa {
  margin: 0 .75rem .8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  border-radius: .75rem;
  padding: .55rem .7rem;
  background: #25d366;
  color: #072b16;
  font-weight: 700;
  font-size: .78rem;
  text-decoration: none;
}

.pay-showcase {
  margin: 2.45rem auto 0;
  width: min(1160px, 100%);
  display: grid;
  gap: 1rem;
}
.pay-showcase-stage {
  position: relative;
  min-height: 420px;
  border-radius: 2.2rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 12%, rgba(0, 225, 255, .12), transparent 40%),
    radial-gradient(circle at 84% 10%, rgba(116, 118, 255, .14), transparent 44%),
    linear-gradient(145deg, #020a17 0%, #051528 46%, #031023 100%);
  border: 1px solid rgba(91, 130, 168, .4);
  box-shadow: 0 26px 55px rgba(1,8,15,.4), inset 0 1px 0 rgba(255,255,255,.08);
}
.pay-fan {
  position: absolute;
  left: 50%;
  bottom: 20px;
  width: 860px;
  height: 330px;
  transform: translateX(-50%);
  transform-origin: 50% 96%;
  animation: payFanSway 8s ease-in-out infinite;
}
@keyframes payFanSway {
  0%,100% { transform: translateX(-50%) rotate(-1.1deg); }
  50% { transform: translateX(-50%) rotate(1.2deg); }
}
.pay-card {
  --x: 0px;
  --r: 0deg;
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: clamp(188px, 19vw, 270px);
  aspect-ratio: 1.58 / 1;
  border-radius: 22px;
  border: 1px solid rgba(97, 229, 255, .24);
  background:
    linear-gradient(130deg, rgba(24,36,55,.98) 0%, rgba(56,69,90,.92) 54%, rgba(31,44,66,.96) 100%);
  box-shadow: 0 22px 40px rgba(0,0,0,.36), inset 0 1px 0 rgba(255,255,255,.07);
  transform: translateX(calc(-50% + var(--x))) rotate(var(--r));
  overflow: hidden;
}
.pay-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(112deg, transparent 22%, rgba(255,255,255,.14) 48%, transparent 76%);
  opacity: .28;
}
.pay-card-title {
  position: absolute;
  left: 14px;
  top: 13px;
  color: rgba(224,236,247,.86);
  font-size: .64rem;
  letter-spacing: .12em;
  font-weight: 700;
}
.pay-card-chip {
  position: absolute;
  left: 14px;
  bottom: 12px;
  width: 28px;
  height: 20px;
  border-radius: 6px;
  background: linear-gradient(145deg, #f0cf87, #bd9455);
  box-shadow: inset 0 1px 2px rgba(255,255,255,.45);
}
.pay-card-digits {
  position: absolute;
  left: 50px;
  bottom: 14px;
  color: rgba(222,234,245,.72);
  letter-spacing: .12em;
  font-size: .72rem;
}
.pay-card img {
  position: absolute;
  right: 12px;
  top: 10px;
  width: clamp(62px, 33%, 96px);
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  background: rgba(255,255,255,.95);
  padding: 4px 8px;
}
.pay-card--visa {
  border-color: rgba(119, 174, 255, .28);
}
.pay-card--master {
  border-color: rgba(118, 226, 255, .28);
}
.pay-card--mp {
  border-color: rgba(88, 185, 255, .3);
}
.pay-card--nu {
  border-color: rgba(195, 131, 255, .3);
}
.pay-card--revo {
  border-color: rgba(148, 178, 255, .3);
}
.pay-card.card-1 { --x: -310px; --r: -50deg; z-index: 1; }
.pay-card.card-2 { --x: -252px; --r: -40deg; z-index: 2; }
.pay-card.card-3 { --x: -190px; --r: -30deg; z-index: 3; }
.pay-card.card-4 { --x: -128px; --r: -20deg; z-index: 4; }
.pay-card.card-5 { --x: -66px; --r: -10deg; z-index: 5; }
.pay-card.card-6 { --x: 0px; --r: 0deg; z-index: 6; }
.pay-card.card-7 { --x: 66px; --r: 10deg; z-index: 7; }
.pay-card.card-8 { --x: 134px; --r: 21deg; z-index: 8; }

.pay-pedestal {
  position: relative;
  margin: -10px auto 0;
  width: min(840px, 94%);
  height: 208px;
}
.pay-pedestal-top {
  position: absolute;
  inset: 0 0 auto;
  height: 46px;
  border-radius: 46px;
  background: linear-gradient(180deg, #e0c295, #b9905f);
  box-shadow: inset 0 2px 8px rgba(255,255,255,.35), 0 14px 24px rgba(0,0,0,.2);
}
.pay-pedestal-body {
  position: absolute;
  inset: 32px 0 0;
  border-radius: 0 0 40px 40px;
  background: linear-gradient(180deg, #a4afb8, #7e8b97);
  border: 1px solid rgba(117, 126, 136, .6);
}
.pay-stack {
  position: absolute;
  left: 50%;
  top: -56px;
  transform: translateX(-50%);
  width: 360px;
  height: 160px;
}
.pay-stack-card {
  position: absolute;
  width: 180px;
  aspect-ratio: 1.58 / 1;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.5);
  box-shadow: 0 18px 30px rgba(0,0,0,.22);
  overflow: hidden;
}
.pay-stack-card img {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 72px;
  height: auto;
}
.stack-1 {
  left: 28px;
  top: 0;
  z-index: 4;
  transform: rotate(-5deg);
  background: linear-gradient(130deg, #eff2f4, #c5ccd2);
}
.stack-2 {
  left: 116px;
  top: 11px;
  z-index: 3;
  transform: rotate(2deg);
  background: linear-gradient(130deg, #c89a90, #9e6860);
}
.stack-3 {
  left: 202px;
  top: 20px;
  z-index: 2;
  transform: rotate(7deg);
  background: linear-gradient(130deg, #9e8bb8, #785f99);
}

@media (max-width: 980px) {
  .pay-showcase-stage { min-height: 350px; }
  .pay-fan {
    width: 700px;
    height: 280px;
  }
  .pay-card.card-1 { --x: -228px; --r: -48deg; }
  .pay-card.card-2 { --x: -186px; --r: -38deg; }
  .pay-card.card-3 { --x: -144px; --r: -28deg; }
  .pay-card.card-4 { --x: -102px; --r: -18deg; }
  .pay-card.card-5 { --x: -58px; --r: -9deg; }
  .pay-card.card-6 { --x: -12px; --r: 0deg; }
  .pay-card.card-7 { --x: 36px; --r: 9deg; }
  .pay-card.card-8 { --x: 84px; --r: 18deg; }
}
@media (max-width: 740px) {
  .hero.hero-clean.hero-animated { padding-bottom: 118px; }
  .ai-assistant {
    right: 10px;
    bottom: 10px;
  }
  .ai-assistant-fab {
    width: 104px;
  }
  .ai-assistant-panel {
    width: min(320px, calc(100vw - 14px));
  }
  .pay-showcase { gap: .7rem; }
  .pay-showcase-stage {
    min-height: 264px;
    border-radius: 1.4rem;
  }
  .pay-fan {
    width: 430px;
    height: 190px;
    bottom: 6px;
  }
  .pay-card {
    width: 124px;
    border-radius: 12px;
  }
  .pay-card-title,
  .pay-card-digits {
    display: none;
  }
  .pay-card-chip {
    width: 20px;
    height: 14px;
    left: 8px;
    bottom: 8px;
  }
  .pay-card.card-1 { --x: -132px; --r: -44deg; }
  .pay-card.card-2 { --x: -108px; --r: -34deg; }
  .pay-card.card-3 { --x: -84px; --r: -25deg; }
  .pay-card.card-4 { --x: -60px; --r: -16deg; }
  .pay-card.card-5 { --x: -36px; --r: -8deg; }
  .pay-card.card-6 { --x: -10px; --r: 0deg; }
  .pay-card.card-7 { --x: 16px; --r: 8deg; }
  .pay-card.card-8 { --x: 42px; --r: 16deg; }
  .pay-pedestal {
    height: 162px;
  }
  .pay-pedestal-top {
    height: 34px;
    border-radius: 28px;
  }
  .pay-pedestal-body {
    inset: 22px 0 0;
    border-radius: 0 0 24px 24px;
  }
  .pay-stack {
    width: 238px;
    top: -36px;
  }
  .pay-stack-card {
    width: 112px;
    border-radius: 10px;
  }
  .stack-1 { left: 10px; }
  .stack-2 { left: 66px; top: 8px; }
  .stack-3 { left: 120px; top: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero.hero-clean.hero-animated::before,
  .hero.hero-clean.hero-animated::after,
  .hero.hero-clean.hero-animated .hero-waves span,
  .hero.hero-clean.hero-animated .hero-bg-aurora span,
  .pay-fan {
    animation: none !important;
  }
}

/* ==============================================================
   PERF FINAL OVERRIDE (must stay last)
   ============================================================== */
.hero.hero-clean.hero-animated.hero-abanico {
  min-height: 100svh !important;
  contain: layout paint !important;
}
.hero.hero-clean.hero-animated.hero-abanico::before {
  content: none !important;
  animation: none !important;
}
.hero.hero-clean.hero-animated.hero-abanico::after {
  inset: 0 !important;
  opacity: .26 !important;
  background: radial-gradient(120% 80% at 50% -20%, rgba(196,149,106,.11), transparent 60%) !important;
  animation: none !important;
}
.hero.hero-clean.hero-animated.hero-abanico .hero-bg-spline {
  z-index: 0 !important;
  contain: layout paint style !important;
  transform: translateZ(0) !important;
}
.hero.hero-clean.hero-animated.hero-abanico .hero-bg-spline spline-viewer {
  transform: translateZ(0) !important;
  will-change: transform, opacity !important;
}
.hero.hero-clean.hero-animated.hero-abanico .hero-bg-tint {
  mix-blend-mode: normal !important;
  opacity: .7 !important;
}
.hero.hero-clean.hero-animated.hero-abanico .hero-bg-aurora {
  display: none !important;
}
.hero.hero-clean.hero-animated.hero-abanico .hero-waves {
  mix-blend-mode: normal !important;
  opacity: .3 !important;
}
.hero.hero-clean.hero-animated.hero-abanico .hero-waves span {
  width: 98vmax !important;
  height: 98vmax !important;
  margin-left: -49vmax !important;
  margin-top: -49vmax !important;
  filter: blur(14px) !important;
  animation: heroWaveSpinLite 56s linear infinite !important;
}
.hero.hero-clean.hero-animated.hero-abanico .hero-waves span:nth-child(2) {
  width: 84vmax !important;
  height: 84vmax !important;
  margin-left: -42vmax !important;
  margin-top: -42vmax !important;
  animation-duration: 72s !important;
}
.hero.hero-clean.hero-animated.hero-abanico .hero-waves span:nth-child(3) {
  display: none !important;
}
.hero.hero-clean.hero-animated.hero-abanico.hero-spline-paused .hero-bg-spline spline-viewer {
  opacity: .001 !important;
}
@media (max-width: 900px) {
  .hero.hero-clean.hero-animated.hero-abanico .hero-waves span:nth-child(2) {
    display: none !important;
  }
}

/* ==============================================================
   PERFORMANCE HOTFIX 2026-04-20 (hero ultra-fluid)
   ============================================================== */
.hero.hero-clean.hero-animated.hero-abanico {
  contain: layout paint;
  min-height: 100svh !important;
}
.hero.hero-clean.hero-animated.hero-abanico::before {
  content: none !important;
  animation: none !important;
}
.hero.hero-clean.hero-animated.hero-abanico::after {
  inset: 0 !important;
  opacity: .28 !important;
  background: radial-gradient(120% 80% at 50% -20%, rgba(196,149,106,.12), transparent 60%) !important;
  animation: none !important;
}
.hero.hero-clean.hero-animated.hero-abanico .hero-bg-spline {
  z-index: 0 !important;
  contain: layout paint style;
  transform: translateZ(0);
}
.hero.hero-clean.hero-animated.hero-abanico .hero-bg-spline spline-viewer {
  transform: translateZ(0);
  will-change: transform, opacity;
}
.hero.hero-clean.hero-animated.hero-abanico .hero-bg-tint {
  z-index: 1 !important;
  mix-blend-mode: normal !important;
  opacity: .72;
  background:
    radial-gradient(72% 62% at 20% 100%, rgba(10,22,40,.5), transparent 65%),
    radial-gradient(72% 62% at 80% 0%, rgba(10,22,40,.4), transparent 60%),
    linear-gradient(180deg, rgba(10,22,40,.3) 0%, rgba(10,22,40,.12) 45%, rgba(10,22,40,.52) 100%) !important;
}
.hero.hero-clean.hero-animated.hero-abanico .hero-waves {
  z-index: 2 !important;
  mix-blend-mode: normal !important;
  opacity: .34 !important;
}
.hero.hero-clean.hero-animated.hero-abanico .hero-waves span {
  width: 98vmax !important;
  height: 98vmax !important;
  margin-left: -49vmax !important;
  margin-top: -49vmax !important;
  filter: blur(16px) !important;
  animation: heroWaveSpinLite 54s linear infinite !important;
  will-change: transform;
}
.hero.hero-clean.hero-animated.hero-abanico .hero-waves span:nth-child(2) {
  width: 84vmax !important;
  height: 84vmax !important;
  margin-left: -42vmax !important;
  margin-top: -42vmax !important;
  animation-duration: 72s !important;
}
.hero.hero-clean.hero-animated.hero-abanico .hero-waves span:nth-child(3) {
  display: none !important;
}
.hero.hero-clean.hero-animated.hero-abanico .hero-bg-aurora {
  display: none !important;
}
.hero.hero-clean.hero-animated.hero-abanico .hero-grid {
  z-index: 6 !important;
}
.hero.hero-clean.hero-animated.hero-abanico.hero-spline-paused .hero-bg-spline spline-viewer {
  opacity: .001 !important;
}
@keyframes heroWaveSpinLite {
  to { transform: rotate(360deg); }
}
@media (max-width: 900px) {
  .hero.hero-clean.hero-animated.hero-abanico .hero-waves {
    opacity: .24 !important;
  }
  .hero.hero-clean.hero-animated.hero-abanico .hero-waves span:nth-child(2) {
    display: none !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero.hero-clean.hero-animated.hero-abanico .hero-waves span,
  .hero.hero-clean.hero-animated.hero-abanico .hero-bg-spline spline-viewer {
    animation: none !important;
    transition: none !important;
  }
}

/* ==============================================================
   PAGOS LITERAL (metodos-de-pago-v3)
   ============================================================== */
#pagos.pay-literal {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 600px at 15% 10%, rgba(20, 217, 196, .10), transparent 60%),
    radial-gradient(800px 500px at 85% 15%, rgba(107, 91, 255, .12), transparent 60%),
    radial-gradient(1000px 700px at 50% 110%, rgba(20, 217, 196, .06), transparent 60%),
    linear-gradient(180deg, #05070d 0%, #070b16 100%);
}
#pagos.pay-literal .pay-html {
  color: #e8ecf5;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
#pagos.pay-literal .pay-html .wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 80px 28px 120px;
}
#pagos.pay-literal .pay-html .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 999px;
  background: rgba(255, 255, 255, .04);
  backdrop-filter: blur(12px);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  color: #8a93ab;
  text-transform: uppercase;
}
#pagos.pay-literal .pay-html .eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #14d9c4;
  box-shadow: 0 0 12px #14d9c4;
}
#pagos.pay-literal .pay-html .header {
  text-align: center;
  margin-bottom: 60px;
}
#pagos.pay-literal .pay-html .title {
  font-family: 'Fraunces', var(--ff-display);
  font-weight: 500;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 1;
  letter-spacing: -.03em;
  margin: 22px 0 18px;
  color: #e8ecf5;
}
#pagos.pay-literal .pay-html .title em {
  font-style: italic;
  font-weight: 300;
  background: linear-gradient(120deg, #14d9c4 0%, #8de9dc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
#pagos.pay-literal .pay-html .subtitle {
  font-size: 17px;
  color: #8a93ab;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}
#pagos.pay-literal .pay-html .stage {
  position: relative;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(16, 24, 50, .6) 0%, rgba(10, 15, 29, .3) 100%);
  border: 1px solid rgba(255, 255, 255, .08);
  padding: 40px 40px 40px;
  overflow: hidden;
  margin-bottom: 60px;
}
#pagos.pay-literal .pay-html .stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 300px at 50% 0%, rgba(20, 217, 196, .12), transparent 60%),
    radial-gradient(400px 200px at 50% 100%, rgba(212, 168, 75, .06), transparent 60%);
  pointer-events: none;
}
#pagos.pay-literal .pay-html .stage-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
  gap: 12px;
}
#pagos.pay-literal .pay-html .stage-label {
  font-size: 11px;
  letter-spacing: .22em;
  color: #5a6279;
  text-transform: uppercase;
  font-weight: 600;
}
#pagos.pay-literal .pay-html .stage-meta {
  display: flex;
  gap: 18px;
  font-size: 11px;
  color: #5a6279;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
}
#pagos.pay-literal .pay-html .stage-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}
#pagos.pay-literal .pay-html .stage-meta span::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #14d9c4;
}
#pagos.pay-literal .pay-html .deck {
  position: relative;
  height: 460px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px 0 40px;
}
#pagos.pay-literal .pay-html .deck-floor {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
  max-width: 720px;
  height: 28px;
  background: radial-gradient(ellipse, rgba(0, 0, 0, .7) 0%, transparent 70%);
  filter: blur(14px);
  z-index: 0;
}
#pagos.pay-literal .pay-html .card-slot {
  --slot-x: 0px;
  --slot-y: 0px;
  --slot-r: 0deg;
  position: absolute;
  width: 290px;
  aspect-ratio: 1.586 / 1;
  transform: translate3d(var(--slot-x), var(--slot-y), 0) rotate(var(--slot-r));
  transform-origin: 50% 90%;
  transition: transform .55s cubic-bezier(.16, 1, .3, 1), z-index 0s .3s, filter .25s ease, opacity .25s ease;
  cursor: pointer;
  will-change: transform;
  outline: none;
}
#pagos.pay-literal .pay-html .slot-1 { --slot-x: -340px; --slot-y: 28px; --slot-r: -18deg; z-index: 1; }
#pagos.pay-literal .pay-html .slot-2 { --slot-x: -170px; --slot-y: 4px; --slot-r: -9deg; z-index: 2; }
#pagos.pay-literal .pay-html .slot-3 { --slot-x: 0px; --slot-y: -30px; --slot-r: 0deg; z-index: 5; }
#pagos.pay-literal .pay-html .slot-4 { --slot-x: 170px; --slot-y: 4px; --slot-r: 9deg; z-index: 3; }
#pagos.pay-literal .pay-html .slot-5 { --slot-x: 340px; --slot-y: 28px; --slot-r: 18deg; z-index: 1; }
#pagos.pay-literal .pay-html .card-slot:hover,
#pagos.pay-literal .pay-html .card-slot:focus-visible,
#pagos.pay-literal .pay-html .card-slot.is-active {
  transform: translate3d(var(--slot-x), calc(var(--slot-y) - 56px), 0) rotate(var(--slot-r)) scale(1.06);
  z-index: 20;
  transition: transform .45s cubic-bezier(.16, 1, .3, 1), z-index 0s 0s, filter .25s ease, opacity .25s ease;
}
#pagos.pay-literal .pay-html .card-slot.is-locked {
  z-index: 22;
}
#pagos.pay-literal .pay-html .deck.is-interacting .card-slot:not(.is-active):not(.is-locked) {
  filter: saturate(.82) brightness(.88);
  opacity: .86;
}
#pagos.pay-literal .pay-html .card {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow:
    0 30px 60px -25px rgba(0, 0, 0, .9),
    0 0 0 1px rgba(255, 255, 255, .06) inset,
    0 1px 0 rgba(255, 255, 255, .12) inset;
  transition: box-shadow .45s ease;
  overflow: hidden;
  opacity: 0;
  animation: literalCardFadeIn .75s cubic-bezier(.16, 1, .3, 1) forwards;
}
#pagos.pay-literal .pay-html .card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, .08) 49%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .08) 51%, transparent 65%);
  background-size: 200% 100%;
  background-position: -120% 0;
  transition: background-position 1s cubic-bezier(.22, .61, .36, 1);
  pointer-events: none;
}
#pagos.pay-literal .pay-html .card-slot:hover .card::before,
#pagos.pay-literal .pay-html .card-slot.is-active .card::before {
  background-position: 120% 0;
}
#pagos.pay-literal .pay-html .card-slot:hover .card,
#pagos.pay-literal .pay-html .card-slot.is-active .card {
  box-shadow:
    0 50px 90px -20px rgba(0, 0, 0, .95),
    0 0 50px rgba(20, 217, 196, .3),
    0 0 0 1px rgba(20, 217, 196, .35) inset;
}
#pagos.pay-literal .pay-html .card-mp { background: linear-gradient(135deg, #1493dd 0%, #034a87 50%, #0b79c6 100%); }
#pagos.pay-literal .pay-html .card-mp::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 100% 100%, rgba(255, 230, 0, .25), transparent 45%),
    radial-gradient(100% 80% at 0% 0%, rgba(255, 255, 255, .15), transparent 50%);
  pointer-events: none;
}
#pagos.pay-literal .pay-html .card-bbva { background: linear-gradient(135deg, #004481 0%, #002859 50%, #1464a5 100%); }
#pagos.pay-literal .pay-html .card-bbva::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(73, 175, 220, .25), transparent 45%),
    radial-gradient(100% 80% at 100% 100%, rgba(255, 255, 255, .1), transparent 55%);
  pointer-events: none;
}
#pagos.pay-literal .pay-html .card-rev { background: linear-gradient(135deg, #1a1a24 0%, #050508 50%, #252535 100%); }
#pagos.pay-literal .pay-html .card-rev::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(100% 80% at 0% 0%, rgba(120, 90, 255, .3), transparent 40%),
    radial-gradient(100% 80% at 100% 100%, rgba(0, 200, 220, .25), transparent 45%),
    radial-gradient(80% 60% at 50% 50%, rgba(255, 100, 200, .12), transparent 55%);
  pointer-events: none;
}
#pagos.pay-literal .pay-html .card-nu { background: linear-gradient(135deg, #9820d4 0%, #5d0d8a 50%, #a834e0 100%); }
#pagos.pay-literal .pay-html .card-nu::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(255, 255, 255, .18), transparent 45%),
    radial-gradient(100% 80% at 0% 100%, rgba(50, 0, 80, .4), transparent 55%);
  pointer-events: none;
}
#pagos.pay-literal .pay-html .card-banorte { background: linear-gradient(135deg, #d0021b 0%, #8a0012 50%, #e9222f 100%); }
#pagos.pay-literal .pay-html .card-banorte::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 0% 100%, rgba(0, 0, 0, .45), transparent 45%),
    radial-gradient(100% 80% at 100% 0%, rgba(255, 255, 255, .15), transparent 50%);
  pointer-events: none;
}
#pagos.pay-literal .pay-html .c-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}
#pagos.pay-literal .pay-html .c-brand-slot {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
#pagos.pay-literal .pay-html .c-bank-logo {
  height: 22px;
  display: flex;
  align-items: center;
}
#pagos.pay-literal .pay-html .c-bank-logo svg {
  height: 100%;
}
#pagos.pay-literal .pay-html .c-type {
  font-size: 9px;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 255, 255, .72);
}
#pagos.pay-literal .pay-html .c-chip {
  width: 38px;
  height: 28px;
  border-radius: 5px;
  background: linear-gradient(135deg, #e9c77a 0%, #b68532 50%, #e9c77a 100%);
  position: relative;
  box-shadow: 0 2px 4px rgba(0, 0, 0, .4), inset 0 1px 0 rgba(255, 255, 255, .3);
  flex-shrink: 0;
}
#pagos.pay-literal .pay-html .c-chip::before {
  content: "";
  position: absolute;
  inset: 4px 4px 15px 4px;
  border-bottom: 1px solid rgba(0, 0, 0, .35);
  background: rgba(0, 0, 0, .2);
}
#pagos.pay-literal .pay-html .c-chip::after {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(0, 0, 0, .28);
  border-radius: 2px;
}
#pagos.pay-literal .pay-html .c-mid {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 2;
}
#pagos.pay-literal .pay-html .c-wave {
  width: 16px;
  height: 16px;
  opacity: .6;
  color: #fff;
}
#pagos.pay-literal .pay-html .c-num {
  font-size: 14px;
  letter-spacing: .22em;
  color: rgba(255, 255, 255, .88);
  font-weight: 500;
}
#pagos.pay-literal .pay-html .c-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  z-index: 2;
}
#pagos.pay-literal .pay-html .c-holder {
  font-size: 8px;
  letter-spacing: .22em;
  color: rgba(255, 255, 255, .55);
  text-transform: uppercase;
  line-height: 1.5;
}
#pagos.pay-literal .pay-html .c-holder strong {
  display: block;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  margin-top: 3px;
}
#pagos.pay-literal .pay-html .c-network {
  height: 22px;
  display: flex;
  align-items: center;
}
#pagos.pay-literal .pay-html .c-network svg {
  height: 100%;
}
#pagos.pay-literal .pay-html .stage-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding-top: 28px;
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  position: relative;
  z-index: 2;
}
#pagos.pay-literal .pay-html .chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 999px;
  background: rgba(255, 255, 255, .02);
  font-size: 12px;
  color: #8a93ab;
}
#pagos.pay-literal .pay-html .chip svg {
  width: 14px;
  height: 14px;
  color: #14d9c4;
}
#pagos.pay-literal .pay-html .section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin: 60px 0 24px;
  gap: 24px;
  flex-wrap: wrap;
}
#pagos.pay-literal .pay-html .section-head h3 {
  font-family: 'Fraunces', var(--ff-display);
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 40px);
  letter-spacing: -.02em;
  margin: 0;
}
#pagos.pay-literal .pay-html .section-head h3 em {
  font-style: italic;
  color: #14d9c4;
  font-weight: 400;
}
#pagos.pay-literal .pay-html .section-head p {
  color: #8a93ab;
  font-size: 14px;
  max-width: 380px;
}
#pagos.pay-literal .pay-html .cat-label {
  font-size: 11px;
  letter-spacing: .22em;
  color: #5a6279;
  text-transform: uppercase;
  font-weight: 700;
  margin: 36px 0 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
#pagos.pay-literal .pay-html .cat-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, .08), transparent);
}
#pagos.pay-literal .pay-html .grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
#pagos.pay-literal .pay-html .pm {
  position: relative;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 14px;
  background: rgba(255, 255, 255, .02);
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}
#pagos.pay-literal .pay-html .pm:hover {
  transform: translateY(-3px);
  border-color: rgba(20, 217, 196, .35);
  background: rgba(20, 217, 196, .04);
}
#pagos.pay-literal .pay-html .pm::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, .08) 50%, transparent 80%);
  transform: translateX(-120%);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}
#pagos.pay-literal .pay-html .pm:hover::before {
  opacity: 1;
}
#pagos.pay-literal .pay-html .pm-logo {
  width: 52px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
#pagos.pay-literal .pay-html .pm-logo svg {
  width: 80%;
  height: auto;
}
#pagos.pay-literal .pay-html .pm-name {
  font-size: 14px;
  font-weight: 700;
  color: #e8ecf5;
}
#pagos.pay-literal .pay-html .pm-meta {
  font-size: 11px;
  color: #8a93ab;
  letter-spacing: .08em;
  text-transform: uppercase;
}
#pagos.pay-literal .pay-html .info-note {
  margin-top: 28px;
  border: 1px solid rgba(20, 217, 196, .24);
  border-radius: 14px;
  background: rgba(20, 217, 196, .05);
  padding: 18px 18px;
  display: flex;
  gap: 14px;
}
#pagos.pay-literal .pay-html .info-note .ico {
  color: #14d9c4;
  flex-shrink: 0;
}
#pagos.pay-literal .pay-html .info-note h3 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 700;
}
#pagos.pay-literal .pay-html .info-note p {
  margin: 0;
  color: #a8b0c6;
  line-height: 1.7;
}
#pagos.pay-literal .pay-html .cta {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
#pagos.pay-literal .pay-html .cta p {
  color: #8a93ab;
  margin: 0;
}
#pagos.pay-literal .pay-html .cta a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(20, 217, 196, .35);
  background: linear-gradient(135deg, rgba(20, 217, 196, .25), rgba(9, 160, 146, .22));
  color: #eafffc;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease;
}
#pagos.pay-literal .pay-html .cta a:hover {
  transform: translateY(-2px);
}
#pagos.pay-literal .pay-html .reveal {
  opacity: 0;
  animation: literalFadeUp .8s cubic-bezier(.16, 1, .3, 1) forwards;
}
#pagos.pay-literal .pay-html .d1 { animation-delay: .1s; }
#pagos.pay-literal .pay-html .d2 { animation-delay: .2s; }
#pagos.pay-literal .pay-html .d3 { animation-delay: .3s; }
#pagos.pay-literal .pay-html .d4 { animation-delay: .5s; }
#pagos.pay-literal .pay-html .d5 { animation-delay: .9s; }
#pagos.pay-literal .pay-html .slot-3 .card { animation-delay: .65s; }
#pagos.pay-literal .pay-html .slot-2 .card,
#pagos.pay-literal .pay-html .slot-4 .card { animation-delay: .82s; }
#pagos.pay-literal .pay-html .slot-1 .card,
#pagos.pay-literal .pay-html .slot-5 .card { animation-delay: .99s; }
@keyframes literalFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes literalCardFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 1200px) {
  #pagos.pay-literal .pay-html .deck {
    height: 440px;
  }
  #pagos.pay-literal .pay-html .card-slot {
    width: 250px;
  }
  #pagos.pay-literal .pay-html .slot-1 { --slot-x: -270px; --slot-y: 38px; --slot-r: -16deg; }
  #pagos.pay-literal .pay-html .slot-2 { --slot-x: -135px; --slot-y: 10px; --slot-r: -8deg; }
  #pagos.pay-literal .pay-html .slot-3 { --slot-x: 0px; --slot-y: -22px; --slot-r: 0deg; }
  #pagos.pay-literal .pay-html .slot-4 { --slot-x: 135px; --slot-y: 10px; --slot-r: 8deg; }
  #pagos.pay-literal .pay-html .slot-5 { --slot-x: 270px; --slot-y: 38px; --slot-r: 16deg; }
}
@media (max-width: 860px) {
  #pagos.pay-literal .pay-html .wrap {
    padding: 68px 20px 90px;
  }
  #pagos.pay-literal .pay-html .stage {
    padding: 26px 20px 24px;
  }
  #pagos.pay-literal .pay-html .stage-meta {
    gap: 10px;
    flex-wrap: wrap;
  }
  #pagos.pay-literal .pay-html .deck {
    height: 380px;
  }
  #pagos.pay-literal .pay-html .card-slot {
    width: 214px;
  }
  #pagos.pay-literal .pay-html .card-slot:hover,
  #pagos.pay-literal .pay-html .card-slot:focus-visible,
  #pagos.pay-literal .pay-html .card-slot.is-active {
    transform: translate3d(var(--slot-x), calc(var(--slot-y) - 34px), 0) rotate(var(--slot-r)) scale(1.04);
  }
}
@media (max-width: 700px) {
  #pagos.pay-literal .pay-html .deck {
    height: auto;
    flex-direction: column;
    gap: 16px;
    padding: 20px 0;
    perspective: none;
  }
  #pagos.pay-literal .pay-html .deck-floor {
    display: none;
  }
  #pagos.pay-literal .pay-html .card-slot {
    position: relative;
    width: min(300px, 92%);
    transform: none;
  }
  #pagos.pay-literal .pay-html .slot-1,
  #pagos.pay-literal .pay-html .slot-2,
  #pagos.pay-literal .pay-html .slot-3,
  #pagos.pay-literal .pay-html .slot-4,
  #pagos.pay-literal .pay-html .slot-5 {
    --slot-x: 0px;
    --slot-y: 0px;
    --slot-r: 0deg;
  }
  #pagos.pay-literal .pay-html .card-slot:hover,
  #pagos.pay-literal .pay-html .card-slot:focus-visible,
  #pagos.pay-literal .pay-html .card-slot.is-active {
    transform: translateY(-8px) scale(1.02);
  }
  #pagos.pay-literal .pay-html .grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }
  #pagos.pay-literal .pay-html .info-note {
    flex-direction: column;
  }
}
@media (prefers-reduced-motion: reduce) {
  #pagos.pay-literal .pay-html .reveal,
  #pagos.pay-literal .pay-html .card,
  #pagos.pay-literal .pay-html .card-slot {
    animation: none !important;
    transition: none !important;
  }
}

/* ==============================================================
   HERO SPLINE ABANICO (visible animated background)
   ============================================================== */
.hero.hero-clean.hero-animated.hero-abanico {
  min-height: 100svh;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(180deg, #0a1628 0%, #0e1f3a 60%, #0a1628 100%);
}
.hero.hero-clean.hero-animated.hero-abanico .hero-bg-spline {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero.hero-clean.hero-animated.hero-abanico .hero-bg-spline spline-viewer {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  display: block;
  pointer-events: none !important;
}
.hero.hero-clean.hero-animated.hero-abanico .hero-bg-tint {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: multiply;
  background:
    radial-gradient(70% 60% at 20% 100%, rgba(10,22,40,.55), transparent 65%),
    radial-gradient(80% 70% at 80% 0%, rgba(10,22,40,.45), transparent 60%),
    linear-gradient(180deg, rgba(10,22,40,.35) 0%, rgba(10,22,40,.15) 40%, rgba(10,22,40,.55) 100%);
}
.hero.hero-clean.hero-animated.hero-abanico .hero-pattern {
  display: none !important;
}
.hero.hero-clean.hero-animated.hero-abanico .hero-waves {
  z-index: 2;
  mix-blend-mode: screen;
  opacity: .55;
}
.hero.hero-clean.hero-animated.hero-abanico .hero-waves span:nth-child(1) {
  background: conic-gradient(from 0deg, transparent 0 60%, rgba(196,149,106,.22) 70%, rgba(201,168,76,.35) 80%, rgba(196,149,106,.22) 90%, transparent 100%);
}
.hero.hero-clean.hero-animated.hero-abanico .hero-waves span:nth-child(2) {
  background: conic-gradient(from 180deg, transparent 0 55%, rgba(255,175,90,.18) 72%, rgba(255,220,140,.28) 82%, rgba(255,175,90,.18) 92%, transparent 100%);
}
.hero.hero-clean.hero-animated.hero-abanico .hero-waves span:nth-child(3) {
  background: radial-gradient(circle at 50% 50%, rgba(255,190,100,.16), transparent 55%);
}
.hero.hero-clean.hero-animated.hero-abanico::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    repeating-linear-gradient(115deg, transparent 0 40px, rgba(255,255,255,.015) 40px 41px),
    radial-gradient(120% 80% at 50% -20%, rgba(196,149,106,.12), transparent 60%);
}
.hero.hero-clean.hero-animated.hero-abanico .hero-grid {
  position: relative;
  z-index: 6;
}

@media (prefers-reduced-motion: reduce) {
  .hero.hero-clean.hero-animated.hero-abanico .hero-waves span,
  .hero.hero-clean.hero-animated.hero-abanico .hero-bg-aurora span {
    animation: none !important;
  }
}

/* ==============================================================
   ULTRA HOTFIX 2026-04-20 — CARGA + HERO + CHATBOT + PAGOS PRO
   ============================================================== */
body.has-ai-robot #chatWidget,
body.has-ai-robot #waFloat {
  display: none !important;
}

.hero-pattern {
  display: none !important;
}

.hero.hero-clean.hero-animated {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 100vh;
  background:
    radial-gradient(120% 80% at 12% 8%, rgba(0, 196, 255, .26), transparent 58%),
    radial-gradient(90% 70% at 86% 12%, rgba(137, 88, 255, .24), transparent 60%),
    linear-gradient(140deg, #020811 0%, #071b31 45%, #0a2c48 100%);
}
.hero.hero-clean.hero-animated::before {
  content: "";
  position: absolute;
  inset: -8% -10%;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(66% 48% at 22% 32%, rgba(0, 219, 255, .32), transparent 74%),
    radial-gradient(58% 42% at 78% 24%, rgba(160, 102, 255, .26), transparent 76%),
    radial-gradient(72% 56% at 52% 86%, rgba(0, 255, 191, .24), transparent 74%);
  filter: blur(10px) saturate(120%);
  animation: aicHeroNebula 14s ease-in-out infinite alternate;
}
.hero.hero-clean.hero-animated::after {
  content: "";
  position: absolute;
  inset: -24% -16%;
  z-index: 2;
  pointer-events: none;
  opacity: .7;
  background:
    conic-gradient(from 0deg at 50% 50%, rgba(0, 255, 222, .0) 0 42%, rgba(0, 255, 222, .12) 48%, rgba(0, 255, 222, .0) 56%),
    conic-gradient(from 210deg at 50% 50%, rgba(116, 130, 255, .0) 0 38%, rgba(116, 130, 255, .14) 48%, rgba(116, 130, 255, .0) 58%);
  mix-blend-mode: screen;
  animation: aicHeroSweep 24s linear infinite;
}
.hero.hero-clean.hero-animated .hero-grid {
  position: relative;
  z-index: 7;
}
.hero.hero-clean.hero-animated .hero-copy,
.hero.hero-clean.hero-animated .hero-visual,
.hero.hero-clean.hero-animated .reveal-left,
.hero.hero-clean.hero-animated .reveal-right,
.hero.hero-clean.hero-animated .reveal-stagger > * {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}
.hero.hero-clean.hero-animated .hero-waves,
.hero.hero-clean.hero-animated .hero-bg-aurora {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}
.hero.hero-clean.hero-animated .hero-waves span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 130vmax;
  height: 130vmax;
  margin-left: -65vmax;
  margin-top: -65vmax;
  border-radius: 45% 55% 52% 48% / 53% 47% 56% 44%;
  filter: blur(30px);
  mix-blend-mode: screen;
  animation: aicHeroWaveSpin 21s linear infinite;
}
.hero.hero-clean.hero-animated .hero-waves span:nth-child(1) {
  background: conic-gradient(from 0deg, transparent 0 58%, rgba(0, 229, 255, .31) 72%, rgba(0, 229, 255, .05) 90%, transparent 100%);
}
.hero.hero-clean.hero-animated .hero-waves span:nth-child(2) {
  width: 108vmax;
  height: 108vmax;
  margin-left: -54vmax;
  margin-top: -54vmax;
  background: conic-gradient(from 180deg, transparent 0 58%, rgba(145, 95, 255, .28) 74%, rgba(145, 95, 255, .05) 90%, transparent 100%);
  animation-duration: 28s;
  animation-direction: reverse;
}
.hero.hero-clean.hero-animated .hero-waves span:nth-child(3) {
  background: radial-gradient(circle at 50% 50%, rgba(0, 255, 189, .28), transparent 62%);
  filter: blur(52px);
  animation: aicHeroPulse 8s ease-in-out infinite;
}
.hero.hero-clean.hero-animated .hero-bg-aurora span {
  position: absolute;
  border-radius: 50%;
  filter: blur(36px);
  mix-blend-mode: screen;
  opacity: .6;
  animation: aicHeroAurora 14s ease-in-out infinite alternate;
}
.hero.hero-clean.hero-animated .hero-bg-aurora span:nth-child(1) {
  width: 52vmax;
  height: 52vmax;
  left: -9%;
  top: -16%;
  background: radial-gradient(circle at 44% 42%, rgba(0, 223, 255, .55) 0%, rgba(0, 223, 255, 0) 72%);
}
.hero.hero-clean.hero-animated .hero-bg-aurora span:nth-child(2) {
  width: 40vmax;
  height: 40vmax;
  right: -8%;
  top: 4%;
  background: radial-gradient(circle at 50% 42%, rgba(183, 111, 255, .44) 0%, rgba(183, 111, 255, 0) 74%);
  animation-duration: 18s;
}
.hero.hero-clean.hero-animated .hero-bg-aurora span:nth-child(3) {
  width: 58vmax;
  height: 58vmax;
  left: 18%;
  bottom: -34%;
  background: radial-gradient(circle at 50% 50%, rgba(0, 255, 197, .38) 0%, rgba(0, 255, 197, 0) 72%);
  animation-duration: 22s;
}

@keyframes aicHeroNebula {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(2.5%, -1.8%, 0) scale(1.08); }
  100% { transform: translate3d(-2%, 2.5%, 0) scale(.95); }
}
@keyframes aicHeroSweep {
  to { transform: rotate(360deg); }
}
@keyframes aicHeroWaveSpin {
  to { transform: rotate(360deg); }
}
@keyframes aicHeroPulse {
  0%,100% { transform: scale(1); opacity: .68; }
  50% { transform: scale(1.18); opacity: 1; }
}
@keyframes aicHeroAurora {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(3.2%, -2.5%, 0) scale(1.1); }
}

#pagos.section.section-cream {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(80% 52% at 14% 10%, rgba(0, 203, 255, .1), transparent 60%),
    radial-gradient(74% 56% at 85% 12%, rgba(139, 92, 255, .1), transparent 64%),
    linear-gradient(180deg, #030b17 0%, #061326 36%, #050f1f 100%);
}
#pagos.section.section-cream .section-tag {
  border-color: rgba(125, 215, 255, .3);
  background: rgba(23, 46, 71, .42);
  color: #cbebff;
}
#pagos.section.section-cream .section-title {
  color: #f4fbff;
}
#pagos.section.section-cream .section-title em {
  color: #3fd8d6;
}
#pagos.section.section-cream .section-sub {
  color: rgba(220, 237, 255, .78);
}
#pagos.section.section-cream::before,
#pagos.section.section-cream::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(36px);
}
#pagos.section.section-cream::before {
  width: 52vw;
  height: 52vw;
  min-width: 340px;
  min-height: 340px;
  left: -14vw;
  top: -14vw;
  background: radial-gradient(circle, rgba(0, 206, 255, .16), transparent 72%);
  animation: aicPagoGlowA 13s ease-in-out infinite alternate;
}
#pagos.section.section-cream::after {
  width: 44vw;
  height: 44vw;
  min-width: 280px;
  min-height: 280px;
  right: -12vw;
  top: -10vw;
  background: radial-gradient(circle, rgba(151, 108, 255, .16), transparent 72%);
  animation: aicPagoGlowB 15s ease-in-out infinite alternate;
}

.pay-showcase {
  margin: 2.4rem auto 0;
  width: min(1160px, 100%);
  display: grid;
  gap: 1rem;
}
.pay-showcase-stage {
  position: relative;
  min-height: 430px;
  border-radius: 2.2rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 14%, rgba(0, 224, 255, .13), transparent 42%),
    radial-gradient(circle at 86% 10%, rgba(114, 127, 255, .16), transparent 46%),
    linear-gradient(145deg, #010810 0%, #051225 44%, #020a18 100%);
  border: 1px solid rgba(81, 147, 198, .4);
  box-shadow: 0 28px 60px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.08);
}
.pay-showcase-stage::before {
  content: "";
  position: absolute;
  inset: -60% -10%;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 35%, rgba(170, 243, 255, .12) 50%, transparent 65%);
  transform: translateX(-60%);
  animation: aicPagoSweep 6.8s ease-in-out infinite;
}
.pay-showcase-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to top, rgba(0,0,0,.24), transparent 38%),
    radial-gradient(120% 80% at 50% 120%, rgba(0, 0, 0, .4), transparent 60%);
}

.pay-fan {
  position: absolute;
  left: 50%;
  bottom: 24px;
  width: 900px;
  height: 338px;
  transform: translateX(-50%);
  transform-origin: 50% 98%;
  transform-style: preserve-3d;
  perspective: 1200px;
  animation: aicFanSway 8s ease-in-out infinite;
}
.pay-card {
  --x: 0px;
  --r: 0deg;
  position: absolute;
  left: 50%;
  bottom: 8px;
  width: clamp(196px, 20vw, 275px);
  aspect-ratio: 1.58 / 1;
  border-radius: 22px;
  border: 1px solid rgba(102, 227, 255, .26);
  background:
    linear-gradient(122deg, rgba(19,31,50,.98) 0%, rgba(44,59,83,.95) 48%, rgba(22,35,56,.96) 100%);
  box-shadow: 0 24px 44px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.09), inset 0 -18px 24px rgba(0,0,0,.18);
  transform: translateX(calc(-50% + var(--x))) rotate(var(--r)) rotateX(3deg);
  transform-style: preserve-3d;
  overflow: hidden;
  animation: aicCardFloat 6.2s ease-in-out infinite;
}
.pay-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(116deg, transparent 22%, rgba(255,255,255,.16) 49%, transparent 76%);
  opacity: .4;
}
.pay-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(100% 80% at 24% 0%, rgba(255,255,255,.16), transparent 55%),
    linear-gradient(180deg, transparent 60%, rgba(5, 18, 30, .24) 100%);
  mix-blend-mode: screen;
  pointer-events: none;
}
.pay-card-title {
  position: absolute;
  left: 14px;
  top: 12px;
  color: rgba(228,239,251,.86);
  font-size: .64rem;
  letter-spacing: .13em;
  font-weight: 700;
}
.pay-card-chip {
  position: absolute;
  left: 14px;
  bottom: 12px;
  width: 30px;
  height: 21px;
  border-radius: 6px;
  background: linear-gradient(145deg, #f4d996, #b8894f);
  box-shadow: inset 0 1px 2px rgba(255,255,255,.45), 0 2px 8px rgba(0,0,0,.3);
}
.pay-card-digits {
  position: absolute;
  left: 52px;
  bottom: 14px;
  color: rgba(226,237,249,.76);
  letter-spacing: .14em;
  font-size: .72rem;
}
.pay-card img {
  position: absolute;
  right: 12px;
  top: 10px;
  width: clamp(62px, 34%, 96px);
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(0,0,0,.08);
  padding: 4px 8px;
}
.pay-card--visa {
  border-color: rgba(112, 176, 255, .32);
}
.pay-card--master {
  border-color: rgba(104, 240, 255, .32);
}
.pay-card--mp {
  border-color: rgba(91, 191, 255, .34);
}
.pay-card--nu {
  border-color: rgba(199, 129, 255, .35);
}
.pay-card--revo {
  border-color: rgba(155, 187, 255, .33);
}
.pay-card.card-1 { --x: -316px; --r: -50deg; z-index: 1; animation-delay: .06s; }
.pay-card.card-2 { --x: -258px; --r: -40deg; z-index: 2; animation-delay: .12s; }
.pay-card.card-3 { --x: -196px; --r: -30deg; z-index: 3; animation-delay: .18s; }
.pay-card.card-4 { --x: -132px; --r: -20deg; z-index: 4; animation-delay: .24s; }
.pay-card.card-5 { --x: -68px; --r: -10deg; z-index: 5; animation-delay: .3s; }
.pay-card.card-6 { --x: 0px; --r: 0deg; z-index: 6; animation-delay: .36s; }
.pay-card.card-7 { --x: 66px; --r: 10deg; z-index: 7; animation-delay: .42s; }
.pay-card.card-8 { --x: 134px; --r: 21deg; z-index: 8; animation-delay: .48s; }

.pay-pedestal {
  position: relative;
  margin: -10px auto 0;
  width: min(846px, 94%);
  height: 212px;
}
.pay-pedestal-top {
  position: absolute;
  inset: 0 0 auto;
  height: 48px;
  border-radius: 48px;
  background: linear-gradient(180deg, #e6c9a1, #b98f5f);
  box-shadow: inset 0 2px 8px rgba(255,255,255,.35), 0 16px 26px rgba(0,0,0,.26);
}
.pay-pedestal-body {
  position: absolute;
  inset: 34px 0 0;
  border-radius: 0 0 42px 42px;
  background: linear-gradient(180deg, #aab4bc, #7f8b96);
  border: 1px solid rgba(117, 126, 136, .6);
}
.pay-stack {
  position: absolute;
  left: 50%;
  top: -58px;
  transform: translateX(-50%);
  width: 366px;
  height: 168px;
}
.pay-stack-card {
  position: absolute;
  width: 182px;
  aspect-ratio: 1.58 / 1;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.52);
  box-shadow: 0 20px 34px rgba(0,0,0,.25);
  overflow: hidden;
}
.pay-stack-card img {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 74px;
  height: auto;
}
.stack-1 {
  left: 26px;
  top: 0;
  z-index: 4;
  transform: rotate(-6deg);
  background: linear-gradient(130deg, #f1f4f6, #c8ced4);
}
.stack-2 {
  left: 116px;
  top: 12px;
  z-index: 3;
  transform: rotate(2deg);
  background: linear-gradient(130deg, #cfa097, #a56f67);
}
.stack-3 {
  left: 202px;
  top: 20px;
  z-index: 2;
  transform: rotate(7deg);
  background: linear-gradient(130deg, #a18dbb, #7a629d);
}

@keyframes aicPagoGlowA {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(6%, -5%, 0) scale(1.08); }
}
@keyframes aicPagoGlowB {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(-6%, 6%, 0) scale(1.1); }
}
@keyframes aicPagoSweep {
  0% { transform: translateX(-60%) rotate(0deg); opacity: .2; }
  35% { opacity: .58; }
  100% { transform: translateX(62%) rotate(0deg); opacity: .12; }
}
@keyframes aicFanSway {
  0%,100% { transform: translateX(-50%) rotate(-1.1deg); }
  50% { transform: translateX(-50%) rotate(1.2deg); }
}
@keyframes aicCardFloat {
  0%,100% { transform: translateX(calc(-50% + var(--x))) translateY(0) rotate(var(--r)) rotateX(3deg); }
  50% { transform: translateX(calc(-50% + var(--x))) translateY(-9px) rotate(calc(var(--r) + .9deg)) rotateX(5deg); }
}

.ai-assistant {
  position: fixed;
  right: 16px;
  bottom: 14px;
  z-index: 11000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .65rem;
}
.ai-assistant-fab {
  position: relative;
  width: clamp(124px, 11vw, 174px);
  aspect-ratio: 1 / 1.2;
  border-radius: 23px;
  border: 1px solid rgba(133, 217, 255, .3);
  background: linear-gradient(180deg, rgba(5,18,35,.52), rgba(7,20,38,.2));
  box-shadow: 0 24px 54px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.18);
  overflow: hidden;
  cursor: pointer;
  transition: transform .24s ease, box-shadow .24s ease;
  animation: aicRobotFloat 4.4s ease-in-out infinite;
}
.ai-assistant-fab::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  border: 1px solid rgba(154, 236, 255, .25);
  pointer-events: none;
}
.ai-assistant-fab::after {
  content: "";
  position: absolute;
  inset: -35% -20%;
  background: radial-gradient(circle at 50% 44%, rgba(0, 247, 255, .18), transparent 62%);
  pointer-events: none;
}
.ai-assistant-fab:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 28px 62px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.2);
}
.ai-assistant.open .ai-assistant-fab {
  transform: scale(.95);
}
.ai-assistant-viewer,
.ai-assistant-fab spline-viewer {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  display: block;
  background: transparent;
  pointer-events: none !important;
}
.ai-assistant-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 9px 8px 8px;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,.36));
  transition: opacity .3s ease;
}
.ai-assistant.viewer-ready .ai-assistant-fallback {
  opacity: 0;
}
.ai-assistant-label {
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(255,255,255,.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #ebf9ff;
  font-size: .62rem;
  letter-spacing: .08em;
  font-weight: 700;
}
.ai-assistant-panel {
  width: min(366px, calc(100vw - 20px));
  border-radius: 1.2rem;
  border: 1px solid rgba(123, 210, 255, .25);
  background: linear-gradient(180deg, rgba(6,18,38,.96), rgba(8,25,46,.95));
  box-shadow: 0 24px 54px rgba(0,0,0,.44);
  display: none;
  flex-direction: column;
  overflow: hidden;
}
.ai-assistant.open .ai-assistant-panel {
  display: flex;
  animation: aicChatIn .22s ease-out;
}
@keyframes aicChatIn {
  from { opacity: 0; transform: translateY(12px) scale(.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.ai-assistant-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .72rem .82rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: #eaf8ff;
}
.ai-assistant-head strong {
  display: block;
  font-size: .92rem;
}
.ai-assistant-head span {
  display: block;
  font-size: .69rem;
  color: rgba(234,248,255,.74);
  letter-spacing: .03em;
}
.ai-assistant-close {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.86);
  cursor: pointer;
}
.ai-assistant-messages {
  padding: .82rem;
  max-height: 244px;
  overflow: auto;
  display: grid;
  gap: .55rem;
}
.ai-assistant-msg {
  padding: .56rem .72rem;
  border-radius: .84rem;
  font-size: .79rem;
  line-height: 1.42;
}
.ai-assistant-msg.bot {
  background: rgba(255,255,255,.12);
  color: rgba(240,249,255,.94);
  justify-self: start;
  border-bottom-left-radius: .3rem;
}
.ai-assistant-msg.user {
  background: linear-gradient(135deg, #0e8a92, #3bb7c7);
  color: #fff;
  justify-self: end;
  border-bottom-right-radius: .3rem;
}
.ai-assistant-quick {
  padding: 0 .75rem .66rem;
  display: grid;
  gap: .46rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.ai-assistant-quick button {
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  color: rgba(237,248,255,.92);
  border-radius: .72rem;
  padding: .47rem .52rem;
  font-size: .7rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease;
}
.ai-assistant-quick button:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,.13);
}
.ai-assistant-quick button[data-action="wa"] {
  grid-column: 1 / -1;
  background: #25d366;
  color: #052b15;
  border-color: rgba(255,255,255,.2);
  font-weight: 700;
}
.ai-assistant-input {
  padding: 0 .75rem .72rem;
  display: flex;
  gap: .45rem;
}
.ai-assistant-input input {
  flex: 1;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: .72rem;
  background: rgba(255,255,255,.08);
  color: #eff8ff;
  padding: .54rem .64rem;
  font-size: .78rem;
}
.ai-assistant-input button {
  width: 34px;
  border: 0;
  border-radius: .72rem;
  background: linear-gradient(135deg, #0e8a92, #3bb7c7);
  color: #fff;
  cursor: pointer;
}
.ai-assistant-wa {
  margin: 0 .75rem .84rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .44rem;
  border-radius: .76rem;
  padding: .56rem .72rem;
  background: #25d366;
  color: #072b16;
  font-weight: 700;
  font-size: .79rem;
  text-decoration: none;
}

@keyframes aicRobotFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@media (max-width: 980px) {
  .pay-showcase-stage {
    min-height: 360px;
  }
  .pay-fan {
    width: 710px;
    height: 286px;
  }
  .pay-card.card-1 { --x: -232px; --r: -48deg; }
  .pay-card.card-2 { --x: -190px; --r: -38deg; }
  .pay-card.card-3 { --x: -148px; --r: -28deg; }
  .pay-card.card-4 { --x: -104px; --r: -18deg; }
  .pay-card.card-5 { --x: -60px; --r: -9deg; }
  .pay-card.card-6 { --x: -12px; --r: 0deg; }
  .pay-card.card-7 { --x: 36px; --r: 9deg; }
  .pay-card.card-8 { --x: 86px; --r: 18deg; }
}
@media (max-width: 740px) {
  .hero.hero-clean.hero-animated {
    padding-bottom: 120px;
  }
  .ai-assistant {
    right: 10px;
    bottom: 10px;
  }
  .ai-assistant-fab {
    width: 106px;
  }
  .ai-assistant-panel {
    width: min(324px, calc(100vw - 14px));
  }
  .pay-showcase {
    gap: .75rem;
  }
  .pay-showcase-stage {
    min-height: 268px;
    border-radius: 1.45rem;
  }
  .pay-fan {
    width: 440px;
    height: 190px;
    bottom: 6px;
  }
  .pay-card {
    width: 126px;
    border-radius: 12px;
  }
  .pay-card-title,
  .pay-card-digits {
    display: none;
  }
  .pay-card-chip {
    width: 20px;
    height: 14px;
    left: 8px;
    bottom: 8px;
  }
  .pay-card.card-1 { --x: -132px; --r: -44deg; }
  .pay-card.card-2 { --x: -108px; --r: -34deg; }
  .pay-card.card-3 { --x: -84px; --r: -25deg; }
  .pay-card.card-4 { --x: -60px; --r: -16deg; }
  .pay-card.card-5 { --x: -36px; --r: -8deg; }
  .pay-card.card-6 { --x: -10px; --r: 0deg; }
  .pay-card.card-7 { --x: 16px; --r: 8deg; }
  .pay-card.card-8 { --x: 42px; --r: 16deg; }
  .pay-pedestal {
    height: 164px;
  }
  .pay-pedestal-top {
    height: 34px;
    border-radius: 28px;
  }
  .pay-pedestal-body {
    inset: 22px 0 0;
    border-radius: 0 0 24px 24px;
  }
  .pay-stack {
    width: 240px;
    top: -36px;
  }
  .pay-stack-card {
    width: 112px;
    border-radius: 10px;
  }
  .stack-1 { left: 10px; }
  .stack-2 { left: 66px; top: 8px; }
  .stack-3 { left: 120px; top: 14px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero.hero-clean.hero-animated::before,
  .hero.hero-clean.hero-animated::after,
  .hero.hero-clean.hero-animated .hero-waves span,
  .hero.hero-clean.hero-animated .hero-bg-aurora span,
  #pagos.section.section-cream::before,
  #pagos.section.section-cream::after,
  .pay-showcase-stage::before,
  .pay-fan,
  .pay-card,
  .ai-assistant-fab {
    animation: none !important;
  }
}

/* PERF FINAL APPEND 2026-04-20 */
.hero.hero-clean.hero-animated.hero-abanico {
  min-height: 100svh !important;
  contain: layout paint !important;
}
.hero.hero-clean.hero-animated.hero-abanico::before {
  content: none !important;
  animation: none !important;
}
.hero.hero-clean.hero-animated.hero-abanico::after {
  inset: 0 !important;
  opacity: .24 !important;
  background: radial-gradient(120% 80% at 50% -20%, rgba(196,149,106,.1), transparent 60%) !important;
  animation: none !important;
}
.hero.hero-clean.hero-animated.hero-abanico .hero-bg-spline {
  z-index: 0 !important;
  contain: layout paint style !important;
  transform: translateZ(0) !important;
}
.hero.hero-clean.hero-animated.hero-abanico .hero-bg-spline spline-viewer {
  transform: translateZ(0) !important;
  will-change: transform, opacity !important;
}
.hero.hero-clean.hero-animated.hero-abanico .hero-bg-tint {
  mix-blend-mode: normal !important;
  opacity: .68 !important;
}
.hero.hero-clean.hero-animated.hero-abanico .hero-bg-aurora {
  display: none !important;
}
.hero.hero-clean.hero-animated.hero-abanico .hero-waves {
  mix-blend-mode: normal !important;
  opacity: .28 !important;
}
.hero.hero-clean.hero-animated.hero-abanico .hero-waves span {
  width: 96vmax !important;
  height: 96vmax !important;
  margin-left: -48vmax !important;
  margin-top: -48vmax !important;
  filter: blur(12px) !important;
  animation: heroWaveSpinLite 60s linear infinite !important;
}
.hero.hero-clean.hero-animated.hero-abanico .hero-waves span:nth-child(2) {
  width: 82vmax !important;
  height: 82vmax !important;
  margin-left: -41vmax !important;
  margin-top: -41vmax !important;
  animation-duration: 78s !important;
}
.hero.hero-clean.hero-animated.hero-abanico .hero-waves span:nth-child(3) {
  display: none !important;
}
.hero.hero-clean.hero-animated.hero-abanico.hero-spline-paused .hero-bg-spline spline-viewer {
  opacity: .001 !important;
}
@media (max-width: 900px) {
  .hero.hero-clean.hero-animated.hero-abanico .hero-waves span:nth-child(2) {
    display: none !important;
  }
}

/* ==============================================================
   FLUID ROBOT WIDGET — 2026-04-19
   ============================================================== */

/* Entrada del widget desde abajo con fade suave */
.ai-assistant {
  opacity: 0;
  animation: aicWidgetIn .72s cubic-bezier(.22, 1, .36, 1) .55s forwards !important;
}
@keyframes aicWidgetIn {
  from { opacity: 0; transform: translateY(22px) scale(.95); }
  to   { opacity: 1; transform: translateY(0)   scale(1);   }
}

/* Transiciones del FAB más suaves */
.ai-assistant-fab {
  transition: transform .38s cubic-bezier(.22, 1, .36, 1),
              box-shadow .38s ease !important;
}

/* Fallback desaparece con fade largo y suave */
.ai-assistant-fallback {
  transition: opacity .8s cubic-bezier(.4, 0, .2, 1) !important;
}
.ai-assistant.viewer-ready .ai-assistant-fallback {
  opacity: 0 !important;
}

/* Label "Chat AI" se desvanece al cargar el 3D */
.ai-assistant-label {
  transition: opacity .6s ease, transform .6s ease !important;
  will-change: opacity, transform;
}
.ai-assistant.viewer-ready .ai-assistant-label {
  opacity: 0 !important;
  transform: translateX(-50%) translateY(6px) !important;
  pointer-events: none !important;
}

/* Panel de chat se abre con curva más natural */
@keyframes aicChatInFluid {
  from { opacity: 0; transform: translateY(18px) scale(.96); }
  to   { opacity: 1; transform: translateY(0)   scale(1);   }
}
.ai-assistant.open .ai-assistant-panel {
  animation: aicChatInFluid .32s cubic-bezier(.22, 1, .36, 1) !important;
}

/* Flotación del robot más suave y continua */
@keyframes aicRobotFloatFluid {
  0%   { transform: translateY(0px);  }
  50%  { transform: translateY(-7px); }
  100% { transform: translateY(0px);  }
}
.ai-assistant-fab {
  animation: aicRobotFloatFluid 5s ease-in-out infinite !important;
}
/* Pausa suave al hover */
.ai-assistant-fab:hover {
  animation-play-state: paused !important;
  transform: translateY(-6px) scale(1.02) !important;
  box-shadow: 0 32px 70px rgba(0,0,0,.52), inset 0 1px 0 rgba(255,255,255,.22) !important;
}
.ai-assistant.open .ai-assistant-fab {
  animation-play-state: paused !important;
  transform: scale(.94) !important;
}

/* ==============================================================
   PRELOADER + HERO ANTI-FLASH — 2026-04-19
   ============================================================== */

/* El robot NO aparece hasta que el DOM está listo (evita parpadeo) */
.ai-assistant {
  visibility: hidden;
}
.ai-assistant.aic-ready {
  visibility: visible;
}

/* Hero: fondo de color mientras Spline carga */
.hero-bg-spline {
  background: #07111f;
}

/* ==============================================================
   CSS ABANICO — reemplaza Spline del hero (2026-04-19)
   ============================================================== */

.hero-bg-css-abanico {
  background:
    radial-gradient(ellipse 90% 90% at 78% 55%,
      #1c0d04 0%,
      #100905 45%,
      #07060a 100%);
  overflow: hidden;
}

/* ── pétalos base ── */
.hap {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
  pointer-events: none;
  transform-origin: 50% 98%;
}

/* Pétalo 1 — rojo-oscuro, el más grande, fondo */
.hap-1 {
  width: 58vw;
  height: 128vh;
  background: linear-gradient(
    168deg,
    rgba(172, 52, 8, .92)  0%,
    rgba(130, 30, 4, .78) 45%,
    transparent            85%
  );
  border-radius: 52% 48% 24% 26% / 58% 58% 28% 28%;
  right: -4%;
  bottom: -28%;
  transform: rotate(-34deg);
  animation: hapSwayA 24s ease-in-out infinite;
}

/* Pétalo 2 — naranja-ámbar, delante */
.hap-2 {
  width: 48vw;
  height: 118vh;
  background: linear-gradient(
    162deg,
    rgba(210, 85, 12, .88)  0%,
    rgba(175, 58, 6, .68)  50%,
    transparent             84%
  );
  border-radius: 50% 50% 20% 20% / 54% 54% 24% 24%;
  right: 2%;
  bottom: -22%;
  transform: rotate(-14deg);
  animation: hapSwayB 28s ease-in-out infinite;
}

/* Pétalo 3 — ámbar dorado */
.hap-3 {
  width: 42vw;
  height: 108vh;
  background: linear-gradient(
    155deg,
    rgba(225, 118, 18, .82)  0%,
    rgba(190, 78, 10, .60)  55%,
    transparent              82%
  );
  border-radius: 48% 52% 22% 20% / 56% 56% 22% 22%;
  right: 8%;
  bottom: -18%;
  transform: rotate(6deg);
  animation: hapSwayA 20s ease-in-out infinite reverse;
}

/* Pétalo 4 — naranja claro, el más delantero */
.hap-4 {
  width: 35vw;
  height: 95vh;
  background: linear-gradient(
    148deg,
    rgba(235, 145, 28, .76)  0%,
    rgba(200, 95, 14, .52)  60%,
    transparent              82%
  );
  border-radius: 46% 54% 18% 22% / 54% 54% 20% 20%;
  right: 14%;
  bottom: -14%;
  transform: rotate(22deg);
  animation: hapSwayB 32s ease-in-out infinite reverse;
}

/* Pétalo 5 — muy delgado, contorno */
.hap-5 {
  width: 28vw;
  height: 82vh;
  background: linear-gradient(
    140deg,
    rgba(240, 165, 40, .55)  0%,
    rgba(210, 110, 18, .36) 65%,
    transparent              84%
  );
  border-radius: 44% 56% 16% 20% / 52% 52% 18% 18%;
  right: 20%;
  bottom: -10%;
  transform: rotate(38deg);
  animation: hapSwayA 36s ease-in-out infinite;
}

/* Brillo central ambiental */
.hap-glow {
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  background: radial-gradient(
    circle at 60% 50%,
    rgba(210, 80, 10, .28) 0%,
    transparent            65%
  );
  right: -5%;
  top: 10%;
  animation: hapGlow 14s ease-in-out infinite;
}

/* ── keyframes ── */
@keyframes hapSwayA {
  0%   { transform: rotate(var(--r, -34deg)) scaleX(1);    }
  40%  { transform: rotate(calc(var(--r, -34deg) + 3.5deg)) scaleX(1.015); }
  100% { transform: rotate(var(--r, -34deg)) scaleX(1);    }
}
@keyframes hapSwayB {
  0%   { transform: rotate(var(--r, -14deg)) scaleY(1);    }
  50%  { transform: rotate(calc(var(--r, -14deg) - 2.5deg)) scaleY(1.01);  }
  100% { transform: rotate(var(--r, -14deg)) scaleY(1);    }
}
@keyframes hapGlow {
  0%, 100% { opacity: .75; transform: scale(1);    }
  50%       { opacity: 1;   transform: scale(1.06); }
}

/* Asigna --r por pétalo para que la animación use el ángulo correcto */
.hap-1 { --r: -34deg; }
.hap-2 { --r: -14deg; }
.hap-3 { --r:   6deg; }
.hap-4 { --r:  22deg; }
.hap-5 { --r:  38deg; }

/* Responsivo — petales más pequeños en móvil */
@media (max-width: 768px) {
  .hap-1 { width: 90vw; right: -20%; }
  .hap-2 { width: 78vw; right: -10%; }
  .hap-3 { width: 68vw; right: -4%;  }
  .hap-4 { width: 55vw; }
  .hap-5 { display: none; }
  .hap-glow { width: 90vw; height: 90vw; }
}

/* Desactiva reglas de pausa del hero-spline que ya no aplican */
.hero.hero-clean.hero-animated.hero-abanico.hero-spline-paused .hero-bg-spline spline-viewer {
  opacity: 1 !important; /* ya no hay viewer de hero, sin efecto */
}

/* ==============================================================
   HERO REWORK FUERTE (visible + fluido) — 2026-04-20
   ============================================================== */

.hero.hero-clean.hero-animated.hero-abanico {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(120% 85% at 82% 62%, rgba(241, 125, 20, .24) 0%, rgba(19, 10, 8, .18) 44%, rgba(4, 8, 19, .96) 100%),
    linear-gradient(115deg, #050a14 0%, #081733 48%, #0a1030 100%) !important;
}

.hero.hero-clean.hero-animated.hero-abanico .hero-pattern {
  opacity: 0 !important;
  background: none !important;
}

.hero.hero-clean.hero-animated.hero-abanico .hero-bg-spline.hero-bg-css-abanico {
  position: absolute;
  inset: -3%;
  overflow: hidden;
  background:
    radial-gradient(90% 72% at 85% 58%, rgba(255, 150, 44, .22) 0%, transparent 63%),
    radial-gradient(76% 68% at 76% 46%, rgba(167, 67, 9, .42) 0%, rgba(12, 11, 18, .2) 58%, transparent 88%),
    linear-gradient(120deg, #040a17 0%, #081b36 46%, #091230 100%);
  transform-origin: 70% 60%;
  animation: heroFieldDrift 20s ease-in-out infinite alternate;
}

.hero.hero-clean.hero-animated.hero-abanico .hero-bg-spline.hero-bg-css-abanico::before,
.hero.hero-clean.hero-animated.hero-abanico .hero-bg-spline.hero-bg-css-abanico::after {
  content: "";
  position: absolute;
  inset: -28%;
  pointer-events: none;
}

.hero.hero-clean.hero-animated.hero-abanico .hero-bg-spline.hero-bg-css-abanico::before {
  background:
    conic-gradient(from 0deg at 74% 56%, transparent 0 58%, rgba(255, 172, 72, .24) 68%, rgba(190, 84, 18, .36) 79%, transparent 92%);
  filter: blur(16px) saturate(1.2);
  mix-blend-mode: screen;
  animation: heroConicSpin 26s linear infinite;
}

.hero.hero-clean.hero-animated.hero-abanico .hero-bg-spline.hero-bg-css-abanico::after {
  background:
    radial-gradient(68% 62% at 83% 55%, rgba(255, 146, 48, .3), transparent 66%),
    radial-gradient(50% 42% at 68% 46%, rgba(92, 157, 255, .22), transparent 70%);
  filter: blur(34px);
  animation: heroGlowPulse 9s ease-in-out infinite;
}

.hero.hero-clean.hero-animated.hero-abanico .hap {
  position: absolute;
  bottom: -31%;
  right: -8%;
  border-radius: 56% 44% 26% 18% / 62% 60% 24% 20%;
  transform-origin: 55% 96%;
  box-shadow:
    inset 0 0 0 1px rgba(255, 213, 145, .13),
    inset 0 0 120px rgba(255, 200, 124, .06),
    0 0 56px rgba(245, 120, 24, .15);
  will-change: transform, opacity;
  pointer-events: none;
}

.hero.hero-clean.hero-animated.hero-abanico .hap::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(102deg, rgba(255, 228, 177, .14), rgba(255, 228, 177, 0) 42%),
    linear-gradient(170deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, 0) 44%);
  mix-blend-mode: screen;
}

.hero.hero-clean.hero-animated.hero-abanico .hap-1 {
  --rot: -54deg;
  width: 70vw;
  height: 136vh;
  right: -17%;
  background: linear-gradient(170deg, rgba(182, 55, 11, .82) 0%, rgba(121, 33, 8, .72) 44%, rgba(14, 12, 20, 0) 88%);
  animation: heroPetalSwingA 12s ease-in-out infinite;
}

.hero.hero-clean.hero-animated.hero-abanico .hap-2 {
  --rot: -42deg;
  width: 64vw;
  height: 128vh;
  right: -11%;
  background: linear-gradient(167deg, rgba(208, 76, 14, .84) 0%, rgba(153, 41, 8, .72) 46%, rgba(16, 14, 22, 0) 87%);
  animation: heroPetalSwingB 10.5s ease-in-out infinite;
  animation-delay: -.8s;
}

.hero.hero-clean.hero-animated.hero-abanico .hap-3 {
  --rot: -29deg;
  width: 58vw;
  height: 120vh;
  right: -5%;
  background: linear-gradient(161deg, rgba(235, 103, 19, .84) 0%, rgba(171, 50, 10, .66) 48%, rgba(17, 15, 23, 0) 86%);
  animation: heroPetalSwingA 9.5s ease-in-out infinite;
  animation-delay: -1.9s;
}

.hero.hero-clean.hero-animated.hero-abanico .hap-4 {
  --rot: -15deg;
  width: 50vw;
  height: 108vh;
  right: 2%;
  background: linear-gradient(156deg, rgba(247, 127, 28, .78) 0%, rgba(196, 70, 12, .56) 52%, rgba(22, 16, 25, 0) 86%);
  animation: heroPetalSwingB 8.6s ease-in-out infinite;
  animation-delay: -2.8s;
}

.hero.hero-clean.hero-animated.hero-abanico .hap-5 {
  --rot: -2deg;
  width: 42vw;
  height: 98vh;
  right: 9%;
  background: linear-gradient(151deg, rgba(255, 151, 45, .7) 0%, rgba(215, 89, 16, .5) 56%, rgba(22, 16, 25, 0) 86%);
  animation: heroPetalSwingA 8s ease-in-out infinite;
  animation-delay: -3.6s;
}

.hero.hero-clean.hero-animated.hero-abanico .hap-6 {
  --rot: 12deg;
  width: 35vw;
  height: 88vh;
  right: 14%;
  background: linear-gradient(148deg, rgba(255, 176, 70, .62) 0%, rgba(225, 101, 22, .45) 58%, rgba(22, 16, 25, 0) 86%);
  animation: heroPetalSwingB 7.4s ease-in-out infinite;
  animation-delay: -4.3s;
}

.hero.hero-clean.hero-animated.hero-abanico .hap-7 {
  --rot: 24deg;
  width: 28vw;
  height: 74vh;
  right: 19%;
  background: linear-gradient(142deg, rgba(255, 196, 96, .56) 0%, rgba(235, 115, 30, .36) 60%, rgba(22, 16, 25, 0) 86%);
  animation: heroPetalSwingA 6.9s ease-in-out infinite;
  animation-delay: -5s;
}

.hero.hero-clean.hero-animated.hero-abanico .hap-glow {
  width: 62vw;
  height: 62vw;
  right: -8%;
  top: 4%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 64% 56%, rgba(255, 151, 52, .42) 0%, rgba(255, 151, 52, .08) 38%, transparent 72%);
  mix-blend-mode: screen;
  filter: blur(12px);
  animation: heroCorePulse 6.6s ease-in-out infinite;
}

.hero.hero-clean.hero-animated.hero-abanico .hero-light-band {
  position: absolute;
  top: -18%;
  left: -40%;
  width: 56%;
  height: 148%;
  pointer-events: none;
  mix-blend-mode: screen;
  border-radius: 44%;
  filter: blur(8px);
}

.hero.hero-clean.hero-animated.hero-abanico .hero-light-band-a {
  background: linear-gradient(102deg, rgba(255, 191, 101, 0) 6%, rgba(255, 191, 101, .24) 45%, rgba(255, 191, 101, 0) 84%);
  transform: rotate(11deg);
  animation: heroSweepA 7.4s cubic-bezier(.4, 0, .2, 1) infinite;
}

.hero.hero-clean.hero-animated.hero-abanico .hero-light-band-b {
  background: linear-gradient(100deg, rgba(132, 196, 255, 0) 8%, rgba(132, 196, 255, .2) 46%, rgba(132, 196, 255, 0) 82%);
  transform: rotate(17deg);
  animation: heroSweepB 9.6s cubic-bezier(.4, 0, .2, 1) infinite;
  animation-delay: -2.4s;
}

.hero.hero-clean.hero-animated.hero-abanico .hero-sparks {
  position: absolute;
  right: 16%;
  bottom: 6%;
  width: 26vw;
  min-width: 230px;
  height: 34vh;
  pointer-events: none;
}

.hero.hero-clean.hero-animated.hero-abanico .hero-sparks span {
  position: absolute;
  bottom: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 232, 177, .96), rgba(255, 187, 102, .5) 60%, rgba(255, 187, 102, 0));
  box-shadow: 0 0 14px rgba(255, 197, 112, .44);
  opacity: 0;
  animation: heroSparkRise 4.4s linear infinite;
}

.hero.hero-clean.hero-animated.hero-abanico .hero-sparks span:nth-child(1) { left: 4%;   animation-delay: -3.8s; }
.hero.hero-clean.hero-animated.hero-abanico .hero-sparks span:nth-child(2) { left: 22%;  animation-delay: -2.6s; }
.hero.hero-clean.hero-animated.hero-abanico .hero-sparks span:nth-child(3) { left: 38%;  animation-delay: -1.4s; }
.hero.hero-clean.hero-animated.hero-abanico .hero-sparks span:nth-child(4) { left: 56%;  animation-delay: -2.2s; }
.hero.hero-clean.hero-animated.hero-abanico .hero-sparks span:nth-child(5) { left: 72%;  animation-delay: -0.8s; }
.hero.hero-clean.hero-animated.hero-abanico .hero-sparks span:nth-child(6) { left: 88%;  animation-delay: -3.1s; }

.hero.hero-clean.hero-animated.hero-abanico .hero-bg-tint {
  background:
    radial-gradient(68% 64% at 12% 92%, rgba(5, 12, 28, .74), transparent 67%),
    linear-gradient(175deg, rgba(5, 12, 28, .22) 0%, rgba(5, 12, 28, .58) 78%);
  mix-blend-mode: normal;
}

.hero.hero-clean.hero-animated.hero-abanico .hero-waves {
  opacity: .78 !important;
}

.hero.hero-clean.hero-animated.hero-abanico .hero-waves span:nth-child(1) {
  background: conic-gradient(from 44deg, transparent 0 54%, rgba(255, 161, 56, .28) 67%, rgba(255, 204, 134, .38) 77%, rgba(255, 161, 56, .24) 86%, transparent 100%) !important;
  animation-duration: 14s !important;
}

.hero.hero-clean.hero-animated.hero-abanico .hero-waves span:nth-child(2) {
  background: conic-gradient(from 230deg, transparent 0 53%, rgba(103, 176, 255, .18) 66%, rgba(171, 220, 255, .27) 78%, rgba(103, 176, 255, .18) 89%, transparent 100%) !important;
  animation-duration: 18s !important;
}

.hero.hero-clean.hero-animated.hero-abanico .hero-waves span:nth-child(3) {
  background: radial-gradient(circle, rgba(255, 169, 73, .26) 0%, rgba(255, 169, 73, 0) 68%) !important;
  animation-duration: 8s !important;
}

.hero.hero-clean.hero-animated.hero-abanico .hero-bg-aurora {
  opacity: .72 !important;
}

.hero.hero-clean.hero-animated.hero-abanico .hero-bg-aurora span:nth-child(1) {
  background: radial-gradient(circle at 70% 40%, rgba(255, 147, 58, .3), rgba(255, 147, 58, 0) 70%) !important;
  animation-duration: 9.8s !important;
}

.hero.hero-clean.hero-animated.hero-abanico .hero-bg-aurora span:nth-child(2) {
  background: radial-gradient(circle at 20% 65%, rgba(101, 170, 255, .24), rgba(101, 170, 255, 0) 72%) !important;
  animation-duration: 12s !important;
}

.hero.hero-clean.hero-animated.hero-abanico .hero-bg-aurora span:nth-child(3) {
  background: radial-gradient(circle at 58% 52%, rgba(255, 199, 118, .18), rgba(255, 199, 118, 0) 75%) !important;
  animation-duration: 7.6s !important;
}

.hero.hero-clean.hero-animated.hero-abanico .hero-grid {
  position: relative;
  z-index: 5;
}

@keyframes heroFieldDrift {
  0% { transform: scale(1) translate3d(0, 0, 0) rotate(0deg); }
  100% { transform: scale(1.06) translate3d(-1.4%, -1.2%, 0) rotate(-1.6deg); }
}

@keyframes heroConicSpin {
  0% { transform: rotate(0deg) scale(1); opacity: .82; }
  50% { opacity: 1; }
  100% { transform: rotate(360deg) scale(1.05); opacity: .82; }
}

@keyframes heroGlowPulse {
  0%, 100% { transform: scale(1); opacity: .76; }
  50% { transform: scale(1.08); opacity: 1; }
}

@keyframes heroPetalSwingA {
  0%, 100% { transform: rotate(var(--rot)) translate3d(0, 0, 0) scale(1); }
  30% { transform: rotate(calc(var(--rot) + 3.4deg)) translate3d(-4px, -10px, 0) scale(1.015); }
  62% { transform: rotate(calc(var(--rot) - 2.7deg)) translate3d(2px, -16px, 0) scale(1.01); }
}

@keyframes heroPetalSwingB {
  0%, 100% { transform: rotate(var(--rot)) translate3d(0, 0, 0) scale(1); }
  42% { transform: rotate(calc(var(--rot) - 3.2deg)) translate3d(3px, -12px, 0) scale(1.01); }
  70% { transform: rotate(calc(var(--rot) + 2.5deg)) translate3d(-5px, -8px, 0) scale(1.018); }
}

@keyframes heroCorePulse {
  0%, 100% { transform: scale(1); opacity: .74; }
  50% { transform: scale(1.1); opacity: 1; }
}

@keyframes heroSweepA {
  0% { transform: translate3d(-70vw, 0, 0) rotate(11deg); opacity: 0; }
  8% { opacity: .55; }
  46% { opacity: .48; }
  65% { opacity: .12; }
  100% { transform: translate3d(128vw, 0, 0) rotate(11deg); opacity: 0; }
}

@keyframes heroSweepB {
  0% { transform: translate3d(-84vw, 0, 0) rotate(17deg); opacity: 0; }
  12% { opacity: .4; }
  48% { opacity: .35; }
  66% { opacity: .08; }
  100% { transform: translate3d(112vw, 0, 0) rotate(17deg); opacity: 0; }
}

@keyframes heroSparkRise {
  0% { transform: translate3d(0, 8px, 0) scale(.3); opacity: 0; }
  22% { opacity: .8; }
  60% { opacity: .42; }
  100% { transform: translate3d(0, -170px, 0) scale(1.15); opacity: 0; }
}

@media (max-width: 980px) {
  .hero.hero-clean.hero-animated.hero-abanico .hap-1 { width: 96vw; right: -28%; }
  .hero.hero-clean.hero-animated.hero-abanico .hap-2 { width: 86vw; right: -22%; }
  .hero.hero-clean.hero-animated.hero-abanico .hap-3 { width: 76vw; right: -14%; }
  .hero.hero-clean.hero-animated.hero-abanico .hap-4 { width: 66vw; right: -8%; }
  .hero.hero-clean.hero-animated.hero-abanico .hap-5 { width: 56vw; right: -2%; }
  .hero.hero-clean.hero-animated.hero-abanico .hap-6 { width: 46vw; right: 4%; }
  .hero.hero-clean.hero-animated.hero-abanico .hap-7 { width: 36vw; right: 10%; }
  .hero.hero-clean.hero-animated.hero-abanico .hero-sparks {
    right: 8%;
    width: 40vw;
    min-width: 180px;
  }
}

@media (max-width: 700px) {
  .hero.hero-clean.hero-animated.hero-abanico .hap-6,
  .hero.hero-clean.hero-animated.hero-abanico .hap-7 {
    display: none;
  }
  .hero.hero-clean.hero-animated.hero-abanico .hero-sparks {
    bottom: 14%;
    right: 4%;
    width: 48vw;
    min-width: 150px;
    height: 26vh;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero.hero-clean.hero-animated.hero-abanico .hero-bg-spline.hero-bg-css-abanico,
  .hero.hero-clean.hero-animated.hero-abanico .hero-bg-spline.hero-bg-css-abanico::before,
  .hero.hero-clean.hero-animated.hero-abanico .hero-bg-spline.hero-bg-css-abanico::after,
  .hero.hero-clean.hero-animated.hero-abanico .hap,
  .hero.hero-clean.hero-animated.hero-abanico .hap-glow,
  .hero.hero-clean.hero-animated.hero-abanico .hero-light-band,
  .hero.hero-clean.hero-animated.hero-abanico .hero-sparks span {
    animation: none !important;
  }
}

/* ==============================================================
   HERO INTEGRADO (fondo independiente, sin tarjetas) — 2026-04-20
   ============================================================== */

.hero.hero-clean.hero-animated.hero-abanico {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(180deg, #020814 0%, #071a33 48%, #0b2b4a 74%, #020814 100%) !important;
}

.hero.hero-clean.hero-animated.hero-abanico .hero-pattern,
.hero.hero-clean.hero-animated.hero-abanico .hero-waves,
.hero.hero-clean.hero-animated.hero-abanico .hero-bg-aurora {
  display: none !important;
}

.hero.hero-clean.hero-animated.hero-abanico .hero-bg-spline.hero-bg-css-ambient {
  position: absolute;
  inset: -2%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background: linear-gradient(180deg, #020814 0%, #071a33 48%, #0b2b4a 74%, #020814 100%);
}

.hero.hero-clean.hero-animated.hero-abanico .hero-aurora {
  position: absolute;
  inset: -24%;
  pointer-events: none;
  will-change: transform, opacity;
}

.hero.hero-clean.hero-animated.hero-abanico .hero-aurora.hero-aurora-a1 {
  background:
    radial-gradient(60% 44% at 20% 20%, rgba(56, 217, 216, .28), transparent 74%),
    radial-gradient(50% 38% at 82% 16%, rgba(126, 97, 255, .24), transparent 76%),
    radial-gradient(70% 52% at 62% 86%, rgba(240, 168, 78, .16), transparent 78%);
  animation: heroAmbientDriftA 14s ease-in-out infinite alternate;
}

.hero.hero-clean.hero-animated.hero-abanico .hero-aurora.hero-aurora-a2 {
  background:
    radial-gradient(58% 40% at 76% 62%, rgba(56, 217, 216, .16), transparent 74%),
    radial-gradient(44% 34% at 24% 70%, rgba(126, 97, 255, .14), transparent 76%);
  opacity: .72;
  animation: heroAmbientDriftB 18s ease-in-out infinite alternate;
}

.hero.hero-clean.hero-animated.hero-abanico .hero-ring {
  position: absolute;
  width: 120vmax;
  height: 120vmax;
  left: 50%;
  top: 50%;
  margin-left: -60vmax;
  margin-top: -60vmax;
  border-radius: 50%;
  pointer-events: none;
  opacity: .3;
  background: conic-gradient(from 0deg, transparent 0 55%, rgba(56, 217, 216, .3) 70%, rgba(126, 97, 255, .24) 84%, transparent 100%);
  will-change: transform;
  animation: heroAmbientSpin 34s linear infinite;
}

.hero.hero-clean.hero-animated.hero-abanico .hero-ring.hero-ring-r2 {
  width: 96vmax;
  height: 96vmax;
  margin-left: -48vmax;
  margin-top: -48vmax;
  opacity: .22;
  animation-duration: 48s;
  animation-direction: reverse;
}

.hero.hero-clean.hero-animated.hero-abanico .hero-beam {
  position: absolute;
  top: -16%;
  left: -45%;
  width: 48%;
  height: 138%;
  border-radius: 44%;
  pointer-events: none;
  background: linear-gradient(104deg, rgba(255, 255, 255, 0) 8%, rgba(160, 237, 255, .24) 46%, rgba(255, 255, 255, 0) 86%);
  opacity: 0;
  will-change: transform, opacity;
  animation: heroAmbientBeam 8.8s cubic-bezier(.4, 0, .2, 1) infinite;
}

.hero.hero-clean.hero-animated.hero-abanico .hero-beam.hero-beam-b2 {
  background: linear-gradient(104deg, rgba(255, 255, 255, 0) 10%, rgba(255, 201, 120, .16) 46%, rgba(255, 255, 255, 0) 86%);
  animation-delay: -3.4s;
  animation-duration: 11s;
}

.hero.hero-clean.hero-animated.hero-abanico .hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero.hero-clean.hero-animated.hero-abanico .hero-particles span {
  position: absolute;
  bottom: -20px;
  left: var(--x);
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 236, 184, .95), rgba(255, 188, 96, .45) 60%, rgba(255, 188, 96, 0));
  opacity: 0;
  will-change: transform, opacity;
  animation: heroAmbientRise var(--d) linear infinite;
  animation-delay: var(--delay);
}

.hero.hero-clean.hero-animated.hero-abanico .hero-bg-tint {
  background:
    radial-gradient(80% 60% at 50% 110%, rgba(2, 8, 20, .65), transparent 70%),
    linear-gradient(180deg, rgba(2, 8, 20, .18) 0%, rgba(2, 8, 20, .52) 100%);
  mix-blend-mode: normal;
}

.hero.hero-clean.hero-animated.hero-abanico .hero-grid {
  position: relative;
  z-index: 5;
}

@keyframes heroAmbientDriftA {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(2.8vw, -2.1vw, 0) scale(1.06); }
}

@keyframes heroAmbientDriftB {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(-2.2vw, 1.8vw, 0) scale(1.05); }
}

@keyframes heroAmbientSpin {
  to { transform: rotate(360deg); }
}

@keyframes heroAmbientBeam {
  0% { transform: translate3d(-84vw, 0, 0) rotate(14deg); opacity: 0; }
  10% { opacity: .38; }
  50% { opacity: .32; }
  74% { opacity: .08; }
  100% { transform: translate3d(124vw, 0, 0) rotate(14deg); opacity: 0; }
}

@keyframes heroAmbientRise {
  0% { transform: translate3d(0, 8px, 0) scale(.4); opacity: 0; }
  14% { opacity: .74; }
  54% { opacity: .38; }
  100% { transform: translate3d(0, -86vh, 0) scale(1.08); opacity: 0; }
}

@media (max-width: 760px) {
  .hero.hero-clean.hero-animated.hero-abanico .hero-ring.hero-ring-r2,
  .hero.hero-clean.hero-animated.hero-abanico .hero-beam.hero-beam-b2 {
    display: none;
  }

  .hero.hero-clean.hero-animated.hero-abanico .hero-ring {
    opacity: .2;
    animation-duration: 42s;
  }

  .hero.hero-clean.hero-animated.hero-abanico .hero-beam {
    animation-duration: 10.5s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero.hero-clean.hero-animated.hero-abanico .hero-aurora,
  .hero.hero-clean.hero-animated.hero-abanico .hero-ring,
  .hero.hero-clean.hero-animated.hero-abanico .hero-beam,
  .hero.hero-clean.hero-animated.hero-abanico .hero-particles span {
    animation: none !important;
  }
}

/* ==============================================================
   ROBOT BADGE — indicador de mensaje nuevo (2026-04-19)
   ============================================================== */
.ai-assistant-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #38c8e6;
  border: 2px solid #05101f;
  box-shadow: 0 0 8px rgba(56, 200, 230, .7);
  opacity: 0;
  transform: scale(0);
  transition: opacity .3s ease, transform .3s cubic-bezier(.34,1.56,.64,1);
  pointer-events: none;
  z-index: 2;
}
.ai-assistant-badge.aic-badge-on {
  opacity: 1;
  transform: scale(1);
}

/* ==============================================================
   EDITORIAL REFRESH 2026-04-26
   Imagen real, menos neon y robot propio sin dependencia visual externa.
   ============================================================== */
:root {
  --navy: #17252d;
  --navy2: #263b44;
  --copper: #b96f52;
  --gold: #0f9f9a;
  --cream: #f4f7f5;
  --light: #e8f0ee;
  --gray: #5c6970;
  --radius: .72rem;
  --shadow: 0 14px 42px rgba(26, 44, 52, .11);
  --shadow-lg: 0 26px 70px rgba(13, 25, 30, .24);
}

html {
  background: #f4f7f5;
}

body {
  --aic-x: 0px;
  --aic-y: 0px;
  background:
    radial-gradient(900px 520px at 12% 0%, rgba(15, 159, 154, .08), transparent 62%),
    radial-gradient(760px 460px at 92% 18%, rgba(185, 111, 82, .1), transparent 58%),
    linear-gradient(180deg, #f4f7f5 0%, #eef4f2 42%, #f7f8f4 100%);
  color: #17252d;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::selection {
  background: rgba(15, 159, 154, .22);
}

#navbar {
  height: 68px;
  background: rgba(11, 20, 23, .42);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 18px 46px rgba(6, 15, 19, .16);
}

#navbar.scrolled {
  background: rgba(250, 251, 248, .86);
  border-bottom-color: rgba(23, 37, 45, .1);
  box-shadow: 0 18px 42px rgba(23, 37, 45, .12);
}

#navbar.scrolled .nav-logo-text strong,
#navbar.scrolled .nav-links a {
  color: #17252d;
}

#navbar.scrolled .nav-logo-text span,
#navbar.scrolled .nav-links a.active {
  color: #0f8f8b;
}

#navbar.scrolled .nav-burger span {
  background: #17252d;
}

.nav-links a,
.nav-cta,
.btn,
.service-card,
.faq-item,
.review-card,
.blog-card,
.price-card,
.pricing-card,
.hero-dashboard,
.hero-shortcut,
.ai-assistant-panel {
  transition:
    transform .32s cubic-bezier(.22, 1, .36, 1),
    box-shadow .32s ease,
    background .32s ease,
    border-color .32s ease,
    color .32s ease;
}

.nav-links a {
  letter-spacing: 0;
}

.nav-cta {
  background: #f8fbf8 !important;
  color: #17252d !important;
  border: 1px solid rgba(255, 255, 255, .34);
  box-shadow: 0 10px 28px rgba(2, 8, 10, .16);
}

#navbar.scrolled .nav-cta {
  background: #17252d !important;
  color: #fff !important;
}

.hero.hero-clean.hero-animated.hero-abanico {
  min-height: 100svh !important;
  align-items: flex-end;
  padding: 132px 2rem 72px;
  background: #101a1f !important;
  text-align: left;
}

.hero.hero-clean.hero-animated.hero-abanico .hero-bg-spline.hero-bg-css-ambient {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 18, 22, .9) 0%, rgba(10, 18, 22, .73) 42%, rgba(10, 18, 22, .24) 74%),
    linear-gradient(180deg, rgba(10, 18, 22, .1), rgba(10, 18, 22, .78)),
    url('assets/img-hero.webp') center/cover no-repeat !important;
  transform: scale(1.035);
  animation: aicHeroPhotoDrift 24s ease-in-out infinite alternate;
}

.hero.hero-clean.hero-animated.hero-abanico .hero-bg-spline.hero-bg-css-ambient::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 52%, rgba(255, 255, 255, .1) 53%, transparent 61%),
    radial-gradient(620px 280px at 23% 72%, rgba(15, 159, 154, .2), transparent 70%),
    radial-gradient(520px 260px at 78% 24%, rgba(185, 111, 82, .22), transparent 70%);
  opacity: .82;
  pointer-events: none;
}

.hero.hero-clean.hero-animated.hero-abanico .hero-bg-spline.hero-bg-css-ambient::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .035) 0 1px, transparent 1px 92px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .025) 0 1px, transparent 1px 92px);
  opacity: .34;
  pointer-events: none;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0,0,0,.7) 55%, transparent 100%);
}

.hero.hero-clean.hero-animated.hero-abanico .hero-aurora,
.hero.hero-clean.hero-animated.hero-abanico .hero-ring,
.hero.hero-clean.hero-animated.hero-abanico .hero-beam,
.hero.hero-clean.hero-animated.hero-abanico .hero-particles {
  display: none !important;
}

.hero.hero-clean.hero-animated.hero-abanico .hero-bg-tint {
  opacity: .62 !important;
  background:
    radial-gradient(760px 380px at 32% 85%, rgba(15, 159, 154, .18), transparent 64%),
    linear-gradient(180deg, rgba(6, 12, 15, .02) 0%, rgba(6, 12, 15, .78) 100%) !important;
}

.hero.hero-clean.hero-animated.hero-abanico .hero-grid {
  width: min(1220px, calc(100vw - 4rem));
  max-width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(330px, .76fr);
  gap: clamp(2rem, 5vw, 5.8rem);
  align-items: end;
}

.hero.hero-clean.hero-animated .hero-copy {
  width: 100%;
  max-width: 740px;
  min-width: 0;
  padding-left: 1.15rem;
  border-left: 1px solid rgba(255, 255, 255, .28);
}

.hero-badge {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .82);
  border-radius: 999px;
  letter-spacing: .06em;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.hero-title.hero-title-clean {
  width: 100%;
  max-width: min(760px, calc(100vw - 4rem));
  font-family: 'Fraunces', 'Bodoni Moda', Georgia, serif;
  font-size: 4.55rem;
  line-height: .98;
  letter-spacing: 0;
  text-wrap: balance;
  overflow-wrap: break-word;
  color: #fff;
  margin-bottom: 1.3rem;
}

.hero-title.hero-title-clean em {
  color: #d7f5ef;
}

.hero-sub.hero-sub-clean {
  width: 100%;
  max-width: min(560px, calc(100vw - 4rem));
  color: rgba(244, 250, 249, .82);
  font-size: 1.08rem;
  line-height: 1.78;
  overflow-wrap: break-word;
}

.hero-btns.hero-btns-clean {
  justify-content: flex-start;
  margin-top: 2rem;
}

.btn {
  border-radius: 999px;
  letter-spacing: 0;
}

.btn-primary {
  background: #f7faf7 !important;
  color: #17252d !important;
  box-shadow: 0 16px 34px rgba(5, 14, 17, .24);
}

.btn-primary:hover {
  box-shadow: 0 22px 48px rgba(5, 14, 17, .32);
}

.btn-outline {
  border-color: rgba(255, 255, 255, .34);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .95rem;
  max-width: 720px;
  margin-top: 2.1rem;
}

.hero-kpi {
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, .2);
  border-radius: 0;
  padding: .86rem 0 0;
  box-shadow: none;
}

.hero-kpi strong {
  color: #fff;
  font-family: 'Fraunces', 'Bodoni Moda', Georgia, serif;
  font-size: 1.42rem;
  letter-spacing: 0;
}

.hero-kpi span {
  color: rgba(255, 255, 255, .68);
  font-size: .8rem;
}

.hero-dashboard {
  transform: translate3d(var(--aic-x), var(--aic-y), 0) rotate(-1.2deg);
  border-radius: 26px;
  background: rgba(247, 250, 247, .16);
  border: 1px solid rgba(255, 255, 255, .24);
  box-shadow: 0 32px 86px rgba(2, 8, 10, .36);
  backdrop-filter: blur(22px) saturate(130%);
  -webkit-backdrop-filter: blur(22px) saturate(130%);
}

.hero-dashboard:hover {
  transform: translate3d(var(--aic-x), calc(var(--aic-y) - 6px), 0) rotate(.4deg);
}

.hero-dashboard-bar {
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.hero-chip {
  background: rgba(255, 255, 255, .88);
  color: #17252d;
  border-radius: 999px;
  letter-spacing: 0;
}

.hero-chip.ghost {
  background: rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .78);
}

.hero-dashboard-media {
  border-radius: 20px;
}

.hero-dashboard-media img {
  filter: saturate(.92) contrast(1.04);
  transform: scale(1.01);
}

.hero-floating-card {
  border-radius: 14px;
  background: rgba(250, 251, 248, .9);
  border: 1px solid rgba(23, 37, 45, .08);
  box-shadow: 0 18px 40px rgba(5, 14, 17, .18);
}

.hero-floating-number {
  background: #17252d;
  color: #fff;
}

.hero-shortcuts {
  gap: .65rem;
}

.hero-shortcut {
  border-radius: 14px;
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .18);
}

.hero-shortcut:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, .24);
}

.section {
  position: relative;
}

.section-title,
.cta-banner-title,
.service-hero-copy h3,
.section-text h2,
.section-text h3 {
  font-family: 'Fraunces', 'Bodoni Moda', Georgia, serif;
  letter-spacing: 0;
  text-wrap: balance;
}

.section-tag {
  color: #a75f45;
  letter-spacing: .07em;
}

.section-cream,
.section-light {
  background:
    radial-gradient(700px 360px at 8% 0%, rgba(15, 159, 154, .08), transparent 66%),
    radial-gradient(620px 340px at 92% 18%, rgba(185, 111, 82, .08), transparent 62%),
    #f4f7f5;
}

.service-card,
.faq-item,
.review-card,
.blog-card,
.price-card,
.pricing-card,
.service-hero-card,
.about-media-card,
.aula-card,
.cta-banner {
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.service-card,
.faq-item,
.review-card,
.blog-card,
.price-card,
.pricing-card,
.service-hero-card {
  border: 1px solid rgba(23, 37, 45, .08);
  background: rgba(255, 255, 255, .78);
}

.service-card:hover,
.blog-card:hover,
.price-card:hover,
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 58px rgba(23, 37, 45, .16);
}

.section-dark {
  background:
    radial-gradient(700px 420px at 18% 4%, rgba(15, 159, 154, .12), transparent 62%),
    radial-gradient(680px 380px at 88% 18%, rgba(185, 111, 82, .13), transparent 64%),
    #121e24;
}

.section-dark .service-card,
.section-dark .faq-item,
.section-dark .review-card,
.section-dark .blog-card {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .12);
}

.ai-assistant {
  right: 20px;
  bottom: 18px;
}

.ai-assistant-fab {
  width: clamp(116px, 10vw, 158px);
  aspect-ratio: 1;
  overflow: visible;
  border: 0;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
  animation: aicRobotFloatFluid 5.4s ease-in-out infinite !important;
}

.ai-assistant-fab::before {
  inset: auto 10% -2% 10%;
  height: 20%;
  border: 0;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(15, 159, 154, .28), rgba(15, 159, 154, 0) 68%);
  filter: blur(7px);
}

.ai-assistant-fab::after {
  inset: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 250, 244, .28), transparent 62%);
  filter: blur(14px);
  opacity: .76;
}

.ai-assistant-fab:hover {
  transform: translateY(-8px) scale(1.04) !important;
  box-shadow: none !important;
}

.ai-assistant.open .ai-assistant-fab {
  transform: translateY(2px) scale(.96) !important;
}

.ai-assistant-fallback,
.ai-assistant.viewer-ready .ai-assistant-fallback {
  inset: -12%;
  width: 124%;
  height: 124%;
  object-fit: contain;
  padding: 0;
  opacity: 1 !important;
  filter:
    drop-shadow(0 16px 24px rgba(0, 0, 0, .28))
    drop-shadow(0 0 18px rgba(15, 159, 154, .18));
}

.ai-assistant-label,
.ai-assistant.viewer-ready .ai-assistant-label {
  bottom: -2px;
  opacity: 1 !important;
  transform: translateX(-50%) !important;
  background: rgba(250, 251, 248, .92);
  border-color: rgba(23, 37, 45, .12);
  color: #17252d;
  box-shadow: 0 10px 24px rgba(5, 14, 17, .16);
  letter-spacing: 0;
}

.ai-assistant-badge {
  top: 12px;
  right: 8px;
  background: #f0a15f;
  border-color: #fff;
  box-shadow: 0 0 0 5px rgba(240, 161, 95, .16), 0 8px 18px rgba(5, 14, 17, .18);
}

.ai-assistant-panel {
  width: min(340px, calc(100vw - 28px));
  border-radius: 18px;
  border-color: rgba(23, 37, 45, .12);
  background: rgba(250, 251, 248, .94);
  color: #17252d;
  box-shadow: 0 28px 76px rgba(5, 14, 17, .28);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
}

.ai-assistant-head {
  color: #17252d;
  border-bottom-color: rgba(23, 37, 45, .1);
}

.ai-assistant-head span {
  color: rgba(23, 37, 45, .62);
}

.ai-assistant-close {
  background: rgba(23, 37, 45, .06);
  border-color: rgba(23, 37, 45, .12);
  color: #17252d;
}

.ai-assistant-msg.bot {
  background: #edf3f1;
  color: #17252d;
}

.ai-assistant-msg.user {
  background: #17252d;
  color: #fff;
}

.ai-assistant-quick button,
.ai-assistant-input input {
  background: rgba(23, 37, 45, .055);
  border-color: rgba(23, 37, 45, .12);
  color: #17252d;
}

.ai-assistant-input button {
  background: #0f9f9a;
}

.ai-assistant-wa,
.ai-assistant-quick button[data-action="wa"] {
  background: #25d366;
  color: #062716;
}

@keyframes aicHeroPhotoDrift {
  0% { transform: scale(1.035) translate3d(0, 0, 0); }
  100% { transform: scale(1.075) translate3d(-1.2%, -.8%, 0); }
}

@media (max-width: 1120px) {
  .hero-title.hero-title-clean {
    font-size: 3.75rem;
  }

  .hero.hero-clean.hero-animated.hero-abanico .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }

  .hero-visual {
    width: min(560px, 100%);
  }
}

@media (max-width: 760px) {
  #navbar {
    padding: 0 1rem;
  }

  .hero.hero-clean.hero-animated.hero-abanico {
    padding: 108px 1.15rem 124px;
  }

  .hero.hero-clean.hero-animated.hero-abanico .hero-grid {
    width: min(100%, calc(100vw - 2.3rem));
  }

  .hero.hero-clean.hero-animated .hero-copy {
    max-width: 100%;
    padding-left: 0;
    border-left: 0;
    text-align: center;
  }

  .hero-title.hero-title-clean {
    max-width: min(100%, calc(100vw - 2.3rem));
    font-size: 2.42rem;
    line-height: 1.04;
    text-align: center;
  }

  .hero-sub.hero-sub-clean {
    max-width: min(520px, calc(100vw - 2.3rem));
    font-size: .98rem;
    text-align: center;
  }

  .hero-btns.hero-btns-clean {
    align-items: stretch;
    justify-content: center;
  }

  .hero-btns.hero-btns-clean .btn {
    width: min(100%, 330px);
    justify-content: center;
  }

  .hero-kpis {
    grid-template-columns: 1fr;
    gap: .65rem;
  }

  .hero-dashboard {
    width: 100%;
    transform: none;
    border-radius: 20px;
  }

  .hero-dashboard:hover {
    transform: translateY(-4px);
  }

  .ai-assistant {
    right: 12px;
    bottom: 12px;
  }

  .ai-assistant-fab {
    width: 104px;
  }

  .ai-assistant-panel {
    width: min(332px, calc(100vw - 18px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero.hero-clean.hero-animated.hero-abanico .hero-bg-spline.hero-bg-css-ambient,
  .ai-assistant-fab {
    animation: none !important;
  }

  .hero-dashboard {
    transform: none !important;
  }
}

/* ==============================================================
   PRECIOS + ROBOT GLOBAL REFRESH 2026-04-26
   ============================================================== */
#precios {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 8vw, 7rem) 0 !important;
  background:
    radial-gradient(760px 420px at 10% 0%, rgba(15, 159, 154, .1), transparent 66%),
    radial-gradient(720px 420px at 88% 8%, rgba(185, 111, 82, .11), transparent 62%),
    linear-gradient(180deg, #fbfcf8 0%, #eff5f2 100%);
}

#precios::before {
  content: "";
  position: absolute;
  inset: 26px 32px auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(23, 37, 45, .18), transparent);
}

#precios .container {
  position: relative;
  z-index: 1;
}

#precios .section-tag {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-bottom: .85rem;
  border: 1px solid rgba(15, 159, 154, .18);
  background: rgba(255, 255, 255, .72);
  color: #0f7673;
  box-shadow: 0 10px 26px rgba(23, 37, 45, .06);
}

#precios .section-tag::before {
  content: "";
  width: .48rem;
  height: .48rem;
  border-radius: 50%;
  background: #0f9f9a;
}

#precios .container > h2 {
  max-width: 820px;
  margin: 0 0 .9rem !important;
  font-family: 'Fraunces', 'Bodoni Moda', Georgia, serif !important;
  font-size: clamp(2.15rem, 4vw, 3.55rem) !important;
  line-height: 1.02 !important;
  letter-spacing: 0;
  color: #17252d !important;
  text-wrap: balance;
}

#precios .container > p:not(.precios-nota) {
  max-width: 680px !important;
  margin: 0 0 2.6rem !important;
  color: rgba(23, 37, 45, .68) !important;
  font-size: 1rem !important;
  line-height: 1.75 !important;
  text-align: left !important;
}

.precios-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 1rem !important;
  margin: 0 0 1.4rem !important;
}

.precio-card {
  position: relative;
  min-height: 238px;
  padding: 1.25rem !important;
  border-radius: 16px !important;
  border: 1px solid rgba(23, 37, 45, .1) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, .78)),
    radial-gradient(320px 160px at 100% 0%, rgba(15, 159, 154, .12), transparent 70%) !important;
  box-shadow: 0 18px 44px rgba(23, 37, 45, .08) !important;
  display: grid !important;
  grid-template-rows: 1fr auto;
  gap: 1.15rem !important;
  transform: translateY(0);
}

.precio-card::before {
  content: "";
  position: absolute;
  top: 14px;
  right: 14px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #0f9f9a;
  box-shadow: 0 0 0 6px rgba(15, 159, 154, .1);
}

.precio-card:nth-child(2n)::before {
  background: #b96f52;
  box-shadow: 0 0 0 6px rgba(185, 111, 82, .1);
}

.precio-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 24px 58px rgba(23, 37, 45, .13) !important;
  border-color: rgba(15, 159, 154, .25) !important;
}

.precio-card-inner {
  gap: .65rem !important;
  padding-right: .9rem;
}

.precio-card h3 {
  font-family: 'Fraunces', 'Bodoni Moda', Georgia, serif !important;
  font-size: 1.16rem !important;
  font-weight: 700 !important;
  line-height: 1.18 !important;
  color: #17252d !important;
  letter-spacing: 0;
}

.precio-card p {
  font-size: .88rem !important;
  line-height: 1.62 !important;
  color: rgba(23, 37, 45, .66) !important;
}

.precio-footer {
  align-items: end !important;
  gap: .8rem !important;
  padding-top: .95rem !important;
  border-top: 1px solid rgba(23, 37, 45, .1) !important;
}

.precio-valor {
  display: block;
  font-family: 'Fraunces', 'Bodoni Moda', Georgia, serif !important;
  font-size: clamp(1.5rem, 2.2vw, 1.95rem) !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  color: #17252d !important;
}

.precio-moneda {
  display: block;
  margin-top: .25rem;
  font-size: .72rem !important;
  line-height: 1.3;
  color: rgba(23, 37, 45, .58) !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.btn-precio {
  min-height: 38px;
  padding: .52rem .82rem !important;
  border: 1px solid rgba(23, 37, 45, .14) !important;
  border-radius: 999px !important;
  background: #17252d !important;
  color: #fff !important;
  font-size: .78rem !important;
  font-weight: 700 !important;
  box-shadow: 0 10px 24px rgba(23, 37, 45, .12);
}

.btn-precio:hover {
  background: #0f9f9a !important;
  border-color: #0f9f9a !important;
  color: #fff !important;
}

.precio-gratis {
  border-color: rgba(15, 159, 154, .28) !important;
  background:
    linear-gradient(180deg, rgba(242, 251, 249, .96), rgba(255, 255, 255, .84)),
    radial-gradient(320px 160px at 100% 0%, rgba(15, 159, 154, .16), transparent 70%) !important;
}

.precio-tag-gratis {
  background: rgba(15, 159, 154, .12) !important;
  color: #0f7673 !important;
  letter-spacing: .04em !important;
}

.btn-precio-gratis {
  background: #0f9f9a !important;
  border-color: #0f9f9a !important;
  color: #fff !important;
}

.precios-nota {
  max-width: 820px;
  margin: 1.3rem 0 0 !important;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  border: 1px solid rgba(23, 37, 45, .08);
  background: rgba(255, 255, 255, .62);
  color: rgba(23, 37, 45, .66) !important;
  font-size: .88rem !important;
  line-height: 1.65;
  text-align: left !important;
}

.ai-assistant-fab,
#chatToggle {
  animation: aicRobotHello 4.8s ease-in-out infinite !important;
  transform-origin: 52% 72%;
}

.ai-assistant-fab:hover,
#chatToggle:hover {
  animation-play-state: paused !important;
}

#chatWidget {
  position: fixed;
  right: 18px;
  bottom: 16px;
  z-index: 11000;
}

#chatToggle {
  position: relative;
  width: clamp(108px, 9vw, 148px) !important;
  height: clamp(108px, 9vw, 148px) !important;
  border: 0 !important;
  border-radius: 50% !important;
  background: transparent !important;
  box-shadow: none !important;
  cursor: pointer;
  overflow: visible !important;
}

#chatToggle > i {
  display: none !important;
}

.chat-robot-orbit {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 159, 154, .22), transparent 64%);
  filter: blur(12px);
  pointer-events: none;
}

.chat-robot-img {
  position: absolute;
  inset: -12%;
  width: 124%;
  height: 124%;
  object-fit: contain;
  filter:
    drop-shadow(0 16px 24px rgba(0, 0, 0, .28))
    drop-shadow(0 0 18px rgba(15, 159, 154, .18));
  pointer-events: none;
}

.chat-robot-label {
  position: absolute;
  left: 50%;
  bottom: -2px;
  transform: translateX(-50%);
  min-width: 86px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(23, 37, 45, .12);
  background: rgba(250, 251, 248, .92);
  color: #17252d;
  box-shadow: 0 10px 24px rgba(5, 14, 17, .16);
  font-size: .62rem;
  line-height: 1.1;
  font-weight: 800;
  text-align: center;
  pointer-events: none;
}

#chatBox {
  right: 0 !important;
  bottom: calc(100% + 14px) !important;
  width: min(344px, calc(100vw - 28px)) !important;
  border-radius: 18px !important;
  border: 1px solid rgba(23, 37, 45, .12) !important;
  background: rgba(250, 251, 248, .96) !important;
  color: #17252d !important;
  box-shadow: 0 28px 76px rgba(5, 14, 17, .28) !important;
  overflow: hidden;
}

#chatBox .chat-head {
  background: transparent !important;
  color: #17252d !important;
  border-bottom: 1px solid rgba(23, 37, 45, .1);
}

#chatBox .chat-head-info span,
#chatBox .msg.bot {
  color: rgba(23, 37, 45, .72) !important;
}

#chatBox .chat-head button {
  color: rgba(23, 37, 45, .58) !important;
}

#chatBox .msg.bot {
  background: #edf3f1 !important;
}

#chatBox .msg.user {
  background: #17252d !important;
  color: #fff !important;
}

#chatBox .qbtn,
#chatBox #chatInput {
  background: rgba(23, 37, 45, .055) !important;
  border: 1px solid rgba(23, 37, 45, .12) !important;
  color: #17252d !important;
}

#chatBox #chatSend {
  background: #0f9f9a !important;
  color: #fff !important;
}

@keyframes aicRobotHello {
  0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
  18% { transform: translateY(-8px) rotate(-2deg) scale(1.015); }
  36% { transform: translateY(-3px) rotate(2.2deg) scale(1.01); }
  54% { transform: translateY(-10px) rotate(-1.2deg) scale(1.025); }
  72% { transform: translateY(-2px) rotate(1deg) scale(1.005); }
}

@media (max-width: 1180px) {
  .precios-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 680px) {
  #precios .container > h2,
  #precios .container > p:not(.precios-nota),
  .precios-nota {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .precios-grid {
    grid-template-columns: 1fr !important;
  }

  .precio-footer {
    align-items: stretch !important;
    flex-direction: column;
  }

  .btn-precio {
    width: 100%;
  }

  #chatWidget {
    right: 10px;
    bottom: 10px;
  }

  #chatToggle {
    width: 104px !important;
    height: 104px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ai-assistant-fab,
  #chatToggle {
    animation: none !important;
  }
}

/* ==============================================================
   NAV + CAFECITO POLISH 2026-04-27
   ============================================================== */
#navbar {
  top: 8px !important;
  height: auto !important;
  padding: 0 clamp(.75rem, 2vw, 1.35rem) !important;
  background: transparent !important;
  border: 0 !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
  pointer-events: none;
}

#navbar .nav-inner {
  pointer-events: auto;
  position: relative;
  width: min(1240px, calc(100vw - 2rem));
  min-height: 72px;
  margin: 0 auto;
  padding: .45rem .72rem .45rem .88rem;
  border-radius: 999px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(250, 251, 248, .62), rgba(244, 247, 245, .34)),
    rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .42);
  box-shadow:
    0 24px 70px rgba(23, 37, 45, .13),
    inset 0 1px 0 rgba(255, 255, 255, .48);
  backdrop-filter: blur(24px) saturate(156%);
  -webkit-backdrop-filter: blur(24px) saturate(156%);
  transition:
    width .52s cubic-bezier(.22, 1, .36, 1),
    min-height .52s cubic-bezier(.22, 1, .36, 1),
    padding .52s cubic-bezier(.22, 1, .36, 1),
    transform .52s cubic-bezier(.22, 1, .36, 1),
    background .32s ease,
    box-shadow .32s ease,
    border-color .32s ease;
}

#navbar .nav-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(100deg, transparent 0 28%, rgba(255, 255, 255, .34) 44%, transparent 62%),
    radial-gradient(240px 90px at 16% 50%, rgba(185, 111, 82, .12), transparent 70%),
    radial-gradient(260px 100px at 86% 48%, rgba(15, 159, 154, .1), transparent 70%);
  opacity: .78;
  transform: translateX(-18%);
  pointer-events: none;
  transition: transform .72s cubic-bezier(.22, 1, .36, 1), opacity .32s ease;
}

#navbar.scrolled .nav-inner {
  width: min(1058px, calc(100vw - 2.2rem));
  min-height: 58px;
  padding: .28rem .58rem .28rem .72rem;
  transform: translateY(-2px);
  background:
    linear-gradient(135deg, rgba(250, 251, 248, .78), rgba(244, 247, 245, .52)),
    rgba(255, 255, 255, .22);
  border-color: rgba(185, 111, 82, .16);
  box-shadow:
    0 18px 54px rgba(23, 37, 45, .15),
    inset 0 1px 0 rgba(255, 255, 255, .58);
}

#navbar.scrolled .nav-inner::before {
  transform: translateX(18%);
  opacity: .58;
}

#navbar .nav-logo,
#navbar .nav-links,
#navbar .nav-burger {
  position: relative;
  z-index: 1;
}

#navbar .nav-logo-mark img {
  height: 54px !important;
  width: 54px !important;
  border-radius: 18px;
  transition: height .52s cubic-bezier(.22, 1, .36, 1), width .52s cubic-bezier(.22, 1, .36, 1), border-radius .52s ease;
}

#navbar.scrolled .nav-logo-mark img {
  height: 42px !important;
  width: 42px !important;
  border-radius: 15px;
}

#navbar .nav-logo-text strong,
#navbar .nav-links a {
  color: #17252d !important;
  text-shadow: 0 1px 18px rgba(255, 255, 255, .22);
}

#navbar .nav-logo-text > span {
  color: rgba(23, 37, 45, .6) !important;
  max-height: 18px;
  opacity: 1;
  transform: translateY(0);
  overflow: hidden;
  transition: max-height .42s ease, opacity .32s ease, transform .42s ease;
}

#navbar.scrolled .nav-logo-text > span {
  max-height: 0;
  opacity: 0;
  transform: translateY(-4px);
}

#navbar .nav-links a {
  border-radius: 999px;
  background: transparent !important;
  border: 0 !important;
}

#navbar .nav-links a::before,
#navbar .nav-links a::after {
  display: none !important;
}

#navbar .nav-links a.active,
#navbar .nav-links a:hover {
  color: #8f523d !important;
  background: rgba(185, 111, 82, .1) !important;
}

#navbar .nav-cta {
  background: #8f523d !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, .34) !important;
  box-shadow: 0 12px 30px rgba(143, 82, 61, .22) !important;
}

#navbar.scrolled .nav-cta {
  background: #17252d !important;
  color: #fff !important;
}

#navbar .nav-burger span {
  background: #17252d !important;
}

.nav-mobile {
  border: 1px solid rgba(185, 111, 82, .18) !important;
  background: rgba(250, 251, 248, .92) !important;
  box-shadow: 0 24px 70px rgba(23, 37, 45, .18) !important;
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
}

.nav-mobile a {
  color: #17252d !important;
}

/* Precios */
#precios {
  background:
    radial-gradient(740px 430px at 8% 0%, rgba(185, 111, 82, .13), transparent 64%),
    radial-gradient(720px 420px at 88% 12%, rgba(212, 168, 83, .12), transparent 62%),
    linear-gradient(180deg, #fbfaf6 0%, #f3eee7 52%, #f7f4ee 100%) !important;
}

#precios::before {
  background: linear-gradient(90deg, transparent, rgba(185, 111, 82, .28), transparent) !important;
}

#precios .section-tag {
  border-color: rgba(185, 111, 82, .24) !important;
  background: rgba(255, 252, 246, .78) !important;
  color: #8f523d !important;
}

#precios .section-tag::before,
.precio-card::before {
  background: #b96f52 !important;
  box-shadow: 0 0 0 6px rgba(185, 111, 82, .12) !important;
}

.precio-card {
  border-color: rgba(143, 82, 61, .12) !important;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, .96), rgba(255, 250, 242, .82)),
    radial-gradient(320px 160px at 100% 0%, rgba(185, 111, 82, .13), transparent 70%) !important;
}

.precio-card:hover {
  border-color: rgba(185, 111, 82, .26) !important;
}

.precio-valor,
#precios .container > h2 {
  color: #17252d !important;
}

.btn-precio,
.btn-precio-gratis {
  background: #8f523d !important;
  border-color: #8f523d !important;
  color: #fff !important;
}

.btn-precio:hover,
.btn-precio-gratis:hover {
  background: #17252d !important;
  border-color: #17252d !important;
}

.precio-gratis {
  border-color: rgba(185, 111, 82, .26) !important;
  background:
    linear-gradient(180deg, rgba(255, 252, 246, .98), rgba(255, 249, 239, .86)),
    radial-gradient(320px 160px at 100% 0%, rgba(212, 168, 83, .18), transparent 70%) !important;
}

.precio-tag-gratis {
  background: rgba(185, 111, 82, .12) !important;
  color: #8f523d !important;
}

/* Metodos de pago */
#pagos.pay-literal {
  background:
    radial-gradient(780px 460px at 12% 2%, rgba(185, 111, 82, .12), transparent 66%),
    radial-gradient(720px 420px at 90% 16%, rgba(15, 159, 154, .08), transparent 64%),
    linear-gradient(180deg, #fbfaf6 0%, #f2eee6 100%) !important;
  color: #17252d !important;
}

#pagos.pay-literal .pay-html {
  color: #17252d !important;
}

#pagos.pay-literal .pay-html .eyebrow {
  color: #8f523d !important;
  background: rgba(255, 252, 246, .78) !important;
  border-color: rgba(185, 111, 82, .2) !important;
  box-shadow: 0 12px 28px rgba(143, 82, 61, .08) !important;
}

#pagos.pay-literal .pay-html .eyebrow::before {
  background: #b96f52 !important;
  box-shadow: 0 0 0 6px rgba(185, 111, 82, .12) !important;
}

#pagos.pay-literal .pay-html .title,
#pagos.pay-literal .pay-html .section-head h3,
#pagos.pay-literal .pay-html .info-note h3 {
  color: #17252d !important;
  font-family: 'Fraunces', 'Bodoni Moda', Georgia, serif !important;
  letter-spacing: 0 !important;
}

#pagos.pay-literal .pay-html .title em,
#pagos.pay-literal .pay-html .section-head h3 em {
  color: #8f523d !important;
}

#pagos.pay-literal .pay-html .subtitle,
#pagos.pay-literal .pay-html .section-head p,
#pagos.pay-literal .pay-html .info-note p,
#pagos.pay-literal .pay-html .cta p {
  color: rgba(23, 37, 45, .68) !important;
}

#pagos.pay-literal .pay-html .stage,
#pagos.pay-literal .pay-html .info-note,
#pagos.pay-literal .pay-html .cta {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, .92), rgba(255, 249, 240, .78)),
    radial-gradient(520px 220px at 8% 0%, rgba(185, 111, 82, .09), transparent 70%) !important;
  border: 1px solid rgba(143, 82, 61, .14) !important;
  box-shadow: 0 24px 58px rgba(23, 37, 45, .09) !important;
}

#pagos.pay-literal .pay-html .stage::before,
#pagos.pay-literal .pay-html .deck-floor {
  background:
    radial-gradient(closest-side, rgba(185, 111, 82, .14), transparent 74%),
    linear-gradient(90deg, transparent, rgba(143, 82, 61, .1), transparent) !important;
}

#pagos.pay-literal .pay-html .stage-label,
#pagos.pay-literal .pay-html .cat-label,
#pagos.pay-literal .pay-html .pm-name {
  color: #17252d !important;
}

#pagos.pay-literal .pay-html .stage-meta span,
#pagos.pay-literal .pay-html .pm-meta {
  color: rgba(23, 37, 45, .62) !important;
}

#pagos.pay-literal .pay-html .stage-meta span::before,
#pagos.pay-literal .pay-html .cat-label::after {
  background: #b96f52 !important;
}

#pagos.pay-literal .pay-html .card {
  color: #fff !important;
  border-color: rgba(255, 255, 255, .28) !important;
  box-shadow: 0 26px 56px rgba(92, 55, 42, .24) !important;
}

#pagos.pay-literal .pay-html .card-mp,
#pagos.pay-literal .pay-html .card-bbva,
#pagos.pay-literal .pay-html .card-rev,
#pagos.pay-literal .pay-html .card-nu,
#pagos.pay-literal .pay-html .card-banorte {
  background:
    linear-gradient(135deg, #efddc2 0%, #bd7b5a 44%, #6f4235 100%) !important;
}

#pagos.pay-literal .pay-html .card::before {
  background: linear-gradient(110deg, transparent 0 34%, rgba(255, 248, 236, .24) 48%, transparent 64%) !important;
}

#pagos.pay-literal .pay-html .c-chip {
  background: linear-gradient(135deg, #f5e2bd, #b7864e) !important;
}

#pagos.pay-literal .pay-html .chip,
#pagos.pay-literal .pay-html .pm {
  background: rgba(255, 253, 248, .8) !important;
  border-color: rgba(143, 82, 61, .14) !important;
  color: #17252d !important;
  box-shadow: 0 16px 36px rgba(23, 37, 45, .08) !important;
}

#pagos.pay-literal .pay-html .chip svg {
  color: #8f523d !important;
}

#pagos.pay-literal .pay-html .pm:hover {
  border-color: rgba(185, 111, 82, .32) !important;
  box-shadow: 0 24px 48px rgba(143, 82, 61, .13) !important;
}

#pagos.pay-literal .pay-html .pm::before {
  background: linear-gradient(180deg, rgba(185, 111, 82, .16), transparent) !important;
}

#pagos.pay-literal .pay-html .pm-logo {
  background: linear-gradient(135deg, #f0dfc7, #b96f52) !important;
  color: #fff !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .32), 0 10px 24px rgba(143, 82, 61, .14) !important;
}

#pagos.pay-literal .pay-html .pm-logo svg,
#pagos.pay-literal .pay-html .pm-logo svg * {
  fill: currentColor !important;
  stroke: currentColor !important;
}

#pagos.pay-literal .pay-html .info-note .ico,
#pagos.pay-literal .pay-html .cta a {
  background: #8f523d !important;
  color: #fff !important;
  box-shadow: 0 16px 34px rgba(143, 82, 61, .18) !important;
}

#pagos.pay-literal .pay-html .cta a:hover {
  background: #17252d !important;
  transform: translateY(-2px);
}

/* CTA final en todas las paginas */
.cta-banner {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(143, 82, 61, .14) !important;
  background:
    linear-gradient(120deg, rgba(255, 253, 248, .94), rgba(242, 226, 207, .9), rgba(232, 239, 235, .92), rgba(255, 249, 239, .96)) !important;
  background-size: 260% 260% !important;
  box-shadow: 0 26px 70px rgba(23, 37, 45, .12) !important;
  animation: aicCtaWarmFlow 14s ease-in-out infinite;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(460px 190px at 12% 20%, rgba(185, 111, 82, .18), transparent 70%),
    radial-gradient(420px 190px at 88% 78%, rgba(15, 159, 154, .12), transparent 72%),
    linear-gradient(100deg, transparent 0 42%, rgba(255, 255, 255, .28) 50%, transparent 62%);
  transform: translateX(-12%);
  opacity: .82;
  pointer-events: none;
  animation: aicCtaSoftSweep 9s cubic-bezier(.4, 0, .2, 1) infinite;
}

.cta-banner::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, .46);
  pointer-events: none;
}

.cta-banner > * {
  position: relative;
  z-index: 1;
}

.cta-banner-title {
  color: #17252d !important;
}

.cta-banner-title em {
  color: #8f523d !important;
}

.cta-banner-sub {
  color: rgba(23, 37, 45, .68) !important;
}

.cta-banner .btn-primary,
.cta-banner .btn-dark {
  background: #8f523d !important;
  color: #fff !important;
  border-color: #8f523d !important;
  box-shadow: 0 16px 34px rgba(143, 82, 61, .18) !important;
}

.cta-banner .btn-outline {
  background: rgba(255, 253, 248, .46) !important;
  color: #17252d !important;
  border-color: rgba(143, 82, 61, .2) !important;
}

.cta-banner .btn-primary:hover,
.cta-banner .btn-dark:hover,
.cta-banner .btn-outline:hover {
  background: #17252d !important;
  border-color: #17252d !important;
  color: #fff !important;
}

/* Robot: respiracion mas visible sin verse pesado */
.ai-assistant-fab,
#chatToggle {
  animation: aicRobotBetterMove 4.9s ease-in-out infinite !important;
}

.ai-assistant-fallback,
.chat-robot-img {
  animation: aicRobotFaceNod 5.8s ease-in-out infinite;
  transform-origin: 50% 72%;
}

.ai-assistant-fab::after,
#chatToggle::after {
  content: "";
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(185, 111, 82, .16), transparent 66%);
  filter: blur(16px);
  opacity: .72;
  z-index: -1;
  animation: aicRobotGlowPulse 3.6s ease-in-out infinite;
}

.has-ai-robot .ai-assistant-quick button[data-action="wa"] {
  display: none !important;
}

@keyframes aicCtaWarmFlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes aicCtaSoftSweep {
  0% { transform: translateX(-34%); opacity: .2; }
  42% { opacity: .82; }
  100% { transform: translateX(34%); opacity: .34; }
}

@keyframes aicRobotBetterMove {
  0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
  22% { transform: translateY(-7px) rotate(-1.8deg) scale(1.018); }
  46% { transform: translateY(-2px) rotate(2deg) scale(1.006); }
  68% { transform: translateY(-10px) rotate(-.8deg) scale(1.026); }
}

@keyframes aicRobotFaceNod {
  0%, 100% { transform: rotate(0deg) scale(1); }
  35% { transform: rotate(-2deg) scale(1.015); }
  62% { transform: rotate(1.5deg) scale(1.01); }
}

@keyframes aicRobotGlowPulse {
  0%, 100% { transform: scale(.92); opacity: .38; }
  50% { transform: scale(1.1); opacity: .82; }
}

@media (max-width: 980px) {
  #navbar .nav-inner {
    width: min(720px, calc(100vw - 1.5rem));
    min-height: 64px;
    padding: .38rem .62rem .38rem .72rem;
  }

  #navbar.scrolled .nav-inner {
    width: min(620px, calc(100vw - 1.4rem));
    min-height: 56px;
  }

  #navbar .nav-logo-mark img {
    height: 46px !important;
    width: 46px !important;
  }

  #navbar.scrolled .nav-logo-mark img {
    height: 40px !important;
    width: 40px !important;
  }

  #navbar .nav-logo-text > span {
    display: none;
  }
}

@media (max-width: 680px) {
  #navbar {
    top: 6px !important;
    padding: 0 .6rem !important;
  }

  #navbar .nav-inner,
  #navbar.scrolled .nav-inner {
    width: calc(100vw - 1.2rem);
  }

  #pagos.pay-literal .pay-html .stage,
  #pagos.pay-literal .pay-html .info-note,
  #pagos.pay-literal .pay-html .cta {
    border-radius: 18px !important;
  }

  .cta-banner {
    border-radius: 18px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  #navbar .nav-inner,
  #navbar .nav-inner::before,
  .cta-banner,
  .cta-banner::before,
  .ai-assistant-fab,
  #chatToggle,
  .ai-assistant-fallback,
  .chat-robot-img,
  .ai-assistant-fab::after,
  #chatToggle::after {
    animation: none !important;
    transition: none !important;
  }
}

/* ==============================================================
   REQUESTED BALANCE PASS 2026-04-27
   ============================================================== */
.service-routing-section {
  overflow: visible;
}

.service-route-head {
  max-width: 860px;
  margin-bottom: .95rem !important;
}

.service-route-head h3,
.student-specialty-head h3 {
  font-family: 'Fraunces', 'Bodoni Moda', Georgia, serif !important;
  font-size: clamp(2rem, 3.8vw, 3.15rem) !important;
  line-height: 1.06 !important;
  letter-spacing: 0 !important;
  color: #17252d !important;
  text-wrap: balance;
}

.service-route-head h3 em,
.student-specialty-head h3 em,
#precios .container > h2 em,
#pagos.pay-literal .pay-html .title em {
  color: #b96f52 !important;
  font-style: italic !important;
}

.service-switch-shell {
  position: sticky;
  top: 88px;
  z-index: 90;
  display: flex;
  justify-content: center;
  width: min(100%, 100vw);
  margin: .3rem auto 1.15rem;
  padding: .35rem 1rem .55rem;
  pointer-events: none;
}

.service-switch-shell .service-switch {
  pointer-events: auto;
  margin: 0 !important;
  padding: .34rem !important;
  gap: .35rem !important;
  background: rgba(250, 251, 248, .78) !important;
  border: 1px solid rgba(185, 111, 82, .16) !important;
  box-shadow: 0 16px 42px rgba(23, 37, 45, .12) !important;
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.service-switch-shell .service-pill {
  min-height: 42px;
  padding: .56rem .98rem !important;
  font-size: .82rem !important;
  line-height: 1.15;
}

.service-switch-shell .service-pill.active {
  background: #fff !important;
  color: #0e8a92 !important;
}

.service-routing-section .consult-banner {
  margin: 1.1rem auto 3.35rem !important;
}

.service-routing-section .service-hero-card {
  margin-top: 0 !important;
  margin-bottom: 2.75rem !important;
}

.service-routing-section .advisory-box,
.service-routing-section .portal-grid {
  margin-top: 2rem !important;
  margin-bottom: 2.8rem !important;
}

.service-routing-section .service-card-grid {
  margin-top: 1rem !important;
}

.service-routing-section .promise-card {
  margin-top: 2.5rem !important;
}

.student-specialty-head {
  max-width: 960px !important;
  margin-top: 1.4rem !important;
  margin-bottom: 2rem !important;
}

.portal-card,
.service-detail-card {
  min-height: 100%;
}

/* Heroes internos con imagen, en concordancia con el inicio */
body:not(.guide-page) .page-hero,
body:not(.guide-page) .hero.hero-clean.page-hero {
  --page-hero-bg: url('assets/img-oficina.webp');
  --page-hero-position: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #101a1f !important;
}

body:not(.guide-page) #quienes.page-hero {
  --page-hero-bg: url('assets/img-oficina.webp');
  --page-hero-position: center;
}

body:not(.guide-page) #empresas.page-hero {
  --page-hero-bg: url('assets/img-mesa.webp');
  --page-hero-position: center 58%;
}

body:not(.guide-page) #personas-fisicas.page-hero {
  --page-hero-bg: url('assets/img-fiscal.webp');
  --page-hero-position: center;
}

body:not(.guide-page) #estudiantes.page-hero {
  --page-hero-bg: url('assets/img-aula-privada.webp');
  --page-hero-position: center 42%;
}

body:not(.guide-page) #contacto.page-hero {
  --page-hero-bg: url('assets/img-clientes.webp');
  --page-hero-position: center;
}

body:not(.guide-page) #faq.page-hero {
  --page-hero-bg: url('assets/img-constancias.webp');
  --page-hero-position: center;
}

body.guide-hub-page .page-hero {
  --page-hero-bg: url('assets/img-comunidad.webp');
  --page-hero-position: center;
}

body:not(.guide-page) .page-hero::before {
  content: "" !important;
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(10, 18, 22, .9) 0%, rgba(10, 18, 22, .74) 44%, rgba(10, 18, 22, .34) 100%),
    linear-gradient(180deg, rgba(10, 18, 22, .18), rgba(10, 18, 22, .78)),
    var(--page-hero-bg) var(--page-hero-position)/cover no-repeat !important;
  opacity: 1 !important;
}

body:not(.guide-page) .page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(720px 360px at 20% 70%, rgba(15, 159, 154, .2), transparent 68%),
    radial-gradient(620px 300px at 84% 22%, rgba(185, 111, 82, .22), transparent 70%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .035) 0 1px, transparent 1px 92px);
  pointer-events: none;
}

body:not(.guide-page) .page-hero-grid,
body:not(.guide-page) .page-hero .container {
  position: relative;
  z-index: 1;
}

body:not(.guide-page) .page-hero-media {
  background: rgba(250, 251, 248, .13) !important;
  border-color: rgba(255, 255, 255, .22) !important;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .28) !important;
}

/* Precios: recuperar color anterior, solo tipografia con remate cafe */
#precios {
  background:
    radial-gradient(760px 420px at 10% 0%, rgba(15, 159, 154, .1), transparent 66%),
    radial-gradient(720px 420px at 88% 8%, rgba(185, 111, 82, .11), transparent 62%),
    linear-gradient(180deg, #fbfcf8 0%, #eff5f2 100%) !important;
}

#precios::before {
  background: linear-gradient(90deg, transparent, rgba(23, 37, 45, .18), transparent) !important;
}

#precios .section-tag {
  border-color: rgba(15, 159, 154, .18) !important;
  background: rgba(255, 255, 255, .72) !important;
  color: #0f7673 !important;
}

#precios .section-tag::before,
.precio-card::before {
  background: #0f9f9a !important;
  box-shadow: 0 0 0 6px rgba(15, 159, 154, .1) !important;
}

.precio-card:nth-child(2n)::before {
  background: #b96f52 !important;
  box-shadow: 0 0 0 6px rgba(185, 111, 82, .1) !important;
}

.precio-card {
  border-color: rgba(23, 37, 45, .1) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, .78)),
    radial-gradient(320px 160px at 100% 0%, rgba(15, 159, 154, .12), transparent 70%) !important;
}

.precio-card:hover {
  border-color: rgba(15, 159, 154, .25) !important;
}

.btn-precio {
  background: #17252d !important;
  border-color: rgba(23, 37, 45, .14) !important;
  color: #fff !important;
}

.btn-precio:hover {
  background: #0f9f9a !important;
  border-color: #0f9f9a !important;
}

.precio-gratis {
  border-color: rgba(15, 159, 154, .28) !important;
  background:
    linear-gradient(180deg, rgba(242, 251, 249, .96), rgba(255, 255, 255, .84)),
    radial-gradient(320px 160px at 100% 0%, rgba(15, 159, 154, .16), transparent 70%) !important;
}

.precio-tag-gratis {
  background: rgba(15, 159, 154, .12) !important;
  color: #0f7673 !important;
}

.btn-precio-gratis {
  background: #0f9f9a !important;
  border-color: #0f9f9a !important;
}

/* Metodos de pago: recuperar escena original, solo titulo con cafe */
#pagos.pay-literal {
  background:
    radial-gradient(900px 600px at 15% 10%, rgba(20, 217, 196, .10), transparent 60%),
    radial-gradient(800px 500px at 85% 15%, rgba(107, 91, 255, .12), transparent 60%),
    radial-gradient(1000px 700px at 50% 110%, rgba(20, 217, 196, .06), transparent 60%),
    linear-gradient(180deg, #05070d 0%, #070b16 100%) !important;
  color: #e8ecf5 !important;
}

#pagos.pay-literal .pay-html {
  color: #e8ecf5 !important;
}

#pagos.pay-literal .pay-html .eyebrow {
  color: #8a93ab !important;
  background: rgba(255, 255, 255, .04) !important;
  border-color: rgba(255, 255, 255, .08) !important;
  box-shadow: none !important;
}

#pagos.pay-literal .pay-html .eyebrow::before,
#pagos.pay-literal .pay-html .stage-meta span::before {
  background: #14d9c4 !important;
  box-shadow: 0 0 12px #14d9c4 !important;
}

#pagos.pay-literal .pay-html .title,
#pagos.pay-literal .pay-html .section-head h3,
#pagos.pay-literal .pay-html .info-note h3 {
  color: #e8ecf5 !important;
}

#pagos.pay-literal .pay-html .title em {
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  color: #b96f52 !important;
  font-weight: 300 !important;
}

#pagos.pay-literal .pay-html .section-head h3 em {
  color: #14d9c4 !important;
}

#pagos.pay-literal .pay-html .subtitle,
#pagos.pay-literal .pay-html .section-head p,
#pagos.pay-literal .pay-html .cta p {
  color: #8a93ab !important;
}

#pagos.pay-literal .pay-html .stage {
  background: linear-gradient(180deg, rgba(16, 24, 50, .6) 0%, rgba(10, 15, 29, .3) 100%) !important;
  border-color: rgba(255, 255, 255, .08) !important;
  box-shadow: none !important;
}

#pagos.pay-literal .pay-html .stage::before {
  background:
    radial-gradient(600px 300px at 50% 0%, rgba(20, 217, 196, .12), transparent 60%),
    radial-gradient(400px 200px at 50% 100%, rgba(212, 168, 75, .06), transparent 60%) !important;
}

#pagos.pay-literal .pay-html .deck-floor {
  background: radial-gradient(ellipse, rgba(0, 0, 0, .7) 0%, transparent 70%) !important;
}

#pagos.pay-literal .pay-html .stage-label,
#pagos.pay-literal .pay-html .stage-meta span,
#pagos.pay-literal .pay-html .cat-label,
#pagos.pay-literal .pay-html .pm-meta {
  color: #5a6279 !important;
}

#pagos.pay-literal .pay-html .card {
  box-shadow:
    0 30px 60px -25px rgba(0, 0, 0, .9),
    0 0 0 1px rgba(255, 255, 255, .06) inset,
    0 1px 0 rgba(255, 255, 255, .12) inset !important;
}

#pagos.pay-literal .pay-html .card-mp { background: linear-gradient(135deg, #1493dd 0%, #034a87 50%, #0b79c6 100%) !important; }
#pagos.pay-literal .pay-html .card-bbva { background: linear-gradient(135deg, #004481 0%, #002859 50%, #1464a5 100%) !important; }
#pagos.pay-literal .pay-html .card-rev { background: linear-gradient(135deg, #1a1a24 0%, #050508 50%, #252535 100%) !important; }
#pagos.pay-literal .pay-html .card-nu { background: linear-gradient(135deg, #9820d4 0%, #5d0d8a 50%, #a834e0 100%) !important; }
#pagos.pay-literal .pay-html .card-banorte { background: linear-gradient(135deg, #d0021b 0%, #8a0012 50%, #e9222f 100%) !important; }

#pagos.pay-literal .pay-html .card::before {
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, .08) 49%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .08) 51%, transparent 65%) !important;
}

#pagos.pay-literal .pay-html .c-chip {
  background: linear-gradient(135deg, #e9c77a 0%, #b68532 50%, #e9c77a 100%) !important;
}

#pagos.pay-literal .pay-html .chip,
#pagos.pay-literal .pay-html .pm {
  background: rgba(255, 255, 255, .02) !important;
  border-color: rgba(255, 255, 255, .08) !important;
  color: #8a93ab !important;
  box-shadow: none !important;
}

#pagos.pay-literal .pay-html .chip svg {
  color: #14d9c4 !important;
}

#pagos.pay-literal .pay-html .pm:hover {
  border-color: rgba(20, 217, 196, .35) !important;
  background: rgba(20, 217, 196, .04) !important;
  box-shadow: none !important;
}

#pagos.pay-literal .pay-html .pm-name {
  color: #e8ecf5 !important;
}

#pagos.pay-literal .pay-html .pm-logo {
  background: rgba(255, 255, 255, .06) !important;
  color: inherit !important;
  box-shadow: none !important;
}

#pagos.pay-literal .pay-html .pm-logo[style*="#004481"] { background: #004481 !important; }
#pagos.pay-literal .pay-html .pm-logo[style*="#d0021b"] { background: #d0021b !important; }
#pagos.pay-literal .pay-html .pm-logo[style*="#820ad1"] { background: #820ad1 !important; }
#pagos.pay-literal .pay-html .pm-logo[style*="#0a0a0a"] { background: #0a0a0a !important; }
#pagos.pay-literal .pay-html .pm-logo[style*="#2e77bc"] { background: #2e77bc !important; }

#pagos.pay-literal .pay-html .pm-logo svg * {
  fill: revert !important;
  stroke: revert !important;
}

#pagos.pay-literal .pay-html .info-note {
  background: rgba(20, 217, 196, .05) !important;
  border-color: rgba(20, 217, 196, .24) !important;
  box-shadow: none !important;
}

#pagos.pay-literal .pay-html .info-note .ico {
  background: transparent !important;
  color: #14d9c4 !important;
  box-shadow: none !important;
}

#pagos.pay-literal .pay-html .info-note p {
  color: #a8b0c6 !important;
}

#pagos.pay-literal .pay-html .cta {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

#pagos.pay-literal .pay-html .cta a {
  background: linear-gradient(135deg, rgba(20, 217, 196, .25), rgba(9, 160, 146, .22)) !important;
  border-color: rgba(20, 217, 196, .35) !important;
  color: #eafffc !important;
  box-shadow: none !important;
}

#pagos.pay-literal .pay-html .cta a:hover {
  background: linear-gradient(135deg, rgba(20, 217, 196, .32), rgba(9, 160, 146, .28)) !important;
}

/* Guias: indice acompanante y cierre de autoria */
.guide-page .article-aside {
  position: sticky;
  top: 104px;
  align-self: start;
  max-height: calc(100vh - 124px);
  overflow: auto;
  padding-right: .25rem;
}

.guide-page .article-aside .article-sticky,
.guide-page .article-scroll-card {
  position: static !important;
  max-height: none !important;
  overflow: visible !important;
}

.guide-page .toc-links a {
  border-radius: .7rem;
  padding: .28rem .38rem;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.guide-page .toc-links a:hover {
  background: rgba(185, 111, 82, .1);
  transform: translateX(2px);
}

.guide-author-credit {
  margin-top: 1.2rem !important;
  padding: .95rem 1rem;
  border-radius: 1rem;
  background: rgba(185, 111, 82, .1);
  color: #17252d !important;
  border: 1px solid rgba(185, 111, 82, .16);
}

@media (max-width: 980px) {
  .service-switch-shell {
    top: 74px;
  }

  .guide-page .article-aside {
    position: static;
    max-height: none;
    overflow: visible;
  }
}

@media (max-width: 680px) {
  .service-switch-shell {
    top: 68px;
    padding-inline: .75rem;
  }

  .service-switch-shell .service-switch {
    width: min(100%, 420px);
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .service-switch-shell .service-pill {
    padding-inline: .55rem !important;
    font-size: .76rem !important;
  }

  .service-route-head h3,
  .student-specialty-head h3 {
    font-size: clamp(2rem, 10vw, 2.55rem) !important;
  }
}

/* ==============================================================
   CLEAN SOLID HERO PASS 2026-04-27
   ============================================================== */
.page-hero,
.hero.hero-clean.page-hero,
body.guide-hub-page .page-hero,
body.guide-page .page-hero {
  background:
    radial-gradient(760px 420px at 86% 18%, rgba(185, 111, 82, .18), transparent 64%),
    radial-gradient(720px 420px at 12% 84%, rgba(15, 159, 154, .16), transparent 66%),
    linear-gradient(135deg, #101a1c 0%, #17252d 48%, #26342f 100%) !important;
}

.page-hero::before,
body:not(.guide-page) .page-hero::before,
body.guide-hub-page .page-hero::before,
body.guide-page .page-hero::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  background:
    linear-gradient(90deg, rgba(16, 26, 28, .94), rgba(23, 37, 45, .78)) !important;
  opacity: 1 !important;
  animation: none !important;
  filter: none !important;
}

.page-hero::after,
body:not(.guide-page) .page-hero::after,
body.guide-hub-page .page-hero::after,
body.guide-page .page-hero::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  pointer-events: none !important;
  background:
    radial-gradient(520px 260px at 18% 28%, rgba(250, 251, 248, .06), transparent 74%),
    radial-gradient(560px 280px at 82% 74%, rgba(185, 111, 82, .11), transparent 74%) !important;
}

.page-hero-media {
  background: rgba(250, 251, 248, .12) !important;
  border-color: rgba(255, 255, 255, .18) !important;
}

/* ==============================================================
   USER IMAGE HERO PASS 2026-04-27
   ============================================================== */
.hero.hero-clean.hero-animated.hero-abanico .hero-bg-spline.hero-bg-css-ambient {
  inset: 0 !important;
  background:
    linear-gradient(90deg, rgba(10, 18, 22, .88) 0%, rgba(10, 18, 22, .74) 42%, rgba(10, 18, 22, .34) 74%, rgba(10, 18, 22, .58) 100%),
    linear-gradient(180deg, rgba(10, 18, 22, .1), rgba(10, 18, 22, .8)),
    url('assets/hero-inicio-contable-1920w.webp') center/cover no-repeat !important;
  transform: scale(1.015) !important;
  filter: none !important;
  animation: aicHeroPhotoDrift 26s ease-in-out infinite alternate !important;
}

.hero.hero-clean.hero-animated.hero-abanico .hero-bg-spline.hero-bg-css-ambient::before {
  background:
    radial-gradient(640px 300px at 22% 72%, rgba(15, 159, 154, .18), transparent 72%),
    radial-gradient(560px 280px at 78% 24%, rgba(185, 111, 82, .18), transparent 72%) !important;
  opacity: .74 !important;
}

.hero.hero-clean.hero-animated.hero-abanico .hero-bg-spline.hero-bg-css-ambient::after {
  display: none !important;
}

.hero.hero-clean.hero-animated.hero-abanico .hero-bg-tint {
  opacity: .68 !important;
  background:
    linear-gradient(180deg, rgba(8, 13, 15, .05) 0%, rgba(8, 13, 15, .82) 100%),
    radial-gradient(820px 400px at 36% 84%, rgba(15, 159, 154, .16), transparent 68%) !important;
}

body:not(.guide-page) .page-hero,
body:not(.guide-page) .hero.hero-clean.page-hero,
body.guide-hub-page .page-hero,
body.guide-page .page-hero {
  --page-hero-bg: url('assets/hero-nosotros-equipo.jpg');
  --page-hero-position: center;
  background: #101a1f !important;
}

body:not(.guide-page) #quienes.page-hero {
  --page-hero-bg: url('assets/hero-nosotros-equipo.jpg');
  --page-hero-position: center;
}

body:not(.guide-page) #empresas.page-hero {
  --page-hero-bg: url('assets/hero-empresas-equipo.jpg');
  --page-hero-position: center;
}

body:not(.guide-page) #personas-fisicas.page-hero {
  --page-hero-bg: url('assets/hero-personas-profesional.jpg');
  --page-hero-position: center 44%;
}

body:not(.guide-page) #estudiantes.page-hero {
  --page-hero-bg: url('assets/hero-estudiantes-biblioteca.jpg');
  --page-hero-position: center 45%;
}

body:not(.guide-page) #contacto.page-hero {
  --page-hero-bg: url('assets/hero-contacto-equipo.jpg');
  --page-hero-position: center;
}

body:not(.guide-page) #faq.page-hero {
  --page-hero-bg: url('assets/hero-faq-corporate.jpg');
  --page-hero-position: center;
}

body.guide-hub-page .page-hero,
body.guide-page .page-hero {
  --page-hero-bg: url('assets/hero-guias-estudiantes.jpg');
  --page-hero-position: center;
}

body.ptu-guide-page .page-hero {
  --page-hero-bg: url('assets/ptu-2026-reunion.jpg');
  --page-hero-position: center;
}

body:not(.guide-page) .page-hero::before,
body.guide-hub-page .page-hero::before,
body.guide-page .page-hero::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  background:
    linear-gradient(90deg, rgba(10, 18, 22, .9) 0%, rgba(10, 18, 22, .76) 46%, rgba(10, 18, 22, .44) 100%),
    linear-gradient(180deg, rgba(10, 18, 22, .12), rgba(10, 18, 22, .82)),
    var(--page-hero-bg) var(--page-hero-position)/cover no-repeat !important;
  opacity: 1 !important;
  filter: none !important;
  animation: none !important;
}

body:not(.guide-page) .page-hero::after,
body.guide-hub-page .page-hero::after,
body.guide-page .page-hero::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  pointer-events: none !important;
  background:
    radial-gradient(620px 300px at 18% 28%, rgba(250, 251, 248, .08), transparent 74%),
    radial-gradient(640px 320px at 82% 74%, rgba(185, 111, 82, .14), transparent 74%) !important;
}

/* ==============================================================
   MOBILE PERFORMANCE GUARD 2026-04-28
   Mantiene el look, pero evita trabajo continuo de compositor en móvil.
   ============================================================== */
.hero.hero-clean.hero-animated.hero-abanico .hero-bg-spline.hero-bg-css-ambient {
  will-change: transform;
  backface-visibility: hidden;
  contain: paint;
}

@media (max-width: 1024px) {
  .hero.hero-clean.hero-animated.hero-abanico .hero-bg-spline.hero-bg-css-ambient,
  .hero.hero-clean.hero-animated.hero-abanico .hero-aurora,
  .hero.hero-clean.hero-animated.hero-abanico .hero-ring,
  .hero.hero-clean.hero-animated.hero-abanico .hero-beam,
  .hero.hero-clean.hero-animated.hero-abanico .hero-particles span {
    animation: none !important;
  }

  .hero.hero-clean.hero-animated.hero-abanico .hero-bg-spline.hero-bg-css-ambient {
    background:
      linear-gradient(90deg, rgba(10, 18, 22, .88) 0%, rgba(10, 18, 22, .74) 42%, rgba(10, 18, 22, .34) 74%, rgba(10, 18, 22, .58) 100%),
      linear-gradient(180deg, rgba(10, 18, 22, .1), rgba(10, 18, 22, .8)),
      url('assets/hero-inicio-contable-1280w.webp') center/cover no-repeat !important;
    transform: scale(1.015) translateZ(0) !important;
  }

  section:not(#inicio):not(.hero) {
    content-visibility: auto;
    contain-intrinsic-size: auto 600px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg-spline,
  .hero.hero-clean.hero-animated.hero-abanico .hero-bg-spline.hero-bg-css-ambient,
  .hero.hero-clean.hero-animated.hero-abanico .hero-aurora,
  .hero.hero-clean.hero-animated.hero-abanico .hero-ring,
  .hero.hero-clean.hero-animated.hero-abanico .hero-beam,
  .hero.hero-clean.hero-animated.hero-abanico .hero-particles span {
    animation: none !important;
    transition: none !important;
  }
}

/* ---------- STUDENT ACCOUNTANT SIMULATORS SECTION ---------- */
.student-accountant-simulators {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(15, 157, 163, .06), transparent 34%),
    linear-gradient(180deg, #f9fbfa 0%, #f3f7f5 100%);
}

.student-accountant-simulators::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, .72), rgba(255, 255, 255, .36));
  pointer-events: none;
}

.student-simulators-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 420px);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: 1.4rem;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(10, 22, 40, .08);
  box-shadow: 0 18px 48px rgba(10, 22, 40, .07);
}

.student-simulators-copy {
  padding: .2rem;
}

.student-simulators-copy h2 {
  max-width: 620px;
  margin: .65rem 0 0;
  color: var(--navy);
  font-family: var(--ff-display);
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: 0;
}

.student-simulators-copy p {
  max-width: 700px;
  margin: .9rem 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.student-simulators-actions {
  display: flex;
  gap: .85rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.student-simulators-card {
  display: grid;
  gap: 1rem;
  padding: clamp(1.1rem, 2.6vw, 1.55rem);
  border-radius: 1.15rem;
  background:
    linear-gradient(135deg, rgba(10, 22, 40, .96), rgba(19, 81, 76, .94));
  color: var(--white);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 16px 34px rgba(10, 22, 40, .12);
}

.student-simulator-status {
  display: inline-flex;
  width: fit-content;
  padding: .36rem .7rem;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  color: #b9edf0;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 800;
}

.student-simulators-card h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  line-height: 1.2;
}

.student-simulators-card p {
  margin: 0;
  color: rgba(255,255,255,.74);
  font-size: .95rem;
  line-height: 1.6;
}

.student-simulators-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: .55rem;
}

.student-simulators-steps span {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: flex-start;
  gap: .4rem;
  padding: .65rem .8rem;
  border-radius: .85rem;
  background: rgba(255,255,255,.1);
  color: #f5fbfa;
  font-size: .78rem;
  font-weight: 800;
}

@media (max-width: 980px) {
  .student-simulators-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .student-simulators-shell {
    padding: 1rem;
    border-radius: 1.35rem;
  }

  .student-simulators-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .student-simulators-steps span {
    min-height: 54px;
  }
}
