/* ══════════════════════════════════════════════
   GLOBAL STYLES — Dr. Kaiser Jr.
   ══════════════════════════════════════════════ */

@import url('fonts.css');
@import url('tokens.css');

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}
body {
  font-family: var(--font-family);
  font-weight: var(--font-weight-book);
  font-size: var(--text-base);
  line-height: 1.75;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--navy-500); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--navy-600); }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Focus ── */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* ── Container ── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

/* ── Section ── */
.section {
  padding: var(--section-py) 0;
  overflow: hidden;
}
.section[id] {
  scroll-margin-top: 140px;
}
.section--alt {
  background: var(--color-surface-alt);
}
.section--navy {
  background: var(--navy-800);
  color: var(--color-text-inverse);
}
.section--dark {
  background: var(--navy-900);
  color: var(--color-text-inverse);
}

/* ── Section Header ── */
.section-header {
  text-align: center;
  margin-bottom: var(--space-16);
}
.section-header--left {
  text-align: left;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-xs);
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-2);
}
.eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--color-accent);
  flex-shrink: 0;
}
.section-header:not(.section-header--left) .eyebrow {
  justify-content: center;
}
.section--navy .eyebrow,
.section--dark .eyebrow {
  color: var(--gold-300);
}
.section-header h2 {
  font-size: var(--text-5xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-heading);
  line-height: 1.25;
  letter-spacing: -0.025em;
}
.section--navy .section-header h2,
.section--dark .section-header h2 {
  color: var(--color-text-inverse);
}
.section-divider {
  width: 40px;
  height: 3px;
  background: var(--color-accent);
  margin: var(--space-4) auto 0;
}
.section-header--left .section-divider {
  margin-left: 0;
}
.section-header p {
  font-size: var(--text-lg);
  color: var(--gray-600);
  max-width: 65ch;
  margin: var(--space-6) auto 0;
  line-height: 1.75;
}
.section--navy .section-header p,
.section--dark .section-header p {
  color: var(--gray-300);
}

/* ── Dark-section global contrast fix ──
   Ensures ALL headings, paragraphs, and accents inside dark/navy sections
   are readable — not only those inside .section-header. */
.section--navy h2,
.section--dark h2 {
  color: #fff;
}
.section--navy h3,
.section--dark h3 {
  color: #fff;
}
.section--navy p,
.section--dark p {
  color: var(--gray-300);
}
.section--navy .text-accent,
.section--dark .text-accent,
.section--navy h2 em,
.section--dark h2 em {
  color: var(--gold-400);
  font-style: normal;
}

/* ── Typography ── */
h1 { font-size: var(--text-6xl); font-weight: var(--font-weight-bold); line-height: 1.1; letter-spacing: -0.02em; color: var(--color-text-heading); }
h2 { font-size: var(--text-5xl); font-weight: var(--font-weight-bold); line-height: 1.25; letter-spacing: -0.015em; color: var(--color-text-heading); }
h3 { font-size: var(--text-4xl); font-weight: var(--font-weight-medium); line-height: 1.25; letter-spacing: -0.01em; color: var(--color-text-heading); }
h4 { font-size: var(--text-3xl); font-weight: var(--font-weight-medium); line-height: 1.25; letter-spacing: -0.01em; color: var(--color-text-heading); }
h5 { font-size: var(--text-2xl); font-weight: var(--font-weight-medium); line-height: 1.25; color: var(--color-text-heading); }
h6 { font-size: var(--text-xl); font-weight: var(--font-weight-medium); line-height: 1.25; color: var(--color-text-heading); }
.text-display { font-size: var(--text-7xl); font-weight: var(--font-weight-light); line-height: 1.1; letter-spacing: -0.025em; }
.text-body-lg { font-size: var(--text-lg); line-height: 1.75; }
.text-caption { font-size: var(--text-sm); letter-spacing: 0.05em; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-family);
  font-weight: var(--font-weight-bold);
  font-size: var(--text-base);
  border-radius: 50px;
  padding: var(--space-3) var(--space-6);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
  line-height: 1.25;
  white-space: nowrap;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s ease;
}
.btn:hover::before {
  left: 100%;
}
.btn:active {
  transform: scale(0.97);
}
.btn--primary {
  background: linear-gradient(135deg, var(--color-accent), var(--gold-600));
  color: #fff;
  box-shadow: 0 4px 20px rgba(181,140,94,.3), 0 1px 3px rgba(181,140,94,.2);
  border: 1px solid rgba(255,255,255,0.1);
}
.btn--primary:hover {
  background: linear-gradient(135deg, var(--gold-600), var(--color-accent));
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(181,140,94,.4), 0 4px 12px rgba(181,140,94,.25);
}
.btn--secondary {
  background: linear-gradient(135deg, var(--color-primary), var(--navy-500));
  color: #fff;
  box-shadow: 0 4px 16px rgba(32,48,85,.2);
  border: 1px solid rgba(255,255,255,0.05);
}
.btn--secondary:hover {
  background: linear-gradient(135deg, var(--navy-500), var(--color-primary));
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(32,48,85,.35);
}
.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
  box-shadow: 0 2px 8px rgba(32,48,85,.06);
}
.btn--outline:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(32,48,85,.15);
}
.btn--outline-white {
  background: rgba(255,255,255,.04);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.25);
  backdrop-filter: blur(4px);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.5);
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(255,255,255,.08);
}
.btn--whatsapp {
  background: linear-gradient(135deg, var(--color-whatsapp), #1DA851);
  color: #fff;
  box-shadow: 0 4px 16px rgba(37,211,102,.25);
}
.btn--whatsapp:hover {
  background: linear-gradient(135deg, #1DA851, var(--color-whatsapp));
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37,211,102,.35);
}
.btn--lg {
  padding: 14px 32px;
  font-size: var(--text-base);
}
.btn--sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
}

/* ── Cards ── */
.card {
  background: #fff;
  border: 1px solid rgba(181,140,94,.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-hover);
  box-shadow: var(--shadow-md);
}
.card:hover {
  box-shadow: var(--shadow-card-hover);
  border-color: var(--dark-border-hover);
  transform: translateY(-6px);
}
.card__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.card__body {
  padding: var(--space-6) var(--space-8);
}
.card__badge {
  display: inline-block;
  background: var(--gold-50);
  color: var(--gold-800);
  font-size: var(--text-xs);
  font-weight: var(--font-weight-medium);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-3);
}
.card__title {
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-heading);
  margin-bottom: var(--space-3);
}
.card__text {
  font-size: var(--text-base);
  color: var(--gray-600);
  line-height: 1.6;
}

/* Card procedimento (border-left) */
.card--procedure {
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}
.card--procedure:hover {
  box-shadow: var(--shadow-md);
  border-left-color: var(--gold-600);
}

/* ── Grid ── */
.grid {
  display: grid;
  gap: var(--space-6);
}
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ── Top Bar ── */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
  background: var(--color-accent);
  height: 52px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}
.top-bar.hidden {
  transform: translateY(-100%);
  opacity: 0;
}
.top-bar__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-bar__left {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.top-bar__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.top-bar__logo img {
  height: 32px;
  width: auto;
  object-fit: contain;
}
.top-bar__separator {
  width: 1px;
  height: 22px;
  background: rgba(255,255,255,.25);
  flex-shrink: 0;
}
.top-bar__item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: var(--font-weight-medium);
  color: #fff;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.top-bar__item svg {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
}
.top-bar__credentials {
  color: rgba(255,255,255,.55);
  cursor: default;
  font-size: 10px;
  letter-spacing: 0.04em;
}
.top-bar__right {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: var(--space-8);
}
.top-bar__lang {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 2.1rem;
}
.top-bar__lang a {
  opacity: .5;
  transition: opacity var(--transition-fast);
  text-decoration: none;
  line-height: 1;
  display: flex;
  align-items: center;
}
.top-bar__lang a:hover,
.top-bar__lang a.active {
  opacity: 1;
}
.top-bar__social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.7);
  transition: background var(--transition-fast), color var(--transition-fast);
}
.top-bar__social:hover {
  background: rgba(255,255,255,.25);
  color: #fff;
}
.top-bar__social svg {
  width: 12px;
  height: 12px;
}
.top-bar__cta.btn--xs {
  padding: 5px 14px;
  font-size: 10px;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  background: var(--navy-800);
  color: #fff;
  border: none;
}
.top-bar__cta.btn--xs:hover {
  background: var(--navy-900);
}
.top-bar__cta.btn--xs svg {
  width: 12px;
  height: 12px;
}
.top-bar__cta.btn--xs svg path {
  fill: var(--color-accent);
}

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 52px;
  left: 0;
  right: 0;
  height: var(--navbar-height);
  z-index: 100;
  transition: all var(--transition-base);
}
.navbar--transparent {
  background: transparent;
}
.navbar--solid {
  background: rgba(14,21,34,.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06), 0 1px 12px rgba(181,140,94,.06);
  top: 0;
  height: 72px;
}
.navbar--solid .navbar__logo img {
  height: 60px;
}
.navbar__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar__logo {
  margin-right: auto;
  padding-top: 24px;
}
.navbar__logo img {
  height: 105px;
  width: auto;
  object-fit: contain;
  transition: height var(--transition-base);
}
.navbar__links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}
.navbar__link {
  font-size: 12px;
  font-weight: var(--font-weight-medium);
  color: rgba(255,255,255,.85);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: color var(--transition-fast);
  position: relative;
  padding: var(--space-2) 0;
  white-space: nowrap;
}
.navbar--solid .navbar__link {
  color: rgba(255,255,255,.7);
}
.navbar__link:hover {
  color: var(--color-accent);
}
.navbar__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--transition-fast);
}
.navbar__link:hover::after {
  width: 100%;
}
.navbar__link.active {
  color: var(--color-accent);
}
.navbar__link.active::after {
  width: 100%;
}
/* Mobile nav */
.navbar__toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.navbar--solid .navbar__toggle {
  color: rgba(255,255,255,.75);
}
.navbar__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy-800);
  z-index: 99;
  padding: var(--space-24) var(--space-6) var(--space-8);
  flex-direction: column;
  gap: var(--space-6);
}
.navbar__mobile.active {
  display: flex;
}
.navbar__mobile a {
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-medium);
  color: #fff;
}

/* ── Navbar Dropdown ── */
.navbar__dropdown {
  position: relative;
}
.navbar__dropdown > .navbar__link {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
/* Ponte invisível entre o link e o submenu para não perder hover */
.navbar__dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 20px;
  background: transparent;
}
.navbar__submenu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 240px;
  background: rgba(14,21,34,.97);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(181,140,94,.12);
  border-radius: 4px;
  padding: var(--space-3) 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
  box-shadow: 0 12px 40px rgba(0,0,0,.4), 0 0 0 1px rgba(181,140,94,.06);
  z-index: 110;
}
.navbar__submenu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-bottom-color: rgba(14,21,34,.97);
}
.navbar__dropdown:hover .navbar__submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.navbar__submenu-link {
  display: block;
  padding: var(--space-3) var(--space-6);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-medium);
  color: rgba(255,255,255,.7);
  letter-spacing: 0.02em;
  text-transform: none;
  transition: color .2s ease, background .2s ease, padding-left .2s ease;
}
.navbar__submenu-link:hover {
  color: var(--color-accent);
  background: rgba(181,140,94,.06);
  padding-left: var(--space-8);
}
.navbar__submenu-link--parent {
  color: #fff !important;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: var(--text-xs);
  padding-top: var(--space-3);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid rgba(181,140,94,0.18);
  margin-bottom: var(--space-2);
}
.navbar__submenu-link--parent:hover {
  color: var(--gold-300) !important;
}

.navbar__mobile-sub-link--parent {
  color: var(--gold-300) !important;
  font-weight: var(--font-weight-bold) !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 13px !important;
  border-bottom: 1px solid rgba(181,140,94,0.18);
  margin-bottom: 4px;
}

/* ── Mobile submenu ── */
.navbar__mobile-group {
  display: flex;
  flex-direction: column;
}
.navbar__mobile-parent {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.navbar__mobile-sub {
  display: none;
  flex-direction: column;
  gap: var(--space-3);
  padding-left: var(--space-6);
  margin-top: var(--space-3);
}
.navbar__mobile-sub.active {
  display: flex;
}
.navbar__mobile-sub a {
  font-size: var(--text-lg) !important;
  color: rgba(255,255,255,.6) !important;
  transition: color .2s ease;
}
.navbar__mobile-sub a:hover {
  color: var(--color-accent) !important;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-900);
}
.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, var(--navy-900) 0%, rgba(14,21,34,.6) 12%, transparent 30%),
    linear-gradient(to bottom, var(--navy-900) 0%, transparent 16%),
    linear-gradient(to right, rgba(14,21,34,.8) 0%, rgba(14,21,34,.4) 50%, transparent 70%);
}
/* Orbs decorativos (degrade espumado) */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.hero__orb--1 {
  width: 700px;
  height: 700px;
  background: rgba(56,84,140,.25);
  top: -200px;
  right: 15%;
  animation: floatOrb 10s ease-in-out infinite;
}
.hero__orb--2 {
  width: 400px;
  height: 400px;
  background: rgba(181,140,94,.12);
  bottom: -100px;
  left: 5%;
  animation: floatOrb 8s ease-in-out 3s infinite;
}
@keyframes floatOrb {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-30px); }
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 180px 60px 80px;
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-xs);
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: var(--space-4);
}
.hero__eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--color-accent);
}
.hero__title {
  font-size: var(--text-6xl);
  font-weight: var(--font-weight-bold);
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: var(--space-6);
  text-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.hero__title em {
  font-style: normal;
  color: var(--gold-300);
  text-shadow: 0 2px 12px rgba(0,0,0,.5), 0 0 40px rgba(0,0,0,.3);
}
.hero__subtitle {
  font-size: var(--text-lg);
  color: var(--gray-300);
  line-height: 1.75;
  margin-bottom: var(--space-8);
  max-width: 560px;
}
.hero__actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.hero__rule {
  width: 56px;
  height: 2px;
  background: var(--color-accent);
  margin: var(--space-8) 0;
}

/* ── YouTube Facade ── */
.yt-facade {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.yt-facade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity var(--transition-base);
}
.yt-facade:hover img { opacity: .85; }
.yt-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 48px;
  background: rgba(0,0,0,.7);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}
.yt-play::after {
  content: '';
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent #fff;
  margin-left: 3px;
}
.yt-facade:hover .yt-play {
  background: #ff0000;
  transform: translate(-50%,-50%) scale(1.08);
}

/* ── Testimonial ── */
.testimonial {
  background: var(--dark-card);
  border-radius: 16px;
  padding: var(--space-6) var(--space-5);
  position: relative;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--dark-border);
  transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  min-height: 380px;
}
.testimonial:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 48px rgba(0,0,0,.25), 0 0 0 1px rgba(181,140,94,.15);
  border-color: rgba(181,140,94,.2);
}
.testimonial__quote-mark {
  position: absolute;
  top: var(--space-4);
  left: var(--space-6);
  font-family: Georgia, serif;
  font-size: 96px;
  line-height: 1;
  color: var(--gold-500);
  opacity: .07;
  pointer-events: none;
  z-index: 0;
}
.testimonial__video {
  aspect-ratio: 4/5;
  margin: calc(-1 * var(--space-6)) calc(-1 * var(--space-5)) var(--space-4);
  border-radius: 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.testimonial__stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-2);
  color: var(--gold-500);
  font-size: var(--text-sm);
  letter-spacing: 2px;
}
.testimonial__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy-600);
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0;
  flex-shrink: 0;
}
.testimonial__info {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.testimonial__name {
  font-size: var(--text-lg);
  font-weight: var(--font-weight-bold);
  color: #fff;
}
.testimonial__origin {
  font-size: var(--text-sm);
  color: var(--gold-400);
}

/* ── Footer ── */
.footer {
  background: var(--navy-800);
  color: var(--gray-300);
  padding: var(--space-16) 0 var(--space-8);
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}
.footer__col-title {
  font-size: var(--text-xs);
  font-weight: var(--font-weight-bold);
  color: var(--gold-400);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--space-4);
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.footer__links a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,.45);
  transition: color var(--transition-fast);
}
.footer__links a:hover {
  color: rgba(255,255,255,.85);
}
.footer__sub {
  font-size: var(--text-xs);
  color: var(--gray-500);
  padding-left: var(--space-3);
}
.footer__bar {
  border-top: 1px solid var(--gray-700);
  padding-top: var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
}
.footer__social {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.footer__social a {
  color: var(--gray-400);
  font-size: var(--text-sm);
  transition: color var(--transition-fast);
}
.footer__social a:hover { color: #fff; }
.footer__copy {
  font-size: var(--text-xs);
  color: var(--gray-500);
}
.footer__lang {
  display: flex;
  gap: var(--space-2);
  font-size: 1.25rem;
}
.footer__lang a { opacity: .5; text-decoration: none; transition: opacity var(--transition-fast); }
.footer__lang a:hover,
.footer__lang a.active { opacity: 1; }

/* ── WhatsApp Float ── */
.whatsapp-float {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  width: 56px;
  height: 56px;
  background: var(--color-whatsapp);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
  z-index: 50;
  transition: all var(--transition-fast);
  animation: waPulse 2.5s ease-in-out infinite;
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.35); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,.55); }
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 36px rgba(37,211,102,.5);
  animation: none;
}
.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* ── Stats row ── */
.stats {
  display: flex;
  justify-content: center;
  gap: var(--space-16);
  padding: var(--space-12) 0;
}
.stat {
  text-align: center;
}
.stat__number {
  font-size: var(--text-5xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-accent);
  line-height: 1;
}
.stat__label {
  font-size: var(--text-sm);
  color: var(--gray-400);
  margin-top: var(--space-2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── Checklist ── */
.checklist {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.checklist__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-base);
  color: var(--gray-700);
}
.checklist__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--color-accent);
  margin-top: 2px;
  overflow: visible;
  display: block;
}

/* ── FAQ Accordion (native details/summary) ── */

/* ── Utility: text-accent ── */
.text-accent {
  color: var(--gold-600);
  font-style: normal;
}

/* ── Utility: grid modifiers ── */
.grid--gap-lg { gap: var(--space-16); }
.grid--align-center { align-items: center; }

/* ── Utility: YouTube facade aspect ── */
.yt-facade { aspect-ratio: 16/9; }
.testimonial__video .yt-facade {
  aspect-ratio: auto;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.testimonial__video .yt-facade img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* ── Scroll reveal ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 700ms var(--ease-out-expo), transform 700ms var(--ease-out-expo);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── Cascade reveal (stagger children) ── */
[data-cascade].revealed > * {
  opacity: 1;
  transform: translateY(0) scale(1);
}
[data-cascade] > * {
  opacity: 0;
  transform: translateY(30px) scale(0.97);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out, box-shadow 0.4s ease;
}
[data-cascade].revealed > *:nth-child(1) { transition-delay: 0.05s; }
[data-cascade].revealed > *:nth-child(2) { transition-delay: 0.12s; }
[data-cascade].revealed > *:nth-child(3) { transition-delay: 0.19s; }
[data-cascade].revealed > *:nth-child(4) { transition-delay: 0.26s; }
[data-cascade].revealed > *:nth-child(5) { transition-delay: 0.33s; }
[data-cascade].revealed > *:nth-child(6) { transition-delay: 0.40s; }
[data-cascade].revealed > *:nth-child(7) { transition-delay: 0.47s; }
[data-cascade].revealed > *:nth-child(8) { transition-delay: 0.54s; }

/* ── Card 3D hover (global) ── */
.card--3d { perspective: 800px; transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94); }
.card--3d:hover {
  transform: translateY(-8px) rotateX(2deg);
  box-shadow: 0 20px 40px rgba(32,48,85,0.12), 0 8px 16px rgba(181,140,94,0.08);
}

/* ── Accordion ── */
.accordion-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-3) 0;
  font-size: var(--text-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-accent);
  cursor: pointer;
  border: none;
  background: none;
  border-top: 1px solid rgba(181,140,94,0.15);
  transition: color 0.3s ease;
}
.accordion-toggle:hover { color: var(--gold-600); }
.accordion-toggle svg {
  width: 16px; height: 16px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.accordion-toggle.active svg { transform: rotate(180deg); }
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25,0.46,0.45,0.94), opacity 0.3s ease;
  opacity: 0;
}
.accordion-content.open {
  opacity: 1;
}

/* ── Tabs ── */
.tabs { display: flex; gap: var(--space-2); margin-bottom: var(--space-6); flex-wrap: wrap; }
.tab-btn {
  padding: var(--space-2) var(--space-5);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-medium);
  color: var(--gray-500);
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.3s ease;
}
.tab-btn:hover { color: var(--color-accent); border-color: var(--color-accent); }
.tab-btn.active {
  color: #fff;
  background: var(--color-accent);
  border-color: var(--color-accent);
}
.tab-panel { display: none; animation: tabFadeIn 0.4s ease; }
.tab-panel.active { display: block; }
@keyframes tabFadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ── Donut chart (SVG) ── */
.donut-chart {
  width: 80px; height: 80px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.donut-chart svg { transform: rotate(-90deg); }
.donut-chart circle {
  fill: none;
  stroke-width: 4;
  cx: 36; cy: 36; r: 32;
}
.donut-chart .donut-bg { stroke: rgba(181,140,94,0.15); }
.donut-chart .donut-fill {
  stroke: var(--color-accent);
  stroke-dasharray: 201;
  stroke-dashoffset: 201;
  stroke-linecap: round;
  transition: stroke-dashoffset 1.2s cubic-bezier(0.25,0.46,0.45,0.94);
}
.donut-chart.animate .donut-fill { stroke-dashoffset: var(--donut-offset); }
.donut-chart__value {
  position: absolute;
  font-size: var(--text-sm);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-heading);
}

/* ── Animated counter ── */
.counter-wrap { text-align: center; }
.counter-number {
  font-size: var(--text-4xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-accent);
  line-height: 1.2;
}
.counter-label {
  font-size: var(--text-sm);
  color: var(--gray-500);
  margin-top: var(--space-1);
}

/* ── Animated bar (horizontal) ── */
.progress-bar {
  height: 6px;
  background: rgba(181,140,94,0.12);
  border-radius: 3px;
  overflow: hidden;
  margin-top: var(--space-2);
}
.progress-bar__fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--color-accent), var(--gold-400));
  border-radius: 3px;
  transition: width 1.2s cubic-bezier(0.25,0.46,0.45,0.94);
}
.progress-bar__fill.animate { width: var(--bar-width); }

/* ── Hero Internal (subpages) ── */
.hero--internal {
  min-height: 100vh;
}
.hero--internal .hero__content {
  padding-top: 140px;
  padding-bottom: 80px;
}
.hero--internal .hero__title {
  font-size: var(--text-5xl);
}

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-medium);
  color: var(--gray-300);
  margin-bottom: var(--space-6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.breadcrumb a {
  color: var(--gold-400);
  transition: color var(--transition-fast);
}
.breadcrumb a:hover {
  color: var(--gold-300);
}
.breadcrumb span {
  color: var(--gray-400);
}

/* ── Table Responsive Wrapper ── */
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* ── Compare Table ── */
.compare-table {
  overflow-x: auto;
  margin-top: var(--space-12);
}
.compare-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
}
.compare-table th,
.compare-table td {
  padding: var(--space-4) var(--space-5);
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}
.compare-table thead th {
  font-weight: var(--font-weight-bold);
  color: var(--color-text-heading);
  font-size: var(--text-base);
  padding-bottom: var(--space-4);
  border-bottom: 2px solid var(--color-border);
}
.compare-table__highlight {
  background: rgba(196, 162, 101, 0.06);
  color: var(--navy-600);
  font-weight: var(--font-weight-medium);
}
.compare-table thead .compare-table__highlight {
  color: var(--gold-600);
}
.compare-table tbody tr:hover {
  background: var(--color-surface-alt);
}

/* ── FAQ with native details/summary ── */
details.faq__item {
  border-bottom: 1px solid var(--color-border);
}
details.faq__item summary.faq__question {
  list-style: none;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-5) 0;
  font-size: var(--text-lg);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-heading);
  cursor: pointer;
}
details.faq__item summary.faq__question::-webkit-details-marker {
  display: none;
}
details.faq__item summary.faq__question::after {
  content: '+';
  font-size: var(--text-lg);
  font-weight: var(--font-weight-light);
  color: var(--color-accent);
  width: 32px;
  height: 32px;
  border: 1px solid var(--dark-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition-hover), border-color var(--transition-hover);
}
details[open].faq__item summary.faq__question::after {
  content: '\2212';
  transform: rotate(180deg);
  border-color: var(--dark-border-hover);
}
details.faq__item .faq__answer {
  padding-bottom: var(--space-5);
}
details.faq__item .faq__answer p {
  color: var(--gray-600);
  line-height: 1.7;
}

/* ── Back to Top ── */
.back-to-top {
  position: fixed;
  bottom: var(--space-6);
  right: calc(var(--space-6) + 56px + var(--space-4));
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(14,21,34,.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--dark-border);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition-hover);
  color: var(--gold-400);
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}
.back-to-top:hover {
  background: rgba(14,21,34,.95);
  border-color: var(--dark-border-hover);
  transform: translateY(-2px);
  color: var(--gold-400);
}

/* ══════════════════════════════════════════════
   RESPONSIVE — MOBILE-FIRST (min-width)
   Base = mobile (0–599px), then progressive enhancement
   ══════════════════════════════════════════════ */

/* ── Base mobile (already in place above) ── */
/* top-bar: hidden on mobile */
.top-bar { display: none; }
.navbar { top: 0; }

/* navbar: toggle visible, links hidden, flags visible */
.navbar__links { display: none; }
.navbar__toggle { display: flex; }
.navbar__mobile-flags { display: flex !important; }
.navbar__inner { padding: 0 var(--container-px); }

/* typography: mobile sizes */
h1, .hero__title { font-size: var(--text-4xl); }
h2, .section-header h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); }

/* buttons: compact on mobile */
.btn { font-size: var(--text-sm); padding: 10px 20px; }
.btn--lg { padding: 12px 24px; font-size: var(--text-sm); }
.btn--sm { padding: 6px 14px; font-size: var(--text-xs); }

/* eyebrows: smaller on mobile */
.eyebrow { font-size: 10px; }

/* cards: tighter padding on mobile */
.card__body { padding: 16px 20px; }

/* tabs: compact on mobile */
.tab-btn { padding: 6px 14px; font-size: var(--text-xs); }

/* grids: single column on mobile */
.grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
.grid--gap-lg { gap: var(--space-8); }

/* stats: vertical stack */
.stats { flex-direction: column; align-items: center; gap: var(--space-8); }
.stat__number { font-size: var(--text-4xl); }

/* hero: mobile adjustments */
.hero__content { padding: 100px var(--container-px) 40px; }
.hero__subtitle { font-size: var(--text-base); }
.hero__actions { flex-direction: column; }
.hero__actions .btn { width: 100%; justify-content: center; }
.hero--internal { min-height: 100vh; }
.hero--internal .hero__content { padding-top: 100px; padding-bottom: 40px; }
.hero--internal .hero__title { font-size: var(--text-3xl); }

/* footer: single column mobile */
.footer__grid { grid-template-columns: 1fr; }

/* compare table: compact */
.compare-table th,
.compare-table td { padding: var(--space-3); }

/* ── Mobile anti-bounce / overflow fix ── */
html, body {
  -webkit-overflow-scrolling: touch;
}

/* Hide decorative orbs on mobile — they cause horizontal overflow */
.hero__orb,
.hero__orb--1,
.hero__orb--2 {
  display: none !important;
}

/* Force all sections to not overflow horizontally */
section,
.section,
.hero,
.cta-section,
main,
footer {
  overflow-x: hidden;
  max-width: 100vw;
}

/* Decorative absolute-positioned elements in CTA can cause overflow */
.cta-section [style*="position:absolute"],
.cta-section .cta-bg-word,
.proc-cta__bg-word {
  overflow: hidden;
}

/* ── Buttons mobile: full-width, touch-friendly ── */
.btn {
  width: 100%;
  max-width: 100%;
  justify-content: center;
  padding: 14px 18px;
  font-size: 14px;
  min-height: 48px; /* Apple HIG: minimum 44px touch target */
  white-space: normal;
  line-height: 1.3;
  text-align: center;
  word-break: normal;
  overflow-wrap: break-word;
  hyphens: auto;
}
.btn--lg {
  padding: 16px 22px;
  font-size: 15px;
}
.btn--sm {
  padding: 10px 16px;
  font-size: 13px;
  width: auto; /* SM buttons can be inline */
}

/* Button groups: always stacked on mobile */
.cta-actions,
.hero__btns {
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  width: 100%;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions .btn,
.hero__btns .btn {
  width: 100%;
}

/* ── Container safe padding ── */
.container {
  padding-left: 16px;
  padding-right: 16px;
}

/* ── Sections more compact on mobile ── */
.section {
  padding: 40px 0;
}

/* ── Typography: smaller and more legible ── */
h1, .hero__title {
  font-size: 28px;
  line-height: 1.2;
}
h2, .section-header h2 {
  font-size: 24px;
  line-height: 1.3;
}
h3 {
  font-size: 20px;
}
.eyebrow {
  font-size: 10px;
  letter-spacing: 0.15em;
}

/* ── Cards more compact ── */
.card__body {
  padding: 16px;
}
.card__title {
  font-size: 18px;
}

/* ── Tabs smaller ── */
.tab-btn {
  padding: 8px 14px;
  font-size: 12px;
}
.tabs {
  gap: 6px;
  justify-content: center;
}

/* ── FAQ cards ── */
.faq-card__toggle {
  padding: 14px 16px;
  gap: 10px;
}
.faq-card__question {
  font-size: 14px;
}
.faq-card__answer {
  padding-left: 46px !important;
  padding-right: 16px !important;
}
.faq-card__answer p {
  font-size: 13px;
}

/* ── Hero mobile ── */
.hero--internal {
  min-height: auto;
}
.hero--internal .hero__content {
  padding-top: 100px;
  padding-bottom: 32px;
}
.hero__title {
  font-size: 26px;
}
.hero__subtitle {
  font-size: 14px;
}

/* ── Navbar mobile ── */
.navbar__mobile {
  overflow-y: auto;
  max-height: 100vh;
  -webkit-overflow-scrolling: touch;
}
.navbar__mobile-sub a {
  padding: 10px 20px;
  font-size: 14px;
}

/* ── Footer mobile ── */
.footer__grid {
  grid-template-columns: 1fr;
  gap: 24px;
}
.footer__bar {
  flex-direction: column;
  text-align: center;
  gap: 12px;
}
/* Footer social mobile: grid 2x2 centralizado, premium */
.footer__social {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  padding: 0;
  justify-items: stretch;
  align-items: center;
}
.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 40px;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: var(--font-weight-medium);
  line-height: 1.2;
  letter-spacing: 0.03em;
  white-space: nowrap;
  text-align: center;
  color: rgba(255,255,255,0.72);
  border: 1px solid rgba(181,140,94,0.22);
  border-radius: 999px;
  background: rgba(255,255,255,0.02);
  transition: color 0.25s, border-color 0.25s, background 0.25s;
}
.footer__social a:hover,
.footer__social a:active {
  color: var(--gold-300);
  border-color: rgba(181,140,94,0.5);
  background: rgba(181,140,94,0.08);
}

/* ── sm: 600px+ ── */
@media (min-width: 600px) {
  :root {
    --container-px: 20px;
    --section-py: 64px;
    --navbar-height: 64px;
  }
  .btn { font-size: var(--text-sm); padding: var(--space-3) var(--space-6); width: auto; min-height: unset; }
  .btn--lg { padding: 14px 28px; font-size: var(--text-sm); }
  .btn--sm { padding: var(--space-2) var(--space-4); font-size: var(--text-sm); }
  /* Restore section padding at sm */
  .section { padding: var(--section-py) 0; }
  /* Restore container padding */
  .container { padding-left: var(--container-px); padding-right: var(--container-px); }
  /* Restore hero internal */
  .hero--internal { min-height: 100vh; }
  /* Restore typography */
  h1, .hero__title { font-size: var(--text-4xl); }
  h2, .section-header h2 { font-size: var(--text-3xl); }
  h3 { font-size: var(--text-2xl); }
  .eyebrow { font-size: var(--text-xs); }
  .card__body { padding: var(--space-6) var(--space-8); }
  .tab-btn { padding: var(--space-2) var(--space-5); font-size: var(--text-sm); }
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .stats { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: var(--space-10); }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
  .hero__actions { flex-direction: row; }
  .hero__actions .btn { width: auto; }
  .hero__content { padding: 0 var(--container-px); }
  .hero--internal .hero__content { padding-top: 120px; padding-bottom: 60px; }
}

/* ── md: 1024px+ ── */
@media (min-width: 1024px) {
  :root {
    --container-px: 24px;
    --section-py: 80px;
    --navbar-height: 72px;
  }
  /* Restore orbs on desktop */
  .hero__orb,
  .hero__orb--1,
  .hero__orb--2 {
    display: block !important;
  }
  /* Restore button widths for desktop */
  .btn { font-size: var(--text-base); padding: var(--space-3) var(--space-6); width: auto; min-height: unset; }
  .btn--lg { padding: 14px 32px; font-size: var(--text-base); }
  .btn--sm { padding: var(--space-2) var(--space-4); font-size: var(--text-sm); }
  /* Restore button groups for desktop */
  .cta-actions,
  .hero__btns {
    flex-direction: row;
    align-items: center;
    max-width: none;
  }
  .cta-actions .btn,
  .hero__btns .btn {
    width: auto;
  }
  /* Restore container padding */
  .container {
    padding-left: var(--container-px);
    padding-right: var(--container-px);
  }
  /* Restore section padding */
  .section {
    padding: var(--section-py) 0;
  }
  /* Restore footer grid */
  .footer__bar {
    flex-direction: row;
    text-align: left;
  }
  /* Restore footer social as flex row on desktop */
  .footer__social {
    display: flex !important;
    grid-template-columns: none;
    max-width: none;
    gap: var(--space-4);
  }
  .footer__social a {
    display: inline-block;
    width: auto;
    min-height: auto;
    padding: 0;
    font-size: var(--text-sm);
    font-weight: normal;
    color: var(--gray-400);
    border: none;
    border-radius: 0;
    background: none;
  }
  .footer__social a:hover {
    color: #fff;
    background: none;
    border-color: transparent;
  }
  .top-bar { display: flex; }
  .navbar { top: 52px; }
  .navbar--solid { top: 0; --navbar-height: 72px; }
  .navbar__links { display: flex; }
  .navbar__toggle { display: none; }
  .navbar__mobile-flags { display: none !important; }
  .navbar__inner { padding: 0 40px; }
  .navbar__logo img { height: 110px; }
  h1, .hero__title { font-size: var(--text-5xl); }
  h2, .section-header h2 { font-size: var(--text-4xl); }
  h3 { font-size: var(--text-3xl); }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--gap-lg { gap: var(--space-20); }
  .footer__grid { grid-template-columns: repeat(3, 1fr); }
  .hero--internal { min-height: 100vh; }
  .hero--internal .hero__content { padding-top: 160px; padding-bottom: 80px; }
  .hero--internal .hero__title { font-size: var(--text-5xl); }
  .hero__content { padding: 0 60px; }
  .hero__subtitle { font-size: var(--text-lg); }
}

/* ── lg: 1280px+ ── */
@media (min-width: 1280px) {
  :root {
    --section-py: 100px;
    --navbar-height: 80px;
  }
  .navbar__logo img { height: 120px; }
  .navbar--solid .navbar__logo img { height: 65px; }
  .navbar__links { gap: var(--space-8); }
  .navbar__link { font-size: var(--text-xs); }
  .navbar__inner { padding: 0 60px; }
  h1, .hero__title { font-size: var(--text-6xl); }
  h2, .section-header h2 { font-size: var(--text-5xl); }
  h3 { font-size: var(--text-4xl); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
  .footer__grid { grid-template-columns: repeat(6, 1fr); }
  .stats { gap: var(--space-16); }
}

/* ══════════════════════════════════════════════
   STANDARDIZED: ODS Seal
   ══════════════════════════════════════════════ */
.ods-seal {
  max-width: 200px;
  height: auto;
  opacity: 0.6;
  display: inline-block;
}
.ods-seal-strip {
  text-align: center;
  padding: var(--space-6) var(--container-px);
  background: var(--color-surface-alt);
  border-bottom: 1px solid var(--color-border);
}

/* ══════════════════════════════════════════════
   STANDARDIZED: CTA Section Typography
   ══════════════════════════════════════════════ */
.cta-section .eyebrow {
  color: var(--gold-400);
}
.cta-section h2 {
  color: #fff;
  margin-top: var(--space-2);
}
.cta-section h2 .text-accent,
.cta-section h2 em {
  color: var(--gold-400);
  font-style: normal;
}
.cta-section > .container > p,
.cta-section .section-header p {
  color: var(--gray-300);
  max-width: 600px;
  margin: var(--space-6) auto 0;
  font-size: var(--text-lg);
  line-height: 1.75;
}
.cta-section .ods-seal-wrap {
  text-align: center;
  margin-bottom: var(--space-6);
}
.cta-section .cta-credentials {
  color: var(--gray-400);
  margin-top: var(--space-8);
  font-size: var(--text-sm);
}
.cta-actions,
.cta-section .cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: var(--space-10);
}
.cta-actions .btn,
.cta-section .cta-actions .btn {
  width: 100%;
  max-width: 320px;
  justify-content: center;
}

/* Padronização global das CTAs finais: texto centralizado */
.cta-section {
  text-align: center;
}
.cta-section .eyebrow {
  justify-content: center;
}
.cta-section p {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ══════════════════════════════════════════════
   Stats Bar Animado (home + sobre)
   ══════════════════════════════════════════════ */
.stats-bar--animated {
  position: relative;
  display: block;
  background:
    radial-gradient(ellipse 60% 70% at 50% 0%, rgba(181,140,94,0.12) 0%, transparent 55%),
    radial-gradient(ellipse 50% 80% at 50% 100%, rgba(32,48,85,0.5) 0%, transparent 60%),
    linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 50%, var(--navy-950) 100%);
  border-top: 1px solid rgba(181,140,94,0.15);
  border-bottom: 1px solid rgba(181,140,94,0.15);
  overflow: hidden;
}

.stats-bar--animated::before,
.stats-bar--animated::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 140px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(181,140,94,0.4), transparent);
  transform: translateY(-50%);
  pointer-events: none;
}
.stats-bar--animated::before { left: 0; }
.stats-bar--animated::after { right: 0; }

.stats-bar--animated .stats-bar__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--space-10) var(--container-px);
  z-index: 2;
}
@media (min-width: 600px) {
  .stats-bar--animated .stats-bar__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-5);
    padding: var(--space-12) var(--container-px);
  }
}
@media (min-width: 1024px) {
  .stats-bar--animated .stats-bar__inner {
    grid-template-columns: repeat(4, 1fr);
    padding: var(--space-16) var(--container-px);
  }
}

.stats-bar--animated .stats-bar__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 160px;
  padding: var(--space-6) var(--space-4) calc(var(--space-6) + 16px);
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid rgba(181,140,94,0.2);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s, box-shadow 0.4s;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}
@media (min-width: 1024px) {
  .stats-bar--animated .stats-bar__item {
    min-height: 200px;
    padding: var(--space-8) var(--space-4) calc(var(--space-8) + 16px);
  }
}

.stats-bar--animated .stats-bar__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(181,140,94,0.6), transparent);
  opacity: 0.6;
  transition: opacity 0.4s, width 0.4s;
}

.stats-bar--animated .stats-bar__item:hover {
  transform: translateY(-6px);
  border-color: rgba(181,140,94,0.5);
  box-shadow:
    0 30px 60px -30px rgba(0,0,0,0.5),
    0 0 0 1px rgba(181,140,94,0.1),
    inset 0 1px 0 rgba(255,255,255,0.08);
}
.stats-bar--animated .stats-bar__item:hover::before {
  width: 80%;
  opacity: 1;
}

.stats-bar--animated .stats-bar__number {
  font-size: clamp(2.75rem, 4.5vw, 3.75rem);
  font-weight: var(--font-weight-bold);
  line-height: 1;
  background: linear-gradient(180deg, #fff 0%, var(--gold-300) 60%, var(--gold-500) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  letter-spacing: -0.02em;
  display: inline-block;
}
.stats-bar--animated .stats-bar__number em {
  font-style: normal;
  color: inherit;
  -webkit-text-fill-color: inherit;
}

.stats-bar--animated .stats-bar__label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.82);
  margin-top: var(--space-4);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: var(--font-weight-medium);
  line-height: 1.5;
  max-width: 14ch;
  min-height: 2.4em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stats-bar--animated .stats-bar__item::after {
  content: '';
  position: absolute;
  bottom: var(--space-4);
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-400);
  opacity: 0.5;
  animation: statsBarAnimatedPulse 2.4s ease-in-out infinite;
}
.stats-bar--animated .stats-bar__item:nth-child(2)::after { animation-delay: 0.6s; }
.stats-bar--animated .stats-bar__item:nth-child(3)::after { animation-delay: 1.2s; }
.stats-bar--animated .stats-bar__item:nth-child(4)::after { animation-delay: 1.8s; }

@keyframes statsBarAnimatedPulse {
  0%, 100% { opacity: 0.3; transform: translateX(-50%) scale(1); }
  50% { opacity: 0.9; transform: translateX(-50%) scale(1.4); }
}

@media (min-width: 600px) {
  .cta-actions,
  .cta-section .cta-actions {
    flex-direction: row;
    justify-content: center;
  }
  .cta-actions .btn,
  .cta-section .cta-actions .btn {
    width: auto;
    max-width: none;
  }
}

