:root {
  /* Colors */
  --navy-deep: #07111F;
  --navy-base: #0B1A2E;
  --navy-mid: #0F2340;
  --navy-card: #132848;
  --navy-light: #1A3560;
  --gold: #C8993A;
  --gold-bright: #E0B455;
  --gold-pale: rgba(200, 153, 58, 0.12);
  --gold-line: rgba(200, 153, 58, 0.35);
  --white: #FFFFFF;
  --white-90: rgba(255, 255, 255, 0.9);
  --white-60: rgba(255, 255, 255, 0.6);
  --white-30: rgba(255, 255, 255, 0.3);
  --white-10: rgba(255, 255, 255, 0.07);
  --white-06: rgba(255, 255, 255, 0.04);

  /* Dimensions & Spacing */
  --nav-h: 80px;
  --section-pad-v: clamp(40px, 5vh, 60px);
  --section-pad-h: clamp(20px, 7vw, 100px);
  --container-gap: clamp(30px, 6vw, 80px);

  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  --transition-fast: all 0.3s ease;
}

/* ──────────────────────────────────────────────────────────────────────────
   1. BASE STYLES
   ────────────────────────────────────────────────────────────────────────── */

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--navy-base);
  color: var(--white);
  overflow-x: hidden;
  position: relative;
}

/* Subtle texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 0;
}

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

/* ──────────────────────────────────────────────────────────────────────────
   2. GLOBAL COMPONENTS
   ────────────────────────────────────────────────────────────────────────── */

/* Typography & Titles */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
}

.section-title em {
  font-style: italic;
  color: var(--gold-bright);
}

.label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* Buttons */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 17px 38px;
  border: none;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent);
  transform: translateX(-100%);
  transition: transform 0.45s ease;
}

.btn-gold:hover::before {
  transform: translateX(0);
}

.btn-gold:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(200, 153, 58, 0.28);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white-60);
  font-size: 1.00rem;
  font-weight: 400;
  text-decoration: none;
  padding: 17px 30px;
  border: 1px solid var(--white-10);
  transition: var(--transition-fast);
}

.btn-ghost:hover {
  border-color: var(--white-30);
  color: var(--white);
}

.arrow-ico {
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
}

.btn-gold:hover .arrow-ico {
  transform: translateX(3px);
}

/* Section Utilities */
.section {
  padding: var(--section-pad-v) var(--section-pad-h);
  position: relative;
  z-index: 1;
  scroll-margin-top: var(--nav-h);
}

.full-section {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}

.full-section.is-screen {
  min-height: calc(100vh - var(--nav-h));
  min-height: calc(100dvh - var(--nav-h));
  justify-content: center;
}

/* O Hero começa no topo absoluto da página (sob a navbar), então precisa de 100vh para preencher a tela */
nav+.full-section.is-screen,
div[data-include*="top_bar"]+.full-section.is-screen {
  min-height: 100vh;
  min-height: 100dvh;
}

.full-section>section,
.full-section>div {
  width: 100%;
}

/* O conteúdo deve preencher todo o espaço disponível do pai (apenas as seções principais) */
.full-section.is-screen>section {
  flex-grow: 1;
}

/* Animations & Reveals */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.85s cubic-bezier(0.23, 1, 0.32, 1), transform 0.85s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.d1 {
  transition-delay: .12s;
}

.d2 {
  transition-delay: .24s;
}

.d3 {
  transition-delay: .36s;
}

.d4 {
  transition-delay: .48s;
}

/* ──────────────────────────────────────────────────────────────────────────
   3. LAYOUT COMPONENTS
   ────────────────────────────────────────────────────────────────────────── */

/* Header / Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px var(--section-pad-h);
  transition: padding 0.4s cubic-bezier(0.23, 1, 0.32, 1), background 0.4s ease, border 0.4s ease;
}

nav.scrolled {
  background: rgba(7, 17, 31, 0.94);
  backdrop-filter: blur(20px);
  padding-top: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--white-10);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.04em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 65vw;
  position: relative;
  z-index: 1100;
}

.nav-logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--white-60);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--white);
}

.nav-btn {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-deep);
  background: var(--gold);
  text-decoration: none;
  padding: 10px 24px;
  transition: var(--transition-fast);
}

.nav-btn:hover {
  background: var(--gold-bright);
  transform: translateY(-1px);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 1100;
  padding: 0;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: var(--transition-fast);
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition-fast);
}

.hamburger::before {
  top: -8px;
  left: 0;
}

.hamburger::after {
  top: 8px;
  left: 0;
}

.menu-toggle.active .hamburger {
  background: transparent;
}

.menu-toggle.active .hamburger::before {
  transform: rotate(45deg);
  top: 0;
}

.menu-toggle.active .hamburger::after {
  transform: rotate(-45deg);
  top: 0;
}

.nav-btn-mobile {
  display: none;
}

/* Footer */
footer {
  background: var(--navy-deep);
  padding: 36px clamp(20px, 6vw, 80px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.footer-logo img {
  height: 55px;
  width: auto;
}

.footer-logo span {
  color: var(--gold);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.footer-copy {
  font-size: 0.82rem;
  color: var(--white-30);
  letter-spacing: 0.06em;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-size: 0.75rem;
  color: var(--white-30);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold);
}

@media (max-width: 600px) {
  footer {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .footer-content {
    align-items: center;
  }
}

/* ──────────────────────────────────────────────────────────────────────────
   4. PAGE SECTIONS
   ────────────────────────────────────────────────────────────────────────── */

/* ── HERO ── */
.hero {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?w=1800&q=85&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  filter: brightness(0.25) saturate(0.4);
  transform: scale(1.04);
  transition: transform 8s ease;
}

.hero:hover .hero-bg {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,
      var(--navy-deep) 0%,
      rgba(7, 17, 31, 0.92) 38%,
      rgba(7, 17, 31, 0.55) 65%,
      rgba(7, 17, 31, 0.1) 100%);
  z-index: 1;
}

.hero-left {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px clamp(20px, 5vw, 80px) 40px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--gold-line);
  background: var(--gold-pale);
  color: var(--gold-bright);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  width: fit-content;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(16px);
  animation: up 0.8s 0.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(24px);
  animation: up 1s 0.4s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.hero-headline em {
  font-style: italic;
  color: var(--gold-bright);
}

.hero-sub {
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  font-weight: 300;
  line-height: 1.85;
  color: var(--white-60);
  max-width: 500px;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
  animation: up 1s 0.62s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(16px);
  animation: up 1s 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.hero-right {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 0;
  overflow: hidden;
}

.hero-portrait-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
}

.hero-portrait {
  width: 100%;
  height: calc(100% + 100px);
  margin-top: -100px;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.7) saturate(0.6);
  mix-blend-mode: luminosity;
  opacity: 0;
  animation: fadeIn 1.4s 1s ease forwards;
}

.hero-portrait-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top,
      var(--navy-deep) 0%,
      rgba(11, 26, 46, 0.3) 40%,
      transparent 60%);
  box-shadow: inset 0 0 120px rgba(7, 17, 31, 0.95);
}

.hero-portrait-wrap::after {
  content: '';
  position: absolute;
  left: -1px;
  top: 15%;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s 1.4s ease forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: clamp(20px, 5vw, 80px);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: up 1s 1.3s ease forwards;
}

.scroll-label {
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  color: var(--white-30);
  text-transform: uppercase;
}

.scroll-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  animation: scrollPulse 2.4s infinite;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--navy-mid);
  border-bottom: 1px solid var(--white-10);
  padding: 24px clamp(20px, 6vw, 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 64px);
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-icon {
  width: 34px;
  height: 34px;
  border: 1px solid var(--gold-line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.93rem;
  flex-shrink: 0;
}

.trust-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1;
}

.trust-label {
  font-size: 0.85rem;
  color: var(--white-30);
  letter-spacing: 0.1em;
  margin-top: 2px;
}

.trust-sep {
  width: 1px;
  height: 32px;
  background: var(--white-10);
}

/* ── VISION ── */
.vision-section {
  background: var(--navy-deep);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  overflow: hidden;
}

.vision-image-col {
  position: relative;
  min-height: 500px;
  overflow: hidden;
}

.vision-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.55) saturate(0.5);
  mix-blend-mode: luminosity;
  transition: transform 0.8s ease, filter 0.8s ease;
}

.vision-image-col:hover .vision-img {
  transform: scale(1.03);
  filter: brightness(0.65) saturate(0.65);
}

.vision-image-col::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      transparent 50%,
      var(--navy-deep) 100%), linear-gradient(to top,
      var(--navy-deep) 0%,
      transparent 30%);
}

.vision-image-col::before {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  bottom: 10%;
  width: 2px;
  background: var(--gold);
  z-index: 2;
  opacity: 0.6;
}

.vision-img-quote {
  position: absolute;
  bottom: 40px;
  left: 36px;
  right: 36px;
  z-index: 3;
  border-left: 2px solid var(--gold);
  padding: 18px 20px;
  background: rgba(7, 17, 31, 0.75);
  backdrop-filter: blur(8px);
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--white-90);
  line-height: 1.6;
}

.vision-img-quote cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
}

.vision-content-col {
  padding: 30px clamp(32px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vision-body {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--white-60);
  margin-top: 20px;
  max-width: 480px;
}

.vision-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 20px;
}

.v-card {
  background: var(--navy-card);
  padding: 20px 24px;
  border-bottom: 2px solid transparent;
  transition: var(--transition-smooth);
  cursor: default;
}

.v-card:hover {
  background: var(--navy-light);
  border-bottom-color: var(--gold);
  transform: translateY(-3px);
}

.v-icon {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--gold);
  display: block;
}

.v-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 8px;
}

.v-card p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--white-60);
  font-weight: 300;
}

/* ── PILARES ── */
.pillars-section {
  background: var(--navy-mid);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: var(--section-pad-v) 0 0 !important;
  /* Remove horizontal and bottom padding */
}

.pillars-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1600&q=70&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  filter: brightness(0.08) saturate(0.2);
  mix-blend-mode: luminosity;
}

.pillars-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 48px;
  padding: 0 var(--section-pad-h);
  position: relative;
  z-index: 2;
}

.pillars-intro {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--white-60);
  font-weight: 300;
  align-self: end;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  position: relative;
  z-index: 2;
}

.p-card {
  background: rgba(7, 17, 31, 0.85);
  padding: 30px 30px 24px;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(4px);
  border-top: 1px solid var(--white-10);
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.p-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.p-card:hover::before {
  transform: scaleX(1);
}

.p-card:hover {
  background: rgba(19, 40, 72, 0.9);
  transform: translateY(-4px);
}

.p-bg-num {
  position: absolute;
  right: -10px;
  bottom: -20px;
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

.p-num {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 20px;
}

.p-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.2;
}

.p-desc {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--white-60);
  font-weight: 300;
  flex: 1;
}

.p-tag {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 20px;
  border-top: 1px solid var(--white-10);
}

.p-tag::before {
  content: '↗';
}

/* ── PILARES V2 (Premium Variant) ── */
.pillars-grid-v2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 2;
  min-height: 700px;
  background: var(--navy-deep);
  width: 100%;
  flex-grow: 1;
  border-top: 1px solid var(--white-10);
}

.p-item-v2 {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px 40px 100px;
  transition: var(--transition-smooth);
  border-right: 1px solid var(--white-10);
}

.p-item-v2:last-child {
  border-right: none;
}

.p-img-v2 {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5) saturate(0.8);
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1), filter 0.8s ease;
}

.p-item-v2:hover .p-img-v2 {
  transform: scale(1.1);
  filter: brightness(0.7) saturate(1);
}

.p-overlay-v2 {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top,
      rgba(7, 17, 31, 1) 0%,
      rgba(7, 17, 31, 0.9) 35%,
      rgba(7, 17, 31, 0) 80%);
  pointer-events: none;
}

.p-content-v2 {
  position: relative;
  z-index: 2;
  transition: transform 0.4s ease;
}

.p-item-v2:hover .p-content-v2 {
  transform: translateY(-8px);
}

.p-item-v2 .p-bg-num {
  top: 20px;
  right: 20px;
  bottom: auto;
  font-size: 5rem;
  opacity: 0.05;
}

.p-item-v2:hover .p-bg-num {
  opacity: 0.1;
  color: var(--gold);
}

@media(max-width: 960px) {
  .pillars-grid-v2 {
    grid-template-columns: repeat(2, 1fr);
    min-height: auto;
  }

  .p-item-v2 {
    min-height: 380px;
    border-bottom: 1px solid var(--white-10);
    padding-bottom: 60px;
    /* Reduced bottom padding for smaller height */
  }

  .p-item-v2:hover .p-img-v2 {
    transform: none !important;
  }

  .p-img-v2 {
    object-position: top;
    top: -80px;
    height: calc(100% + 80px);
  }

  .p-item-v2:nth-child(even) {
    border-right: none;
  }
}

@media(max-width: 600px) {
  .pillars-grid-v2 {
    grid-template-columns: 1fr;
  }

  .p-item-v2 {
    min-height: 260px;
    border-right: none;
    padding: 40px 24px 30px;
  }

  .p-tag {
    display: none;
  }
}

/* ── JOURNEY ── */
.journey-section {
  background: var(--navy-deep);
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 0;
  align-items: start;
  align-content: center;
}

.journey-main {
  padding: 30px clamp(20px, 6vw, 80px) 20px;
}

.journey-intro-row {
  margin-bottom: 24px;
}

.journey-sub {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--white-60);
  margin-top: 20px;
  max-width: 520px;
}

.journey-image-col {
  position: sticky;
  top: 80px;
  height: calc(100vh - 120px);
  overflow: hidden;
  align-self: start;
}

.journey-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.45) saturate(0.4);
  mix-blend-mode: luminosity;
}

.journey-image-col::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to left,
      transparent 60%,
      var(--navy-deep) 100%), linear-gradient(to top, var(--navy-deep) 0%, transparent 20%),
    linear-gradient(to bottom, var(--navy-deep) 0%, transparent 15%);
}

.journey-image-col::after {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: var(--gold-line);
  z-index: 2;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 54px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), rgba(200, 153, 58, 0.08));
}

.t-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 28px;
  padding: 16px 0;
  border-bottom: 1px solid var(--white-10);
  align-items: start;
  transition: var(--transition-fast);
  position: relative;
}

.t-item:first-child {
  border-top: 1px solid var(--white-10);
}

.t-item:hover {
  padding-left: 10px;
}

.t-num-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
}

.t-num {
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold-line);
  background: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--gold);
  border-radius: 50%;
  position: relative;
  z-index: 2;
  transition: var(--transition-fast);
}

.t-item:hover .t-num {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
}

.t-sessions {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--white-30);
  text-transform: uppercase;
  text-align: center;
}

.t-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.2;
}

.t-desc {
  font-size: 0.94rem;
  line-height: 1.75;
  color: var(--white-60);
  font-weight: 300;
  max-width: 520px;
}

.t-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  background: var(--gold-pale);
  border: 1px solid var(--gold-line);
  padding: 4px 12px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--gold-bright);
}

/* ── WHY INVEST ── */
.why-section {
  background: var(--navy-mid);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 4vw, 60px);
  align-items: center;
}

.why-desc {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--white-60);
  font-weight: 300;
  margin-bottom: 24px;
  margin-top: 20px;
}

.why-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 24px;
}

.wh-stat {
  background: var(--navy-deep);
  padding: 20px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.wh-stat:hover {
  border-bottom-color: var(--gold);
}

.wh-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--gold-bright);
  line-height: 1;
  margin-bottom: 6px;
}

.wh-label {
  font-size: 1.0rem;
  color: var(--white-60);
  font-weight: 300;
  line-height: 1.4;
}

.why-items {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.wi {
  background: var(--navy-card);
  padding: 20px 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.wi::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gold);
  transform: scaleY(0);
  transition: transform 0.4s ease;
}

.wi:hover::before {
  transform: scaleY(1);
}

.wi:hover {
  background: var(--navy-light);
  padding-left: 32px;
}

.wi-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-pale);
  border: 1px solid var(--gold-line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.wi-text h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.wi-text p {
  font-size: 1.00rem;
  line-height: 1.7;
  color: var(--white-60);
  font-weight: 300;
}

/* ── FAQ ── */
.faq-section {
  background: var(--navy-deep);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 32px;
}

.faq-item {
  background: var(--navy-card);
  padding: 24px;
  transition: background 0.3s ease;
}

.faq-item:hover {
  background: var(--navy-light);
}

.faq-q {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.3;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.faq-q::before {
  content: '?';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  min-width: 24px;
  border: 1px solid var(--gold-line);
  color: var(--gold);
  font-size: 0.9rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  margin-top: 1px;
}

.faq-a {
  font-size: 1.00rem;
  line-height: 1.8;
  color: var(--white-60);
  font-weight: 300;
  padding-left: 38px;
}

/* ── CTA ── */
.cta-section {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: calc(40px + var(--nav-h)) clamp(20px, 8vw, 120px) 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1800&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  filter: brightness(0.18) saturate(0.3);
  transform: scale(1.04);
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(200, 153, 58, 0.12), transparent 70%),
    linear-gradient(to top, rgba(7, 17, 31, 0.98) 0%, rgba(7, 17, 31, 0.7) 100%);
}

.cta-section .label {
  justify-content: center;
  position: relative;
  z-index: 2;
}

.cta-section .label::before {
  display: none;
}

.cta-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5.5vw, 4.8rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  max-width: 860px;
  margin: 0 auto 24px;
  position: relative;
  z-index: 2;
}

.cta-headline em {
  font-style: italic;
  color: var(--gold-bright);
}

.cta-sub {
  font-size: 1.1rem;
  color: var(--white-60);
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.8;
  position: relative;
  z-index: 2;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
  margin-bottom: 48px;
}

.cta-guarantees {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.cta-g {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--white-30);
  letter-spacing: 0.06em;
}

.cta-g::before {
  content: '✓';
  color: var(--gold);
  font-size: 0.95rem;
}

/* ── BIO ── */
.bio-section-wrapper {
  background: var(--navy-deep);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 40px 80px;
}

.bio-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--container-gap);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.bio-image-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--white-10);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.bio-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  filter: brightness(0.9) saturate(0.8);
  transition: var(--transition-smooth);
}

.bio-image-wrap:hover img {
  transform: scale(1.03);
  filter: brightness(1) saturate(1);
}

.bio-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 15px solid var(--navy-deep);
  pointer-events: none;
}

.bio-content {
  padding-left: 20px;
}

.bio-content p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--white-60);
  font-weight: 300;
  margin-top: 24px;
}

.bio-content p strong {
  color: var(--gold-bright);
  font-weight: 500;
}

@media(max-width: 960px) {
  .bio-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .bio-content {
    padding-left: 0;
    text-align: center;
  }

  .bio-image-wrap {
    max-width: 360px;
    margin: 0 auto;
  }
}

/* ──────────────────────────────────────────────────────────────────────────
   5. KEYFRAMES
   ────────────────────────────────────────────────────────────────────────── */

@keyframes up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}

@keyframes scrollPulse {
  0% {
    transform: scaleX(1);
    opacity: 1;
  }

  50% {
    transform: scaleX(0.3);
    opacity: 0.3;
  }

  100% {
    transform: scaleX(1);
    opacity: 1;
  }
}

/* ──────────────────────────────────────────────────────────────────────────
   6. RESPONSIVE DESIGN
   ────────────────────────────────────────────────────────────────────────── */

/* ── 1100px Breakpoint ── */
@media(max-width: 1100px) {
  .journey-section {
    grid-template-columns: 1fr;
  }

  .journey-image-col {
    display: none;
  }
}

/* ── 960px Breakpoint ── */
@media(max-width: 960px) {


  .full-section,
  .full-section.is-screen,
  nav+.full-section.is-screen,
  div[data-include*="top_bar"]+.full-section.is-screen {
    height: auto;
    min-height: 100vh;
    padding-top: 0;
    display: flex;
    flex-direction: column;
  }

  .hero-left {
    padding-top: 80px;
    padding-bottom: 24px;
    justify-content: flex-end;
    min-height: calc(100vh - var(--nav-h));
    min-height: calc(100dvh - var(--nav-h));
  }


  .hero {
    grid-template-columns: 1fr;
  }

  .btn-gold {
    font-size: 0.85rem;
    padding: 14px 28px;
  }

  .hero-right {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
  }

  .hero-overlay {
    background: linear-gradient(to top,
        rgba(7, 17, 31, 0.95) 0%,
        rgba(7, 17, 31, 0.5) 50%,
        rgba(7, 17, 31, 0.0) 100%);
    z-index: 1;
  }

  .hero-portrait-wrap {
    height: 100%;
  }

  .hero-portrait-wrap::before,
  .hero-portrait-wrap::after {
    display: none;
  }

  .hero-portrait {
    height: 100%;
    margin-top: 0;
    filter: brightness(0.7) saturate(0.8);
    mix-blend-mode: luminosity;
  }

  .hero-headline {
    font-size: 2.2rem;
    margin-bottom: 16px;
  }

  .hero-sub {
    font-size: 1rem;
    margin-bottom: 24px;
    line-height: 1.5;
  }

  .trust-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 10px;
    padding: 24px 15px;
    background: var(--navy-mid);
    width: 100%;
    border-bottom: 1px solid var(--white-06);
  }

  .trust-sep {
    display: none !important;
  }

  .trust-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
    padding: 0 5px;
  }

  .trust-icon {
    width: 22px;
    height: 22px;
    font-size: 0.75rem;
    margin-top: 2px;
  }

  .trust-value {
    font-size: 1rem;
    line-height: 1.1;
  }

  .trust-label {
    font-size: 0.8rem;
    margin-top: 2px;
    line-height: 1.2;
    opacity: 0.8;
  }

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

  .vision-image-col {
    min-height: 15vh;
    max-height: 20vh;
  }

  .vision-img-quote {
    display: none;
  }

  .vision-content-col {
    padding: 20px 24px;
  }

  .vision-body {
    display: none;
  }

  .vision-cards {
    margin-top: 16px;
    grid-template-columns: 1fr 1fr;
  }

  .v-card {
    padding: 12px;
  }

  .v-card h3 {
    font-size: 1rem;
  }

  .v-card p {
    font-size: 0.9rem;
    line-height: 1.3;
  }

  .pillars-header,
  .why-grid {
    grid-template-columns: 1fr;
  }

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

/* ── Height-based adjustment ── */
@media (max-height: 700px) {
  .full-section {
    overflow-y: auto;
    justify-content: flex-start;
  }
}

/* ── 600px Breakpoint ── */
@media(max-width: 600px) {

  .pillars-grid,
  .why-highlight {
    grid-template-columns: 1fr;
  }

  .vision-cards {
    grid-template-columns: 1fr 1fr;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: var(--navy-deep);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    overflow-y: auto;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  /* Garante que o pai (nav) não corte o menu ou aplique filtros que criem contexto de empilhamento */
  nav.mobile-nav-active {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: var(--navy-deep) !important;
    height: auto !important;
  }

  .nav-link {
    font-size: 1.4rem;
    color: var(--white);
  }

  .nav-btn-mobile {
    display: inline-flex;
    margin-top: 10px;
    background: var(--gold);
    color: var(--navy-deep);
    padding: 16px 32px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.1em;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-btn {
    display: none;
  }

  .timeline::before {
    left: 22px;
  }

  .t-item {
    grid-template-columns: 56px 1fr;
    gap: 16px;
  }
}


/* ──────────────────────────────────────────────────────────────────────────
   5. COOKIE BANNER (LGPD)
   ────────────────────────────────────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(150%);
  width: calc(100% - 40px);
  max-width: 720px;
  background: rgba(7, 17, 31, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--gold-line);
  padding: 24px 36px;
  z-index: 5000;
  display: flex;
  transition: transform 1s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.cookie-banner.show {
  transform: translateX(-50%) translateY(0);
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
}

.cookie-content p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--white-60);
  margin: 0;
}

.cookie-content p a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: var(--transition-fast);
}

.cookie-content p a:hover {
  color: var(--gold-bright);
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.btn-gold-sm,
.btn-ghost-sm {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 24px;
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-gold-sm {
  background: var(--gold);
  color: var(--navy-deep);
}

.btn-gold-sm:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
}

.btn-ghost-sm {
  background: transparent;
  color: var(--white-60);
  border: 1px solid var(--white-10);
}

.btn-ghost-sm:hover {
  border-color: var(--white-30);
  color: var(--white);
}

@media (max-width: 600px) {
  .cookie-banner {
    bottom: 20px;
    padding: 20px;
    width: calc(100% - 24px);
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .cookie-actions {
    width: 100%;
    justify-content: center;
  }

  .btn-gold-sm,
  .btn-ghost-sm {
    flex: 1;
    padding: 14px 10px;
  }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {

  *,
  ::before,
  ::after {
    animation-delay: -1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    background-attachment: initial !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
    transition-delay: -1ms !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ================= WHATSAPP FLUTUANTE ================= */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  background: #20ba5a;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: white;
}

/* ================= LEAD MODAL ================= */
.lead-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lead-modal.show {
  opacity: 1;
  pointer-events: auto;
}

.lead-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.lead-modal-content {
  position: relative;
  background: var(--navy-card, #0f1c30);
  color: var(--white, #ffffff);
  width: 90%;
  max-width: 400px;
  padding: 30px;
  border-radius: 16px;
  border: 1px solid var(--gold-line, #D4AF37);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  transform: translateY(20px);
  transition: transform 0.3s ease;
  z-index: 1;
}

.lead-modal.show .lead-modal-content {
  transform: translateY(0);
}

.lead-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--white-60, #999);
  cursor: pointer;
  transition: 0.3s;
}

.lead-modal-close:hover {
  color: var(--error-red, #e74c3c);
}

.lead-modal-title {
  font-size: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--white, #fff);
  margin-bottom: 10px;
  text-align: center;
}

.lead-modal-subtitle {
  font-size: 0.95rem;
  color: var(--white-60, #999);
  text-align: center;
  margin-bottom: 20px;
}

.lead-form .form-group {
  margin-bottom: 15px;
  text-align: left;
}

.lead-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 5px;
  color: var(--white, #fff);
}

.lead-form input[type="text"],
.lead-form input[type="email"],
.lead-form input[type="tel"] {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--white-10, rgba(255, 255, 255, 0.1));
  border-radius: 8px;
  font-size: 1rem;
  background: var(--navy-deep, #07111f);
  color: var(--white, #fff);
  transition: border-color 0.3s;
  box-sizing: border-box;
}

.lead-form input:focus {
  outline: none;
  border-color: var(--gold, #D4AF37);
  background: var(--navy-mid, #14213d);
}

.lead-consent-text {
  font-size: 0.85rem;
  color: var(--white-60, #999);
  text-align: center;
  margin-top: 10px;
  line-height: 1.4;
}

.form-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 15px;
  text-align: left;
}

.form-checkbox-group input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--gold, #D4AF37);
}

.form-checkbox-group .lead-consent-text {
  margin-top: 0;
  text-align: left;
}

/* ================= RECAPTCHA TEXT ================= */
.recaptcha-text {
  font-size: 0.85rem;
  color: var(--white-60, #999);
  text-align: center;
  margin-top: 15px;
  line-height: 1.3;
}

.recaptcha-text a {
  color: var(--gold, #D4AF37);
  text-decoration: none;
}

.recaptcha-text a:hover {
  text-decoration: underline;
}

/* ================= VERIFICADOR DE NÚMERO ================= */
.top-verifier-bar {
  --secondary-gold: var(--gold);
  --error-red: #ff4d4d;
  background-color: var(--navy-deep);
  color: var(--white);
  padding: 24px 0;
  font-size: 0.9rem;
  border-top: 1px solid var(--white-10);
  border-bottom: 2px solid var(--gold);
  margin-top: 0;
}

.top-verifier-bar+footer {
  margin-top: 0;
}

.top-verifier-bar .container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
}

.verifier-text {
  color: var(--white-90);
  font-weight: 400;
}

.verifier-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 350px;
}

.top-verifier-bar input {
  padding: 12px 18px;
  border-radius: 6px;
  border: 1px solid var(--white-10);
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
  width: 100%;
  outline: none;
  font-family: inherit;
  transition: var(--transition-fast, 0.3s);
}

.top-verifier-bar input:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.05);
}

.top-verifier-bar button {
  padding: 12px 24px;
  background-color: var(--gold);
  color: var(--navy-deep);
  border: none;
  border-radius: 6px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  width: 100%;
  cursor: pointer;
  font-family: inherit;
  transition: var(--transition-fast, 0.3s);
}

.top-verifier-bar button:hover {
  background-color: var(--gold-bright);
}

#verify-result {
  display: block;
  font-weight: 600;
  min-height: 20px;
  font-size: 0.85rem;
}

@media (min-width: 768px) {
  .top-verifier-bar .container {
    flex-direction: row;
    gap: 24px;
    text-align: left;
    justify-content: center;
  }

  .verifier-text {
    max-width: 520px;
  }

  .verifier-controls {
    flex-direction: row;
    width: auto;
    max-width: none;
  }

  .top-verifier-bar input {
    width: 240px;
  }

  .top-verifier-bar button {
    width: auto;
  }

  #verify-result {
    display: flex;
    align-items: center;
  }
}