:root {
  --navy-950: #00006a;
  --navy-900: #11118b;
  --navy-800: #24248f;
  --navy-700: #4b4bb0;
  --gold-500: #FF0000;
  --gold-400: #ff5f52;
  --sand-100: #fff7f5;
  --sand-200: #f4d3ce;
  --white: #ffffff;
  --ink-900: #111111;
  --ink-700: #383848;
  --ink-500: #6a6a78;
  --line: rgba(0, 0, 106, 0.12);
  --line-strong: rgba(0, 0, 106, 0.18);
  --shadow-lg: 0 28px 60px rgba(0, 0, 106, 0.18);
  --shadow-md: 0 16px 34px rgba(0, 0, 106, 0.1);
  --shadow-card: 0 22px 44px rgba(0, 0, 106, 0.12), 0 8px 18px rgba(255, 0, 0, 0.08);
  --shadow-card-hover: 0 30px 58px rgba(0, 0, 106, 0.16), 0 12px 28px rgba(255, 0, 0, 0.1);
  --card-surface: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 247, 245, 0.95) 100%);
  --card-surface-cool: linear-gradient(155deg, rgba(255, 255, 255, 0.99) 0%, rgba(0, 0, 106, 0.08) 100%);
  --card-surface-warm: linear-gradient(155deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 0, 0, 0.17) 100%);
  --font-body: "Montserrat", "Segoe UI", sans-serif;
  --font-brand: "Baloo 2", "Trebuchet MS", sans-serif;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1120px, calc(100% - 2rem));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-900);
  background:
    radial-gradient(circle at top left, rgba(255, 0, 0, 0.16), transparent 24%),
    radial-gradient(circle at right 18%, rgba(0, 0, 106, 0.08), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #fff9f8 55%, #f7f7ff 100%);
  line-height: 1.6;
  padding-bottom: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.section-shell {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(255, 0, 0, 0.12);
}

.topbar {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.75rem 1rem;
  background: #FF0000;
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 800;
}

.topbar p {
  margin: 0;
}

.nav-shell {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  z-index: 35;
}

.brand__logo {
  height: 3.8rem;
  width: auto;
  object-fit: contain;
  transform: translateY(7px);
  transition: height 0.3s ease;
}

.brand__name {
  height: 3.5rem;
  width: auto;
  object-fit: contain;
  transition: height 0.3s ease;
}

/* Toggle Hamburger Button */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 35;
}

.nav-toggle__bar {
  width: 100%;
  height: 3px;
  background-color: var(--navy-950);
  border-radius: 999px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    background-color 0.3s ease;
}

/* X Animation when active */
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
  background-color: var(--gold-500);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
  background-color: var(--gold-500);
}

/* Mobile Dropdown Menu Container */
.nav-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 0, 0, 0.12);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 1.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 30;
}

.nav-menu--open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 0.75rem;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  width: 100%;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  color: var(--navy-950);
  font-size: 1.05rem;
  font-weight: 700;
  background: rgba(0, 0, 106, 0.04);
  transition: background 180ms ease, transform 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: rgba(0, 0, 106, 0.08);
  transform: translateY(-1px);
}

.nav-tools {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 1.2rem;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 106, 0.12);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 24px rgba(0, 0, 106, 0.08);
}

.lang-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.7rem;
  min-height: 2.3rem;
  padding: 0 0.8rem;
  border-radius: 999px;
  color: var(--navy-900);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.lang-pill:hover,
.lang-pill:focus-visible {
  background: rgba(0, 0, 106, 0.08);
  transform: translateY(-1px);
}

.lang-pill--active {
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
  color: var(--white);
}

.btn,
.carousel-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn {
  border: 0;
  padding: 0.95rem 1.35rem;
  background: #FF0000;
  color: var(--white);
  font-size: 0.98rem;
  text-align: center;
  box-shadow: 0 16px 28px rgba(255, 0, 0, 0.24);
}

.btn:hover,
.btn:focus-visible,
.carousel-btn:hover,
.carousel-btn:focus-visible {
  transform: translateY(-2px);
}

.btn:hover,
.btn:focus-visible {
  box-shadow: 0 22px 34px rgba(255, 0, 0, 0.3);
}

.btn:focus-visible,
.floating-whatsapp:focus-visible,
.lang-pill:focus-visible,
.mobile-sticky a:focus-visible,
.faq-item summary:focus-visible,
.main-nav a:focus-visible,
.carousel-btn:focus-visible {
  outline: 3px solid rgba(255, 0, 0, 0.35);
  outline-offset: 4px;
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--navy-950);
  border: 1px solid rgba(0, 0, 106, 0.16);
  box-shadow: none;
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 12px 24px rgba(0, 0, 106, 0.08);
}

.btn--small {
  padding: 0.8rem 1rem;
  font-size: 0.92rem;
}

.btn--large {
  padding: 1rem 1.5rem;
}

.btn--block {
  width: 100%;
}

.badge,
.quote-card__tag,
.video-card__eyebrow,
.plan-card__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.badge--soft,
.quote-card__tag,
.video-card__eyebrow,
.plan-card__badge {
  background: rgba(255, 0, 0, 0.14);
  color: var(--navy-950);
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--gold-500);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 800;
}

.section {
  padding: 5.5rem 0;
}

.section--tint {
  background:
    radial-gradient(circle at top left, rgba(255, 0, 0, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(255, 247, 245, 0.96), rgba(255, 255, 255, 0.78)),
    rgba(244, 211, 206, 0.36);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.6rem;
}

.section-heading--with-mascot {
  display: grid;
  gap: 1.25rem;
  max-width: 100%;
  align-items: center;
}

.section-heading__mascot {
  display: grid;
  place-items: center;
  margin: 0;
}

.section-heading__mascot img {
  width: min(58vw, 14rem);
  filter: drop-shadow(0 20px 28px rgba(0, 0, 106, 0.16));
}

.section-heading--centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2,
.hero h1,
.closing__copy h2 {
  margin: 0 0 1rem;
  font-family: var(--font-body);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.section-heading h2 {
  font-size: clamp(2.1rem, 5vw, 3.35rem);
}

.section-heading p {
  margin: 0;
  color: var(--ink-700);
  font-size: 1.04rem;
}

.section-note {
  margin: 1.5rem 0 0;
  color: var(--ink-500);
}

.section-note--intro {
  margin: 0 0 1.5rem;
  font-size: 1rem;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 5rem;
  background-color: #fff7f5;
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(255, 247, 245, 0.04) 48%, rgba(255, 247, 245, 0.72) 76%, rgba(255, 247, 245, 0.95) 100%),
    linear-gradient(90deg, rgba(255, 247, 245, 0.62) 0%, rgba(255, 247, 245, 0.32) 38%, rgba(255, 247, 245, 0) 68%),
    url('assets/Fondo.jpg');
  background-position: center, left center, center center;
  background-size: cover, cover, cover;
  background-repeat: no-repeat;
  color: var(--white);
}

.hero:not(.hero--compact) {
  display: flex;
  align-items: flex-end;
  min-height: clamp(52rem, 86vh, 56rem);
}

.hero--compact {
  padding: 4.4rem 0 4.8rem;
  background:
    linear-gradient(135deg, rgba(0, 0, 106, 0.96) 0%, rgba(0, 0, 106, 0.9) 48%, rgba(255, 0, 0, 0.88) 100%);
}

.hero--compact .hero__content {
  max-width: 1000px;
}

.hero.hero--compact h1 {
  max-width: 100%;
  font-size: clamp(2.8rem, 8vw, 4.7rem);
}

.hero--compact .hero__lead {
  max-width: 720px;
}

.hero--compact .hero__content .eyebrow,
.hero.hero--compact h1,
.hero--compact .hero__lead {
  color: var(--white);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero::before {
  inset: -2.5rem auto auto -5rem;
  width: 32rem;
  height: 9.5rem;
  background: rgba(109, 109, 197, 0.38);
  transform: rotate(8deg);
}

.hero::after {
  inset: auto -6rem -2.5rem auto;
  width: 30rem;
  height: 10rem;
  background: rgba(255, 0, 0, 0.22);
  transform: rotate(-10deg);
}

.hero__layout,
.social-proof,
.closing__layout,
.contact-layout,
.about-layout {
  display: grid;
  gap: 1.4rem;
}

.hero__layout {
  align-items: center;
}

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

.hero:not(.hero--compact) .hero__content {
  max-width: min(32rem, 100%);
  margin-top: 0;
}

.hero__content--align-right {
  margin-left: auto;
  text-align: right;
}

.hero__content--align-right .eyebrow,
.hero__content--align-right .hero__lead,
.hero__content--align-right .hero__support {
  margin-left: auto;
}

.hero__content--align-right .hero__actions {
  align-items: flex-end;
}

.hero__content--align-right .trust-strip {
  justify-items: end;
}

.hero__content--align-right .trust-strip li {
  padding-left: 0;
  padding-right: 1.5rem;
  text-align: right;
}

.hero__content--align-right .trust-strip li::before {
  left: auto;
  right: 0;
}

.hero__content .eyebrow {
  color: var(--navy-900);
  /*margin-bottom: 3.5rem;*/
}

.hero h1 {
  margin-bottom: 1.15rem;
  font-size: clamp(2.2rem, 6vw, 4rem);
  max-width: 100%;
  color: var(--navy-950);
}

.hero:not(.hero--compact) h1 {
  font-size: clamp(2.2rem, 4.6vw, 3.35rem);
  letter-spacing: 0;
  text-shadow: 0 2px 18px rgba(255, 255, 255, 0.78);
}

.hero:not(.hero--compact) .hero-highlight--soft {
  color: var(--navy-900);
  text-shadow: 0 2px 18px rgba(255, 255, 255, 0.8);
}

.hero__brand-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1rem;
}

.hero-flag,
.hero-route-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 2.9rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.hero-flag {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}

.hero-route-pill {
  background: rgba(255, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #ffe3df;
  box-shadow: 0 16px 28px rgba(255, 0, 0, 0.16);
}

.hero-flag__icon {
  position: relative;
  width: 1.45rem;
  height: 1rem;
  border-radius: 0.24rem;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.18);
}

.hero-flag--mx .hero-flag__icon {
  background: linear-gradient(90deg, #006847 0 33.33%, #ffffff 33.33% 66.66%, #ce1126 66.66% 100%);
}

.hero-flag--us .hero-flag__icon {
  background: repeating-linear-gradient(180deg, #b22234 0 11%, #ffffff 11% 22%);
}

.hero-flag--us .hero-flag__icon::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0.62rem;
  height: 0.58rem;
  background: #3c3b6e;
  border-bottom-right-radius: 0.16rem;
}

.hero-highlight {
  display: inline;
  color: var(--gold-500);
  font-weight: 900;
  text-shadow: 0 0 32px rgba(255, 200, 50, 0.55);
}

.hero-highlight--soft {
  color: #ffd5d0;
  text-shadow: 0 0 24px rgba(255, 180, 160, 0.5);
}

.highlight-red {
  color: var(--gold-500);
}

/* ── Flag background decorations ─────────────────────────────── */
.hero__flag-deco {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 13rem;
  background-size: cover;
  background-repeat: repeat;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  opacity: 0.12;
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
}

.hero__flag-deco--us {
  left: 0;
  background-image: url('assets/us-flags-bg.png');
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
}

.hero__flag-deco--mx {
  right: 0;
  background-image: url('assets/mx-flags-bg.png');
  mask-image: linear-gradient(to left, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
}

.hero__wa-btn {
  margin-bottom: 0.2rem;
}

.hero__lead {
  margin: 0 0 1rem;
  max-width: 620px;
  font-size: clamp(1.1rem, 2.8vw, 1.35rem);
  color: rgba(255, 255, 255, 0.9);
}

.hero:not(.hero--compact) .hero__lead,
.hero:not(.hero--compact) .hero__brand-note {
  color: rgba(0, 0, 106, 0.86);
  text-shadow: 0 1px 12px rgba(255, 255, 255, 0.72);
}

.hero__support {
  margin: 0 0 1.75rem;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.76);
}

.hero__brand-note {
  margin: 1rem 0 0;
  max-width: 32rem;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
}

.hero__actions,
.closing-card__actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.hero .btn--ghost,
.closing-card .btn--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.22);
}

.trust-strip,
.plan-card__list,
.check-list,
.cross-list,
.site-footer__list {
  list-style: none;
  padding: 0;
}

.trust-strip {
  display: grid;
  gap: 0.65rem;
  margin: 0;
}

.trust-strip li,
.plan-card__list li,
.check-list li,
.cross-list li,
.site-footer__list li {
  position: relative;
  padding-left: 1.5rem;
}

.trust-strip li {
  color: rgba(255, 255, 255, 0.78);
}

.trust-strip li::before,
.site-footer__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd4ce, var(--gold-500));
}

.hero-art {
  display: grid;
  gap: 1rem;
}

.hero-showcase {
  display: grid;
  gap: 1.15rem;
}

.hero-showcase__frame {
  margin: 0;
  padding: 1.15rem;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.18), rgba(255, 0, 0, 0.12));
}

.hero-showcase__image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.16);
}

.hero-showcase__cards {
  display: grid;
  gap: 1rem;
  align-items: stretch;
}

.hero-note-card h3,
.hero-mini-stat strong {
  margin: 0 0 0.7rem;
}

.hero-note-card h3 {
  font-size: 1.2rem;
  line-height: 1.3;
}

.hero-note-card p,
.hero-mini-stat p {
  margin: 0;
  color: var(--ink-700);
}

.hero-service-list {
  list-style: none;
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
}

.hero-service-list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--ink-700);
  font-weight: 600;
}

.hero-service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.98), rgba(0, 0, 106, 0.7));
}

.hero-mini-stat {
  display: grid;
  align-content: center;
}

.hero-mini-stat strong {
  font-size: 1.15rem;
  color: var(--navy-950);
}

.hero-mini-stat__route {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.95rem;
  color: var(--navy-700);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-mini-stat__arrow {
  color: var(--gold-500);
  font-size: 1rem;
}

.hero-art__photo,
.hero-art__mini,
.info-card,
.plan-card,
.timeline-step,
.trust-panel,
.institutional-card,
.video-card,
.quote-card,
.story-card,
.team-card,
.contact-form,
.closing-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-card);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.plan-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.plan-card .btn {
  margin-top: auto;
}

.hero-art__photo,
.hero-art__mini {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow-lg);
}

.info-card,
.quote-card {
  background: var(--card-surface);
}

.plan-card,
.video-card {
  background: var(--card-surface-warm);
}

.timeline-step,
.trust-panel,
.institutional-card,
.story-card,
.team-card,
.contact-form {
  background: var(--card-surface-cool);
}

.info-card::before,
.plan-card::before,
.timeline-step::before,
.trust-panel::before,
.institutional-card::before,
.video-card::before,
.quote-card::before,
.story-card::before,
.team-card::before,
.contact-form::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 0, 0, 0.2), transparent 34%),
    radial-gradient(circle at bottom left, rgba(0, 0, 106, 0.08), transparent 38%);
  opacity: 0.9;
  transition: transform 220ms ease, opacity 220ms ease;
  z-index: -2;
}

.info-card::after,
.plan-card::after,
.timeline-step::after,
.trust-panel::after,
.institutional-card::after,
.video-card::after,
.quote-card::after,
.story-card::after,
.team-card::after,
.contact-form::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 1.25rem;
  right: 1.25rem;
  height: 0.28rem;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, rgba(255, 0, 0, 0.9), rgba(0, 0, 106, 0.42));
  transition: left 220ms ease, right 220ms ease, height 220ms ease, background 220ms ease;
  z-index: -1;
}

.hero-art__photo::before,
.hero-art__mini::before,
.hero-art__photo::after,
.hero-art__mini::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-art__photo::before,
.hero-art__mini::before {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 28%),
    radial-gradient(circle at bottom left, rgba(255, 0, 0, 0.18), transparent 30%);
}

.hero-art__photo::after,
.hero-art__mini::after {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: inherit;
}

.hero-art__family {
  position: relative;
  display: grid;
  place-items: end center;
  min-height: 240px;
  padding-top: 2rem;
}

.hero-art__heart {
  position: absolute;
  top: 1.4rem;
  left: 50%;
  width: 2.6rem;
  height: 2.6rem;
  background: linear-gradient(135deg, #ffcbc4, var(--gold-500));
  transform: translateX(-50%) rotate(-45deg);
  border-radius: 0.35rem 0.35rem 0 0;
  box-shadow: 0 12px 22px rgba(255, 0, 0, 0.34);
}

.hero-art__heart::before,
.hero-art__heart::after {
  content: "";
  position: absolute;
  width: 2.6rem;
  height: 2.6rem;
  background: inherit;
  border-radius: 50%;
}

.hero-art__heart::before {
  top: -1.3rem;
  left: 0;
}

.hero-art__heart::after {
  top: 0;
  left: 1.3rem;
}

.hero-art__person {
  position: relative;
  display: block;
  width: 7.4rem;
  height: 10.5rem;
  border-radius: 4rem 4rem 1.5rem 1.5rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 212, 206, 0.42));
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-art__person::before {
  content: "";
  position: absolute;
  top: -3rem;
  left: 50%;
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffe6df, #ffc4ba);
  transform: translateX(-50%);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.12);
}

.hero-art__person--left {
  margin-right: -1.1rem;
}

.hero-art__person--right {
  margin-left: -1.1rem;
  margin-top: -8.2rem;
}

.hero-art__caption,
.hero-art__label,
.route-line span,
.passport-chips span {
  color: rgba(255, 255, 255, 0.92);
}

.hero-art__caption {
  margin: 1rem 0 0;
  font-size: 0.96rem;
}

.hero-art__label {
  margin: 0 0 0.75rem;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.route-line {
  display: grid;
  gap: 0.8rem;
}

.route-line__track {
  position: relative;
  height: 0.5rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 203, 196, 0.32), rgba(255, 255, 255, 0.95), rgba(255, 203, 196, 0.32));
}

.route-line__track::after {
  content: "";
  position: absolute;
  right: 18%;
  top: 50%;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--gold-500);
  border: 2px solid rgba(255, 255, 255, 0.9);
  transform: translateY(-50%);
}

.passport-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.passport-chips span {
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.92rem;
  font-weight: 700;
}

.support-grid,
.pricing-grid,
.team-grid {
  display: grid;
  gap: 1rem;
}

.journey-layout,
.stats-grid,
.about-intro,
.team-stack {
  display: grid;
  gap: 1rem;
}

.journey-layout {
  align-items: start;
}

.compact-card {
  min-height: 100%;
}

.card-number {
  display: inline-grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: rgba(255, 0, 0, 0.14);
  color: var(--navy-950);
  font-size: 0.8rem;
  font-weight: 800;
}

.info-card h3,
.plan-card__name,
.timeline-step h3,
.trust-panel h3,
.institutional-card h3,
.video-card h3,
.quote-card p,
.story-card h3,
.team-card h3,
.closing-card h3 {
  margin: 0 0 0.7rem;
}

.info-card h3,
.timeline-step h3,
.trust-panel h3,
.institutional-card h3,
.video-card h3,
.story-card h3,
.team-card h3,
.closing-card h3 {
  font-size: 1.18rem;
  line-height: 1.3;
}

.info-card p,
.timeline-step p,
.trust-panel p,
.institutional-card p,
.video-card p,
.story-card p,
.team-card p,
.contact-copy__note,
.contact-form__note,
.quote-card footer,
.section-note,
.field label,
.field input,
.field select {
  color: var(--ink-700);
}

.timeline {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.journey-copy h3 {
  margin: 0.9rem 0 0.8rem;
  font-size: clamp(1.45rem, 3.3vw, 2.25rem);
  line-height: 1.08;
}

.journey-copy>p {
  margin: 0;
}

.journey-steps {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.4rem;
}

.journey-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 1rem 1.05rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(0, 0, 106, 0.1);
}

.journey-step__number {
  display: inline-grid;
  place-items: center;
  min-width: 3rem;
  height: 3rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.14), rgba(0, 0, 106, 0.14));
  color: var(--navy-950);
  font-size: 0.9rem;
  font-weight: 800;
}

.journey-step h4 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  color: var(--ink-900);
}

.journey-step p,
.journey-note {
  margin: 0;
  color: var(--ink-700);
}

.journey-note {
  margin-top: 1rem;
  font-size: 0.94rem;
  color: var(--ink-500);
}

.journey-visual {
  margin: 0;
  padding: 1rem;
}

.journey-visual__image {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
}

.reunion-preview {
  position: relative;
  display: grid;
  gap: clamp(1rem, 2.5vw, 1.4rem);
  width: 100%;
  margin: 0 auto;
}

.reunion-preview__panel {
  overflow: hidden;
  display: grid;
  gap: clamp(1rem, 3vw, 1.6rem);
  align-items: start;
  padding: clamp(1rem, 3vw, 1.4rem);
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  background: var(--card-surface);
  box-shadow: var(--shadow-card);
}

.reunion-preview__copy p {
  margin: 0;
  color: var(--ink-700);
  font-size: clamp(0.98rem, 2.4vw, 1.18rem);
  line-height: 1.55;
}

.reunion-preview__copy {
  align-self: center;
}

.reunion-preview__label {
  margin-bottom: 0.35rem !important;
  color: var(--navy-950) !important;
  font-size: clamp(1.35rem, 5vw, 2.35rem) !important;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.05;
}

.reunion-preview__media {
  position: relative;
  overflow: hidden;
  height: clamp(14rem, 62vw, 23rem);
  margin: 0;
  border-radius: 18px;
  background: rgba(0, 0, 106, 0.06);
}

.reunion-preview__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.reunion-preview__media--mascot {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 0, 0, 0.12), transparent 38%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.96), rgba(0, 0, 106, 0.06));
}

.reunion-preview__media--mascot img {
  width: min(82%, 18rem);
  height: min(92%, 22rem);
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 106, 0.16));
}

.reunion-preview__steps {
  position: relative;
  counter-reset: reunion-step;
  display: grid;
  gap: 0.95rem;
  margin: 0;
  padding: clamp(0.45rem, 2vw, 0.9rem) 0 clamp(0.45rem, 2vw, 0.9rem) 0.35rem;
}

.reunion-preview__steps::before {
  content: "";
  position: absolute;
  top: 0.75rem;
  bottom: 0.75rem;
  left: 1.25rem;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 0, 0, 0.34), rgba(0, 0, 106, 0.28), rgba(255, 0, 0, 0.34));
}

.reunion-preview__step {
  position: relative;
  counter-increment: reunion-step;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  min-width: 0;
  padding: clamp(0.9rem, 2.3vw, 1.15rem);
  border: 1px solid rgba(0, 0, 106, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 28px rgba(0, 0, 106, 0.08);
}

.reunion-preview__icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 2px solid rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-500), var(--navy-950));
  box-shadow: 0 10px 22px rgba(0, 0, 106, 0.16), 0 6px 16px rgba(255, 0, 0, 0.14);
}

.reunion-preview__icon::before {
  content: counter(reunion-step);
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1;
}

.reunion-preview__step h3 {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(1.08rem, 2.8vw, 1.28rem);
  line-height: 1.25;
}

.reunion-preview__step p {
  margin: 0.35rem 0 0;
  color: var(--ink-700);
  font-size: clamp(0.94rem, 2.2vw, 1rem);
  line-height: 1.5;
}

.timeline-step {
  padding-left: 4rem;
}

.timeline-step__number {
  position: absolute;
  left: 1.2rem;
  top: 1.35rem;
  display: grid;
  place-items: center;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  color: var(--white);
  font-weight: 800;
}

.plan-card__name {
  font-weight: 800;
  font-size: 1.18rem;
}

.plan-card__price {
  margin: 0;
  font-family: var(--font-brand);
  font-size: 3rem;
  line-height: 1;
  color: var(--navy-950);
}

.plan-card__ideal {
  margin: 0.7rem 0 1.2rem;
  color: var(--ink-700);
}

.plan-card__list,
.check-list,
.cross-list,
.site-footer__list {
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.plan-card__list {
  margin-bottom: 1.4rem;
  flex: 1 1 auto;
}

.check-list,
.cross-list {
  margin-top: 1rem;
}

.plan-card__list li,
.check-list li,
.cross-list li,
.site-footer__list li {
  color: var(--ink-700);
}

.plan-card__list li::before,
.check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--navy-700);
  font-weight: 800;
}

.cross-list li::before {
  content: "\2022";
  position: absolute;
  left: 0.15rem;
  top: -0.02rem;
  color: var(--gold-500);
  font-size: 1.2rem;
}

.plan-card--featured {
  background: linear-gradient(180deg, #11118b 0%, #00006a 100%);
  border-color: rgba(255, 0, 0, 0.16);
  color: var(--white);
  transform: translateY(-0.15rem);
}

.plan-card--featured .plan-card__badge {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
}

.plan-card--featured .plan-card__name,
.plan-card--featured .plan-card__price {
  color: var(--white);
}

.plan-card--featured .plan-card__ideal,
.plan-card--featured .plan-card__list li {
  color: rgba(255, 255, 255, 0.82);
}

.plan-card--featured .plan-card__list li::before {
  color: var(--gold-400);
}

.section--numbers {
  background:
    radial-gradient(circle at top center, rgba(0, 0, 106, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fff8f6 100%);
}

.stat-card {
  text-align: center;
}

.stat-card__value {
  margin: 0 0 0.8rem;
  font-family: var(--font-brand);
  font-size: clamp(3.8rem, 10vw, 5.8rem);
  line-height: 0.9;
  color: var(--navy-950);
}

.stat-card__suffix {
  font-size: 0.5em;
  color: var(--gold-500);
  vertical-align: top;
}

.stat-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.08rem;
}

.stat-card p:last-child {
  margin: 0;
  color: var(--ink-700);
}

.faq-list {
  display: grid;
  gap: 0.9rem;
  padding-right: clamp(2rem, 8vw, 4.8rem);
}

.faq-item {
  position: relative;
  overflow: visible;
  isolation: isolate;
  background: var(--card-surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  padding: 0 1.2rem;
  box-shadow: var(--shadow-card);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.faq-item[open] {
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 247, 245, 0.96) 100%);
  border-color: rgba(255, 0, 0, 0.28);
  box-shadow: 0 24px 46px rgba(0, 0, 106, 0.14), 0 10px 24px rgba(255, 0, 0, 0.12);
}

.faq-item::before {
  display: none;
}

.faq-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 1.2rem;
  right: 1.2rem;
  height: 0.24rem;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, rgba(255, 0, 0, 0.82), rgba(0, 0, 106, 0.38));
  transition: left 220ms ease, right 220ms ease, height 220ms ease, background 220ms ease;
  z-index: -1;
}

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
  min-height: 4rem;
  padding: 1.15rem 3.35rem 1.15rem 0;
  font-weight: 800;
  color: var(--ink-900);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 0;
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.84);
  color: var(--navy-700);
  box-shadow: 0 8px 18px rgba(0, 0, 106, 0.1);
  transform: translateY(-50%);
  z-index: 2;
}

.faq-item summary::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -4.85rem;
  width: 4.9rem;
  height: 7.4rem;
  background: url("assets/corazin-asomandose.png") center / contain no-repeat;
  opacity: 0;
  pointer-events: none;
  filter: drop-shadow(0 14px 18px rgba(255, 0, 0, 0.16));
  transform: translateY(-50%) translateX(0.35rem) scale(0.88);
  transition: opacity 220ms ease, right 220ms ease, transform 220ms ease;
  z-index: 1;
}

.faq-item[open] summary::after {
  content: "-";
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.95), rgba(0, 0, 106, 0.9));
  color: var(--white);
}

.faq-item[open] summary::before {
  right: -5rem;
  opacity: 1;
  transform: translateY(calc(-50% + 22px)) scale(1);
}

.faq-item p {
  margin: 0 0 1.2rem;
  color: var(--ink-700);
}

.trust-layout {
  display: grid;
  gap: 1rem;
}

.trust-panel--contrast {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.99), rgba(255, 0, 0, 0.18) 62%, rgba(0, 0, 106, 0.08) 100%);
}

.institutional-card {
  margin-top: 1rem;
}

.institutional-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.2rem;
}

.institutional-card__chips span {
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 0, 0, 0.12);
  color: var(--navy-950);
  font-weight: 700;
  font-size: 0.92rem;
}

.social-proof {
  margin-top: 1.3rem;
}

.video-card {
  display: grid;
  gap: 1rem;
  align-items: center;
}

.video-card__play {
  display: grid;
  place-items: center;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: var(--white);
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
}

.video-card__note {
  margin-top: 0.8rem;
  color: var(--ink-500);
  font-size: 0.94rem;
}

.testimonial-shell {
  display: grid;
  gap: 1rem;
}

.testimonial-shell__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.carousel-controls {
  display: flex;
  gap: 0.6rem;
}

.review-carousel {
  display: grid;
  gap: 1rem;
}

.review-carousel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.review-badge {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.55rem 0.7rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 0, 106, 0.08);
}

.review-badge__mark {
  width: 2.9rem;
  height: 2.9rem;
  flex: 0 0 2.9rem;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 106, 0.1));
}

.review-badge strong,
.team-profile__index {
  display: block;
}

.review-badge strong {
  color: var(--ink-900);
}

.review-badge p {
  margin: 0.15rem 0 0;
  color: var(--ink-500);
}

.carousel-btn {
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(0, 0, 106, 0.14);
  background: rgba(255, 255, 255, 0.94);
  color: var(--navy-950);
  box-shadow: 0 10px 22px rgba(0, 0, 106, 0.08);
}

.carousel-track {
  position: relative;
}

.quote-card {
  margin: 0;
}

.quote-card p {
  font-size: 1.18rem;
  color: var(--ink-900);
  font-weight: 700;
  line-height: 1.45;
}

.quote-card footer {
  margin-top: 1rem;
  color: var(--ink-500);
  font-size: 0.94rem;
}

.review-card {
  margin: 0;
}

.review-card__stars {
  margin-bottom: 0.8rem;
  color: #f4b400;
  font-size: 1.08rem;
  letter-spacing: 0.18em;
}

.story-card,
.team-card {
  min-height: 100%;
}

.about-intro {
  align-items: center;
}

.about-intro__figure {
  margin: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.about-intro__image {
  width: min(320px, 100%);
  filter: drop-shadow(0 20px 34px rgba(0, 0, 106, 0.14));
}

.speech-bubble {
  position: relative;
  margin-top: 1rem;
  padding: 1.25rem 1.35rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(0, 0, 106, 0.12);
}

.speech-bubble::after {
  content: "";
  position: absolute;
  left: 2.1rem;
  bottom: -0.9rem;
  width: 1.2rem;
  height: 1.2rem;
  background: inherit;
  border-right: inherit;
  border-bottom: inherit;
  transform: rotate(45deg);
}

.speech-bubble h3 {
  margin: 0 0 0.6rem;
  font-size: 1.55rem;
}

.speech-bubble p {
  margin: 0;
  color: var(--ink-700);
}

.speech-bubble p+p {
  margin-top: 0.75rem;
}

.team-grid {
  margin-top: 1rem;
}

.team-stack {
  gap: 1rem;
}

.team-profile {
  display: grid;
  gap: 1rem;
  align-items: center;
}

.team-profile__index {
  margin: 0 0 0.65rem;
  font-family: var(--font-brand);
  color: var(--gold-500);
  font-size: 1.18rem;
}

.team-profile__content h3 {
  margin: 0 0 0.3rem;
  font-size: 1.45rem;
}

.team-profile__content p {
  margin: 0;
}

.team-member {
  padding: 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px dashed rgba(0, 0, 106, 0.14);
}

.team-member__photo {
  display: grid;
  place-items: center;
  min-height: 8rem;
  margin-bottom: 0.9rem;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 0, 0, 0.18), rgba(0, 0, 106, 0.1)),
    rgba(255, 255, 255, 0.8);
  color: var(--navy-950);
  font-weight: 800;
  text-align: center;
}

.team-profile .team-member__photo {
  min-height: 13rem;
  margin-bottom: 0;
  font-size: 1.05rem;
}

.team-member strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--ink-900);
}

.team-member__role {
  margin: 0 0 0.35rem;
  color: var(--navy-700);
  font-weight: 700;
}

.contact-copy p:not(.eyebrow),
.story-card p,
.team-card p {
  margin: 0;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field label {
  font-weight: 700;
  color: var(--ink-900);
}

.field input,
.field select {
  width: 100%;
  border: 1px solid rgba(19, 32, 51, 0.12);
  border-radius: 16px;
  background: #fffdfa;
  padding: 0.95rem 1rem;
  color: var(--ink-900);
}

.field input::placeholder {
  color: #8c96a8;
}

.field input:focus,
.field select:focus {
  outline: none;
  border-color: rgba(0, 0, 106, 0.38);
  box-shadow: 0 0 0 4px rgba(255, 0, 0, 0.14);
}

.contact-form__note {
  margin: 0;
}

.contact-form__feedback {
  min-height: 1.4rem;
  margin: 0;
  font-size: 0.94rem;
  font-weight: 700;
}

.contact-form__feedback.is-error {
  color: #aa2a20;
}

.contact-form__feedback.is-success {
  color: var(--navy-700);
}

.closing {
  background:
    radial-gradient(circle at left center, rgba(255, 0, 0, 0.16), transparent 25%),
    linear-gradient(180deg, #fffaf9 0%, #fff2ef 100%);
}

.closing__copy h2 {
  font-size: clamp(2.3rem, 6vw, 4rem);
}

.closing__copy p {
  margin: 0 0 1rem;
  color: var(--ink-700);
}

.closing__microcopy {
  color: var(--navy-700);
  font-weight: 700;
}

.closing-card {
  background: linear-gradient(180deg, #11118b 0%, #00006a 100%);
  color: var(--white);
}

.closing-card p {
  color: rgba(255, 255, 255, 0.82);
}

.closing-card .btn {
  margin-bottom: 0;
}

.closing-card__trust {
  margin: 1rem 0 0;
  font-size: 0.94rem;
}

.site-footer {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 2.6rem 0 7rem;
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 0, 0, 0.24), transparent 30%),
    radial-gradient(circle at 92% 10%, rgba(0, 0, 106, 0.2), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #ffffff 42%, #f5f8ff 68%, #fff4f2 100%);
  color: var(--ink-900);
  border-top: 1px solid rgba(0, 0, 106, 0.12);
}

.site-footer__layout {
  display: grid;
  gap: 1.4rem;
  padding-bottom: 1.4rem;
}

.site-footer__brand strong {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--navy-950);
  font-size: 1.08rem;
  line-height: 1.45;
}

.site-footer__brand-images {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.9rem;
}

.site-footer__logo {
  height: 4rem;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 106, 0.1));
}

.site-footer__name {
  height: 2.2rem;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 106, 0.1));
}

.site-footer__eyebrow,
.site-footer__label {
  margin: 0 0 0.8rem;
  color: var(--navy-950);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer__brand p,
.site-footer__column p {
  margin: 0;
}

.site-footer__column {
  padding: 1.15rem 1.2rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(0, 0, 106, 0.1);
  box-shadow: 0 18px 36px rgba(0, 0, 106, 0.08), 0 8px 20px rgba(255, 0, 0, 0.06);
}

.site-footer__list li {
  color: var(--ink-700);
}

.site-footer__list li::before {
  background: linear-gradient(135deg, var(--gold-500), var(--navy-950));
}

.site-footer__actions {
  display: grid;
  gap: 0.75rem;
}

.site-footer__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 106, 0.14);
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, rgba(255, 0, 0, 0.75), rgba(0, 0, 106, 0.72)) border-box;
  color: var(--navy-950);
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(0, 0, 106, 0.08);
  transition: transform 180ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.site-footer__link:hover,
.site-footer__link:focus-visible {
  transform: translateY(-1px);
  background:
    linear-gradient(135deg, rgba(255, 0, 0, 0.96), rgba(0, 0, 106, 0.9)) padding-box,
    linear-gradient(135deg, rgba(255, 0, 0, 0.96), rgba(0, 0, 106, 0.9)) border-box;
  border-color: rgba(255, 0, 0, 0.42);
  color: var(--white);
}

.site-footer__note {
  margin-top: 0.85rem;
  color: var(--ink-700);
  font-size: 0.92rem;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(0, 0, 106, 0.1);
  color: var(--ink-700);
  font-size: 0.9rem;
}

.floating-whatsapp {
  position: fixed;
  right: 1.5rem;
  bottom: 6.5rem;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  padding: 0.35rem;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.88);
  background: linear-gradient(180deg, #ffffff 0%, #effff4 100%);
  box-shadow: 0 16px 34px rgba(18, 140, 126, 0.2), 0 6px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  animation: whatsapp-pulse 2.5s infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 22px 42px rgba(18, 140, 126, 0.24), 0 10px 24px rgba(0, 0, 0, 0.12);
  animation-play-state: paused;
}

.floating-whatsapp__icon {
  width: 86%;
  height: 86%;
  object-fit: contain;
}

.floating-whatsapp::before {
  content: attr(data-tooltip);
  position: absolute;
  right: 120%;
  top: 50%;
  transform: translateY(-50%) translateX(12px);
  background: var(--white);
  color: var(--navy-950);
  padding: 0.65rem 1rem;
  border-radius: 14px;
  font-size: 0.88rem;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(16, 40, 78, 0.08);
}

.floating-whatsapp::after {
  content: "";
  position: absolute;
  right: 110%;
  top: 50%;
  transform: translateY(-50%);
  border-left: 8px solid var(--white);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.floating-whatsapp:hover::before,
.floating-whatsapp:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 16px 34px rgba(18, 140, 126, 0.2), 0 0 0 0 rgba(37, 211, 102, 0.28);
  }

  70% {
    box-shadow: 0 16px 34px rgba(18, 140, 126, 0.2), 0 0 0 18px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 16px 34px rgba(18, 140, 126, 0.2), 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.mobile-sticky {
  position: fixed;
  inset: auto 0 0;
  z-index: 45;
  display: none;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  padding: 0.8rem 1rem calc(0.8rem + env(safe-area-inset-bottom));
  background: rgba(0, 0, 106, 0.94);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-sticky a {
  min-height: 3.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
}

.mobile-sticky__call {
  padding: 0 1rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.mobile-sticky__cta {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--white);
  padding: 0 1.2rem;
}

@media (hover: hover) {

  .hero-art__photo:hover,
  .hero-art__mini:hover,
  .info-card:hover,
  .plan-card:hover,
  .timeline-step:hover,
  .trust-panel:hover,
  .institutional-card:hover,
  .video-card:hover,
  .quote-card:hover,
  .story-card:hover,
  .team-card:hover,
  .contact-form:hover,
  .closing-card:hover,
  .faq-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
  }

  .info-card:hover,
  .plan-card:hover,
  .timeline-step:hover,
  .trust-panel:hover,
  .institutional-card:hover,
  .video-card:hover,
  .quote-card:hover,
  .story-card:hover,
  .team-card:hover,
  .contact-form:hover,
  .faq-item:hover {
    border-color: rgba(0, 0, 106, 0.24);
  }

  .info-card:hover::before,
  .plan-card:hover::before,
  .timeline-step:hover::before,
  .trust-panel:hover::before,
  .institutional-card:hover::before,
  .video-card:hover::before,
  .quote-card:hover::before,
  .story-card:hover::before,
  .team-card:hover::before,
  .contact-form:hover::before,
  .faq-item:hover::before {
    transform: scale(1.03);
    opacity: 1;
  }

  .info-card:hover::after,
  .plan-card:hover::after,
  .timeline-step:hover::after,
  .trust-panel:hover::after,
  .institutional-card:hover::after,
  .video-card:hover::after,
  .quote-card:hover::after,
  .story-card:hover::after,
  .team-card:hover::after,
  .contact-form:hover::after {
    left: 1rem;
    right: 1rem;
    height: 0.42rem;
    background: linear-gradient(90deg, rgba(255, 0, 0, 0.96), rgba(0, 0, 106, 0.58));
  }

  .faq-item:hover::after {
    left: 0.95rem;
    right: 0.95rem;
    height: 0.38rem;
    background: linear-gradient(90deg, rgba(255, 0, 0, 0.94), rgba(0, 0, 106, 0.52));
  }
}

.hero-art__photo:focus-within,
.hero-art__mini:focus-within,
.info-card:focus-within,
.plan-card:focus-within,
.timeline-step:focus-within,
.trust-panel:focus-within,
.institutional-card:focus-within,
.video-card:focus-within,
.quote-card:focus-within,
.story-card:focus-within,
.team-card:focus-within,
.contact-form:focus-within,
.closing-card:focus-within,
.faq-item:focus-within {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

@media (min-width: 720px) {
  body {
    padding-bottom: 0;
  }

  .contact-layout,
  .closing__layout,
  .about-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }

  .hero-showcase__cards,
  .journey-layout,
  .stats-grid,
  .about-intro {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-heading--with-mascot {
    grid-template-columns: minmax(0, 1fr) minmax(10rem, 16rem);
  }

  .section-heading__mascot {
    justify-content: end;
  }

  .section-heading__mascot img {
    width: min(100%, 15rem);
  }

  .support-grid,
  .pricing-grid,
  .team-grid,
  .trust-layout,
  .social-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__actions,
  .closing-card__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .reunion-preview__panel {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.76fr);
  }

  .reunion-preview__panel--image-left {
    grid-template-columns: minmax(220px, 0.76fr) minmax(0, 1fr);
  }

  .reunion-preview__copy {
    padding: 0 clamp(0.2rem, 1vw, 0.8rem);
  }

  .reunion-preview__media {
    height: clamp(17rem, 30vw, 24rem);
  }

  .hero__content--align-right .hero__actions {
    justify-content: flex-end;
  }

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

  .timeline-step:last-child {
    grid-column: 1 / -1;
  }

  .team-profile {
    grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  }

  .team-profile:nth-child(even) .team-profile__visual {
    order: 2;
  }

  .team-profile:nth-child(even) .team-profile__content {
    order: 1;
  }

  .video-card {
    grid-template-columns: auto 1fr;
  }

  .site-footer {
    padding-bottom: 2.5rem;
  }

  .site-footer__layout {
    grid-template-columns: 1.15fr 0.85fr 0.95fr;
    align-items: start;
  }

  .mobile-sticky {
    display: none;
  }
}

@media (min-width: 980px) {
  .nav-shell {
    padding: 1rem 0;
  }

  .brand {
    transform: translateY(1.05rem);
  }

  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-grow: 1;
    margin-left: 2rem;
    padding: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    z-index: auto;
  }

  .main-nav {
    flex-direction: row;
    width: auto;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    gap: 0.55rem;
  }

  .main-nav a {
    width: auto;
    font-size: 0.92rem;
    padding: 0.45rem 0.9rem;
  }

  .nav-tools {
    flex-direction: row;
    width: auto;
    justify-content: flex-end;
    gap: 0.8rem;
  }

  .nav-cta {
    width: auto;
    display: inline-flex;
  }

  .hero {
    padding: 6rem 0 6.5rem;
  }

  .hero:not(.hero--compact) {
    min-height: clamp(52rem, 86vh, 56rem);
  }

  .hero__layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero__content {
    max-width: 100%;
    margin-top: 50px;
  }

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

  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }

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

  .reunion-preview__steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(0.85rem, 1.5vw, 1.15rem);
    padding: 3.35rem 0 0.15rem;
  }

  .reunion-preview__steps::before {
    top: 1.1rem;
    right: calc(12.5% - 1.1rem);
    bottom: auto;
    left: calc(12.5% - 1.1rem);
    width: auto;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 0, 0, 0.34), rgba(0, 0, 106, 0.28), rgba(255, 0, 0, 0.34));
  }

  .reunion-preview__step {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0.85rem;
    padding: 1.2rem 1rem;
    text-align: center;
  }

  .reunion-preview__icon {
    position: absolute;
    top: -3.35rem;
    z-index: 1;
  }

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

  .timeline-step:last-child {
    grid-column: auto;
  }

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

  .floating-whatsapp {
    bottom: 1.4rem;
  }
}

@media (max-width: 719px) {
  .topbar {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    height: 34px;
    overflow: hidden;
    padding: 0;
    font-size: 0.76rem;
    white-space: nowrap;
  }

  .topbar p {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    width: 100%;
    margin: 0;
    flex-shrink: 0;
    animation: topbar-slide 6s infinite ease-in-out;
  }

  .hero {
    background-color: #fff7f5;
  }

  .hero:not(.hero--compact) {
    min-height: clamp(38rem, calc(100svh - 2rem), 44rem);
    padding: 3rem 0 4.5rem;
    background-position: center, left bottom, center top;
    background-size: cover, cover, cover;
  }

  .hero h1,
  .hero.hero--compact h1 {
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(2.05rem, 9.8vw, 3.15rem);
  }

  .hero__brand-row {
    gap: 0.55rem;
  }

  .hero-flag,
  .hero-route-pill {
    min-height: 2.6rem;
    padding: 0.5rem 0.8rem;
    font-size: 0.84rem;
  }

  .hero.hero--compact h1 {
    font-size: clamp(1.95rem, 10.5vw, 3rem);
  }

  .hero__lead,
  .hero__support {
    font-size: 1rem;
  }

  .hero__actions,
  .hero__content--align-right .hero__actions {
    width: 100%;
    align-items: stretch;
  }

  .hero__actions .btn,
  .hero__content--align-right .hero__actions .btn {
    width: 100%;
  }

  .floating-whatsapp {
    right: 1rem;
    bottom: calc(1rem + env(safe-area-inset-bottom));
  }
}

@media (max-width: 480px) {
  .brand__logo {
    height: 3rem;
    transform: translateY(4px);
  }

  .brand__name {
    height: 2.7rem;
  }
}

@keyframes topbar-slide {

  0%,
  28% {
    transform: translateX(0);
  }

  33%,
  61% {
    transform: translateX(-100%);
  }

  66%,
  94% {
    transform: translateX(-200%);
  }

  100% {
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 719px) {
  .hide-on-mobile {
    display: none !important;
  }
}
