/* ═══════════════════════════════════════════════════
   MÉTODO VONAR — Stylesheet principal
   ═══════════════════════════════════════════════════ */

/* Polyfill de bandeiras emoji para Windows (Twemoji Country Flags).
   O unicode-range limita o download apenas aos códigos de bandeira,
   então o Mac/iOS continuam a usar a fonte nativa do sistema. */
@font-face {
  font-family: 'Twemoji Country Flags';
  unicode-range: U+1F1E6-1F1FF, U+1F3F4, U+E0062-E0063, U+E0065, U+E0067,
    U+E006C, U+E006E, U+E0073-E0074, U+E0077, U+E007F;
  src: url('https://cdn.jsdelivr.net/npm/country-flag-emoji-polyfill@0.1/dist/TwemojiCountryFlags.woff2') format('woff2');
  font-display: swap;
}

:root {
  /* Paleta extraída do logo */
  --bronze:        #B89968;
  --bronze-dark:   #8E7548;
  --bronze-light:  #D4BC93;
  --brown-deep:    #3A2E1F;
  --brown-soft:    #5C4A35;
  --brown-amber:   #4F2F19; /* castanho âmbar (secção "Porque é que o VONAR funciona?") */
  --beige:         #F2EDE4;
  --beige-warm:    #E8DFCF;
  --offwhite:      #FDFCF9; /* atualizado pelo cliente — quase branco com toque creme */
  --sage:          #7A8B5C;
  --sage-dark:     #5E6E45;
  --text:          #2A2419;
  --text-soft:     #6B5F4D;
  --muted:         #9C8E78;
  --border:        rgba(58, 46, 31, 0.12);
  --shadow-sm:     0 2px 12px rgba(58, 46, 31, 0.06);
  --shadow-md:     0 8px 32px rgba(58, 46, 31, 0.08);
  --shadow-lg:     0 20px 60px rgba(58, 46, 31, 0.12);

  /* Tipografia — Spectral (editorial) + Inter (UI) */
  --font-serif: 'Spectral', 'Twemoji Country Flags', Georgia, serif;
  --font-sans:  'Inter', 'Twemoji Country Flags', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Espaçamento */
  --container: 1200px;
  --container-narrow: 760px;
  --space-section: clamp(70px, 8vw, 100px);
  --radius: 14px;
  --radius-sm: 8px;

  /* Transições */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --t-fast: 0.2s var(--ease);
  --t-base: 0.4s var(--ease);
  --t-slow: 0.7s var(--ease);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--offwhite);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--bronze-dark); }
button { font: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
  font-family: var(--font-serif); /* Spectral — editorial */
  font-weight: 500;
  line-height: 1.15;
  color: var(--brown-deep);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(36px, 5.5vw, 64px); font-weight: 400; letter-spacing: -0.02em; }
h1 em { font-style: italic; font-family: var(--font-serif); font-weight: 400; color: var(--bronze-dark); }
h2 { font-size: clamp(28px, 3.8vw, 44px); font-weight: 500; }
h3 { font-size: 22px; font-weight: 600; }
h4 { font-family: var(--font-sans); font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--brown-soft); }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--bronze-dark);
  margin-bottom: 18px;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.container.narrow { max-width: var(--container-narrow); }
.center { text-align: center; }

/* ═══════════════════════ HEADER ═══════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 12px 0;
  background: rgba(242, 237, 228, 0.78); /* --beige translúcido (mesmo tom do hero) */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: padding var(--t-base), background var(--t-base), box-shadow var(--t-base);
}
.site-header.scrolled {
  padding: 8px 0;
  background: rgba(242, 237, 228, 0.94);
  box-shadow: var(--shadow-sm);
}
.header-inner { display: flex; align-items: center; justify-content: center; gap: 24px; }

.logo-link { display: flex; align-items: center; gap: 10px; }
.logo-mark { width: 34px; height: 34px; }
.logo-text {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown-deep);
  line-height: 1.1;
}
.logo-text strong { font-weight: 700; letter-spacing: 0.2em; }

.main-nav { display: flex; gap: 32px; align-items: center; }
.main-nav a {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--brown-soft);
  position: relative;
}
.main-nav a::after {
  content: ''; position: absolute; left: 0; bottom: -4px;
  width: 0; height: 1px; background: var(--bronze);
  transition: width var(--t-fast);
}
.main-nav a:hover::after { width: 100%; }

.btn-nav {
  padding: 10px 22px;
  border: 1px solid var(--brown-deep);
  border-radius: 999px;
  transition: all var(--t-fast);
}
.btn-nav:hover { background: var(--brown-deep); color: var(--offwhite); }
.btn-nav::after { display: none; }

.nav-toggle {
  display: none;
  width: 32px; height: 32px;
  flex-direction: column;
  justify-content: center; align-items: center;
  gap: 5px;
}
.nav-toggle span {
  width: 22px; height: 1.5px;
  background: var(--brown-deep);
  transition: all var(--t-fast);
}

/* ═══════════════════════ HERO ═══════════════════════ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 140px 0 40px;
  position: relative;
  background:
    radial-gradient(ellipse at top right, rgba(184, 153, 104, 0.12), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(122, 139, 92, 0.06), transparent 50%),
    var(--offwhite);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-text { max-width: 620px; }
.hero h1 { margin-bottom: 28px; }
.hero-sub {
  font-size: clamp(17px, 1.5vw, 19px);
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 38px;
  max-width: 540px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  aspect-ratio: 1;
}
.hero-circle {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--bronze-light), var(--bronze) 40%, var(--brown-soft) 80%);
  opacity: 0.18;
  filter: blur(8px);
  animation: pulse 8s ease-in-out infinite;
}
.hero-symbol {
  position: relative;
  width: 65%;
  filter: drop-shadow(0 20px 40px rgba(58, 46, 31, 0.18));
  animation: float 6s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { transform: scale(1); opacity: 0.18; } 50% { transform: scale(1.05); opacity: 0.28; } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.scroll-hint {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: var(--font-sans);
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted);
  animation: bounce 2.4s ease-in-out infinite;
}
@keyframes bounce { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* ═══════════════════════ BOTÕES ═══════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-sans); font-size: 15px; font-weight: 500;
  padding: 16px 32px;
  border-radius: 999px;
  transition: all var(--t-base);
  cursor: pointer;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--brown-deep); color: var(--offwhite);
  box-shadow: 0 4px 14px rgba(58, 46, 31, 0.18);
}
.btn-primary:hover {
  background: var(--bronze-dark); color: var(--offwhite);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(58, 46, 31, 0.22);
}
.btn-ghost {
  border: 1px solid var(--border);
  color: var(--brown-deep);
}
.btn-ghost:hover { border-color: var(--brown-deep); background: rgba(58, 46, 31, 0.04); }
.btn-sage {
  background: #6A8A5E;
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(106, 138, 94, 0.28);
  padding: 16px 30px;
  font-size: 15px;
  border-radius: 10px;
  gap: 12px;
}
.btn-sage::after {
  content: '→';
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 1.05em;
  line-height: 1;
  transition: transform var(--t-base);
}
.btn-sage:hover {
  background: #789B6B;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(106, 138, 94, 0.4);
}
.btn-sage:hover::after { transform: translateX(4px); }
.btn-lg { padding: 20px 44px; font-size: 16px; }

/* ═══════════════════════ RECONHECIMENTO ═══════════════════════ */
.recognition {
  padding: var(--space-section) 0;
  background: var(--beige);
}
.lead-text {
  font-size: clamp(20px, 2.2vw, 26px);
  font-style: italic;
  line-height: 1.6;
  text-align: center;
  color: var(--brown-soft);
  font-weight: 300;
}
.lead-text strong {
  font-style: normal;
  font-weight: 600;
  color: var(--brown-deep);
}

/* ═══════════════════════ MÉTODO ═══════════════════════ */
.method { padding: var(--space-section) 0; background: var(--beige); }

.method-block { margin-bottom: 80px; }
.method-block:last-child { margin-bottom: 0; }

/* Divisor "Os cinco pilares" / "Como participar" */
.block-label {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0 auto 48px;
  max-width: 760px;
}
.block-label::before,
.block-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 153, 104, 0.5), transparent);
}
.block-label span {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze-dark);
  white-space: nowrap;
}

/* Secção "Como participar" */
.how-section {
  padding: var(--space-section) 0;
  background: var(--beige);
}

/* Journey — fluxo horizontal conectado */
.journey {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 1080px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.j-step {
  position: relative;
  padding: 0 20px;
  text-align: center;
}

/* Linha conectora entre passos */
.j-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(50% + 50px);
  right: calc(-50% + 50px);
  height: 1px;
  background: repeating-linear-gradient(
    to right,
    rgba(184, 153, 104, 0.6) 0 6px,
    transparent 6px 12px
  );
  z-index: 0;
}

.j-num-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 26px;
  position: relative;
  z-index: 1;
}

.j-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: var(--offwhite);
  border-radius: 50%;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 32px;
  color: var(--bronze-dark);
  line-height: 1;
  letter-spacing: -0.02em;
  box-shadow:
    0 0 0 1px rgba(184, 153, 104, 0.35),
    0 8px 22px rgba(58, 46, 31, 0.08);
  transition: transform var(--t-base), background var(--t-base), color var(--t-base);
}

.j-step:hover .j-num {
  background: var(--bronze-dark);
  color: var(--offwhite);
  transform: scale(1.08);
}

.j-tag {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze-dark);
  margin: 0 0 8px;
}
.j-content h3 {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 500;
  color: var(--brown-deep);
  margin-bottom: 12px;
  letter-spacing: -0.005em;
}
.j-content p {
  font-size: 14.5px;
  color: var(--text-soft);
  line-height: 1.7;
  max-width: 240px;
  margin: 0 auto;
}

@media (max-width: 960px) {
  .journey { grid-template-columns: repeat(2, 1fr); gap: 50px 0; }
  .j-step:nth-child(2)::after { display: none; }
  .j-step:not(:last-child)::after { top: 40px; }
}

/* CTA "Quero manifestar o meu interesse" após os 4 passos */
.journey-cta {
  margin-top: clamp(50px, 6vw, 70px);
  text-align: center;
}

/* Quebra de linha apenas em ecrãs maiores (evita 3 linhas em mobile) */
@media (max-width: 600px) {
  .break-desktop { display: none; }
}

@media (max-width: 600px) {
  .journey { grid-template-columns: 1fr; gap: 36px 0; }
  .j-step { display: grid; grid-template-columns: 80px 1fr; gap: 22px; align-items: start; text-align: left; padding: 0; }
  .j-num-wrap { margin-bottom: 0; }
  .j-content p { max-width: none; margin: 0; }
  .journey-cta { margin-top: 40px; }
  /* Restaurar linha do passo 2 (foi escondida na regra de tablet, mas em mobile é vertical e deve ligar) */
  .j-step:nth-child(2)::after { display: block; }
  /* Linha vertical no mobile */
  .j-step:not(:last-child)::after {
    top: 80px;
    left: 39px;
    right: auto;
    bottom: -36px;
    width: 1px;
    height: auto;
    background: repeating-linear-gradient(
      to bottom,
      rgba(184, 153, 104, 0.6) 0 6px,
      transparent 6px 12px
    );
  }
}
.section-head { max-width: 720px; margin: 0 auto 50px; }
.section-head.center { text-align: center; }
.section-head h2 { margin-bottom: 18px; }
.section-sub {
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.65;
}

/* Layout antigo (mantido para compat se necessário) */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 4px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--border);
}

/* Novo layout editorial vertical */
.pillars-editorial {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.pillar-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 60px;
  align-items: center;
  padding: 44px 0;
  border-bottom: 1px solid rgba(184, 153, 104, 0.25);
  transition: padding-left var(--t-base);
}
.pillar-row:first-child { padding-top: 16px; }
.pillar-row:last-child  { border-bottom: none; padding-bottom: 16px; }
.pillar-row:hover { padding-left: 14px; }

.pillar-letter-big {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(90px, 11vw, 150px);
  line-height: 0.85;
  color: var(--bronze);
  text-align: center;
  letter-spacing: -0.02em;
  transition: transform 0.6s var(--ease), color 0.6s var(--ease);
}
.pillar-row:hover .pillar-letter-big {
  transform: scale(1.05) rotate(-1deg);
  color: var(--bronze-dark);
}

.pillar-content {
  padding-right: 20px;
}
.pillar-step {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze-dark);
  margin: 0 0 10px;
}
.pillar-content h3 {
  font-family: var(--font-sans);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 500;
  color: var(--brown-deep);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.pillar-content p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-soft);
  max-width: 540px;
  margin: 0;
}

@media (max-width: 700px) {
  .pillar-row {
    grid-template-columns: 84px 1fr;
    gap: 24px;
    padding: 30px 0;
  }
  .pillar-row:hover { padding-left: 0; }
  .pillar-letter-big { font-size: 64px; }
  .pillar-content { padding-right: 0; }
}

/* ── "Porque é que o VONAR funciona?" — capstone da secção do método ── */
.method-why {
  max-width: 720px;
  margin: clamp(70px, 9vw, 110px) auto 0;
  padding-top: clamp(50px, 6vw, 70px);
  border-top: 1px solid var(--border);
  text-align: center;
}
.method-why .eyebrow {
  margin-bottom: 14px;
}
.method-why h3 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(26px, 3.4vw, 36px);
  line-height: 1.25;
  color: var(--brown-deep);
  margin: 0 0 32px;
  letter-spacing: -0.005em;
}
.method-why p {
  font-family: var(--font-serif);
  font-size: 16.5px;
  line-height: 1.78;
  color: var(--text-soft);
  max-width: 620px;
  margin: 0 auto 18px;
}
.method-why p:last-of-type { margin-bottom: 0; }
.method-why strong {
  color: var(--brown-deep);
  font-weight: 600;
  font-family: var(--font-sans);
  font-size: 0.96em;
  letter-spacing: 0.005em;
}
.method-why .method-why-close {
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px dashed rgba(184, 153, 104, 0.35);
  color: var(--bronze-dark);
  font-style: italic;
  font-size: 16px;
}

@media (max-width: 700px) {
  .method-why { margin-top: 60px; padding-top: 44px; }
  .method-why h3 { margin-bottom: 24px; }
  .method-why p { font-size: 15.5px; }
  .method-why .method-why-close { margin-top: 26px; padding-top: 20px; }
}

/* ═══════════════════════ DEPOIMENTOS ═══════════════════════ */
.testimonials {
  padding: var(--space-section) 0;
  background: var(--offwhite);
}
.testimonials-cta {
  background: var(--beige);
  padding: var(--space-section) 0;
}
.testimonials-cta p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-soft);
  margin-bottom: 28px;
}
.testimonials-swiper, .long-swiper {
  padding: 10px 28px 20px !important;
  max-width: 1120px;
  margin: 0 auto;
  overflow: hidden !important;
  position: relative;
}
.testimonials-swiper .swiper-wrapper {
  align-items: center;
  display: flex;
  flex-direction: row;
}
.testimonials-swiper .swiper-slide {
  flex-shrink: 0;
  height: auto;
}
.swiper-slide { height: auto; }

/* Profundidade sutil: central em destaque, laterais ligeiramente atrás */
.testimonials-swiper .swiper-slide {
  opacity: 0.55;
  transform: scale(0.92);
  filter: saturate(0.85);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease), filter 0.6s var(--ease), box-shadow 0.6s var(--ease);
  z-index: 1;
}
.testimonials-swiper .swiper-slide-active {
  opacity: 1;
  transform: scale(1.06);
  filter: saturate(1);
  z-index: 10;
}
.testimonials-swiper .swiper-slide-active .video-card {
  box-shadow: var(--shadow-lg);
}

/* Esconde o pulso do play em slides não-ativos */
.testimonials-swiper .swiper-slide:not(.swiper-slide-active) .play-btn::before {
  display: none;
}

/* Paginação (dots) */
.testimonials-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}
.testimonials-pagination .vdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(184, 153, 104, 0.35);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  border: none;
  padding: 0;
}
.testimonials-pagination .vdot:hover { background: var(--bronze); }
.testimonials-pagination .vdot.is-active {
  background: var(--bronze-dark);
  width: 24px;
  border-radius: 4px;
}

.video-card {
  background: var(--offwhite);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.video-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.video-frame {
  position: relative;
  aspect-ratio: 9 / 13;
  background:
    radial-gradient(ellipse at top, rgba(212, 188, 147, 0.5), transparent 70%),
    radial-gradient(ellipse at bottom, rgba(58, 46, 31, 0.25), transparent 70%),
    linear-gradient(135deg, var(--beige-warm), var(--beige));
  overflow: hidden;
  cursor: pointer;
}
.video-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
  transition: transform var(--t-base);
}
.video-card:hover .video-poster { transform: scale(1.04); }
.video-card.is-playing .video-poster { opacity: 0; }

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  z-index: 4;
}


/* Frame dourado retangular sobre o vídeo */
.video-frame::after {
  content: '';
  position: absolute;
  inset: 7% 9%;
  border: 1.2px solid rgba(212, 164, 76, 0.65);
  pointer-events: none;
  z-index: 2;
  border-radius: 2px;
  transition: opacity 0.3s var(--ease);
}
.video-card.is-playing .video-frame::after { opacity: 0; }

/* Gradiente sutil sobre o poster para legibilidade */
.video-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.35));
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.3s var(--ease);
}
.video-card.is-playing .video-frame::before { opacity: 0; }

/* Botão de play centralizado */
.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 78px; height: 78px;
  border-radius: 50%;
  background: rgba(184, 153, 104, 0.95);
  color: #FAF7F2;
  display: flex; align-items: center; justify-content: center;
  z-index: 3;
  cursor: pointer;
  transition: transform var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
.play-btn::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.45);
  animation: playPulse 2.4s ease-out infinite;
  pointer-events: none;
}
.play-btn svg { width: 32px; height: 32px; margin-left: 4px; }
.video-card:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--bronze-dark);
}
@keyframes playPulse {
  0%   { transform: scale(0.95); opacity: 0.9; }
  100% { transform: scale(1.45); opacity: 0; }
}
.video-meta {
  display: none;
  padding: 22px 26px 24px;
  flex-direction: column;
  gap: 8px;
  position: relative;
}
.video-meta::before {
  content: '';
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--bronze);
  margin-bottom: 4px;
}
.video-meta strong {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  color: var(--brown-deep);
  line-height: 1.1;
  letter-spacing: -0.005em;
}
.video-meta span {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  color: var(--bronze-dark);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Setas de navegação dos carrosséis */
.swiper-button-prev, .swiper-button-next {
  background: var(--brown-deep) !important;
  color: var(--offwhite) !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 0 !important;
  transition: all var(--t-fast);
  box-shadow: var(--shadow-md);
}
.swiper-button-prev:hover, .swiper-button-next:hover {
  background: var(--bronze-dark) !important;
  transform: translateY(-50%) scale(1.08);
}
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 15px !important;
  font-weight: 700 !important;
  color: var(--offwhite) !important;
}
.swiper-button-disabled { opacity: 0.35 !important; cursor: default; }

/* Carousel stage: wrapper relativo para acomodar setas */
.carousel-stage {
  position: relative;
  max-width: 1260px;
  margin: 0 auto;
}
.carousel-stage > .swiper-button-prev,
.carousel-stage > .swiper-button-next {
  position: absolute;
  z-index: 20;
}
.carousel-stage > .swiper-button-prev { left: 30px; }
.carousel-stage > .swiper-button-next { right: 30px; }
@media (max-width: 700px) {
  .carousel-stage > .swiper-button-prev { left: 10px; }
  .carousel-stage > .swiper-button-next { right: 10px; }
}
/* ═══════════════════════ RECONHECIMENTO (ESPELHO) ═══════════════════════ */
.reflection-section {
  padding: var(--space-section) 0;
  background: var(--offwhite);
  position: relative;
  overflow: hidden;
}
.reflection-section::before,
.reflection-section::after {
  content: '"';
  position: absolute;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(180px, 22vw, 320px);
  color: rgba(184, 153, 104, 0.06);
  line-height: 0.7;
  pointer-events: none;
  user-select: none;
}
.reflection-section::before {
  top: 40px; left: 4%;
}
.reflection-section::after {
  bottom: 100px; right: 4%;
  transform: rotate(180deg);
}

.reflection-section .section-head,
.reflection-section h2 {
  position: relative;
  z-index: 1;
}

.reflections {
  margin: 60px auto 0;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  z-index: 1;
}

.reflections blockquote {
  position: relative;
  padding: 28px 0 28px 40px;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
  color: var(--brown-deep);
  text-align: left;
  border-bottom: 1px solid var(--border);
  transition: padding-left var(--t-base);
}
.reflections blockquote:last-child { border-bottom: none; }
.reflections blockquote:hover { padding-left: 50px; }

.reflections .quote-mark {
  position: absolute;
  left: 0; top: 18px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 48px;
  color: var(--bronze);
  line-height: 1;
  font-weight: 400;
}

.reflection-footer {
  margin-top: 60px;
  position: relative;
  z-index: 1;
}
.reflection-footer .hr-line {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--bronze);
  margin: 0 auto 26px;
}
.reflection-footer p {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--brown-soft);
  margin: 0;
}
.reflection-footer em {
  font-style: italic;
  font-weight: 600;
  color: var(--bronze-dark);
}

/* Antigo .for-whom mantido para compat — não usado */
.for-whom {
  padding: var(--space-section) 0;
  background: var(--offwhite);
}
.for-whom-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.for-whom-grid h2 { margin-bottom: 0; }
.check-list { list-style: none; }
.check-list li {
  position: relative;
  padding: 22px 0 22px 44px;
  font-size: 18px;
  color: var(--text);
  line-height: 1.55;
  border-bottom: 1px solid var(--border);
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 28px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--bronze);
  background: radial-gradient(circle at 30% 30%, var(--bronze-light), var(--bronze));
}
.check-list li::after {
  content: '';
  position: absolute;
  left: 8px; top: 35px;
  width: 8px; height: 4px;
  border-left: 1.5px solid var(--offwhite);
  border-bottom: 1.5px solid var(--offwhite);
  transform: rotate(-45deg);
}

/* ═══════════════════════ SOBRE A ESTELA ═══════════════════════ */
.about-section {
  padding: var(--space-section) 0;
  background: var(--offwhite);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 90px;
}
.about-photo-wrap {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--beige);
  box-shadow: var(--shadow-md);
}
.about-photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-text h2 {
  font-size: clamp(34px, 4vw, 48px);
  margin-bottom: 22px;
}
.about-lead {
  font-size: 18px;
  font-style: italic;
  color: var(--brown-soft);
  line-height: 1.65;
  margin-bottom: 22px;
}
.about-text p {
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-text strong { color: var(--brown-deep); font-weight: 600; }

/* Placeholder de foto */
.photo-placeholder {
  width: 100%; height: 100%;
  aspect-ratio: 4 / 5;
  background:
    repeating-linear-gradient(45deg, rgba(184, 153, 104, 0.08) 0 8px, transparent 8px 16px),
    var(--beige);
  border: 1.5px dashed rgba(184, 153, 104, 0.5);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--bronze-dark);
  text-align: center;
}
.photo-placeholder span { font-size: 36px; }
.photo-placeholder small {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
}
.photo-placeholder.small { aspect-ratio: 4 / 3; }

@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-photo-wrap, .photo-placeholder { max-width: 380px; margin: 0 auto; }
}

/* ═══════════════════════ O CASAL + CREDENCIAIS ═══════════════════════ */
.credentials-section {
  padding: var(--space-section) 0;
  background: var(--beige);
}
.credentials-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.credentials-text h2 {
  font-size: clamp(34px, 4vw, 48px);
  margin-bottom: 22px;
}
.cred-lead {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-soft);
  margin-bottom: 30px;
  max-width: 520px;
}
.cred-divider {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 30px 0 22px;
}
.cred-divider .hr-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}
.cred-divider small {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze-dark);
  white-space: nowrap;
}

.credentials-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.credentials-list li {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--brown-deep);
  border-bottom: 1px solid var(--border);
}
.credentials-list li:last-child { border-bottom: none; }
.cred-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--bronze);
  flex-shrink: 0;
}

/* Foto do casal */
.couple-photo-wrap {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--offwhite);
  box-shadow: var(--shadow-md);
}
.couple-photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.photo-placeholder.couple { aspect-ratio: 4 / 5; }
.couple-caption {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 13px;
  color: var(--muted);
  text-align: right;
  margin: 12px 0 0;
}

@media (max-width: 880px) {
  .credentials-grid { grid-template-columns: 1fr; gap: 50px; }
  .credentials-text { order: 2; }
  .credentials-image { order: 1; max-width: 380px; margin: 0 auto; }
  .couple-caption { text-align: center; }
}

/* ═══════════════════════ CTA INTERMÉDIA ═══════════════════════ */
.mid-cta {
  background: var(--offwhite);
  padding: var(--space-section) 0;
}
.mid-cta h2 {
  font-size: clamp(28px, 3.4vw, 38px);
  margin-bottom: 16px;
}
.mid-cta p {
  color: var(--text-soft);
  font-size: 17px;
  margin-bottom: 28px;
}

/* ═══════════════════════ ALCANCE GLOBAL (ÓRBITA) ═══════════════════════ */
.reach-section {
  padding: var(--space-section) 0;
  background: var(--offwhite);
  overflow: hidden;
  position: relative;
}
.reach-section h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--bronze-dark);
}


/* Linha de stats */
.reach-stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  padding: 30px 0;
  flex-wrap: wrap;
}
.reach-stats-row > div:not(.divider) {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.reach-stats-row strong {
  font-family: var(--font-sans);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 700;
  color: var(--brown-deep);
  letter-spacing: -0.02em;
  line-height: 1;
}
.reach-stats-row span {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.reach-stats-row .divider {
  width: 1px; height: 30px;
  background: var(--border);
}

/* Marquee horizontal infinito */
.route-marquee {
  position: relative;
  margin: 50px -28px 30px;
  padding: 30px 0;
  overflow: hidden;
  /* fade nas bordas */
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 6%, black 94%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, black 6%, black 94%, transparent 100%);
}
.route-wave {
  position: absolute;
  top: 50%; left: 0; right: 0;
  width: 100%;
  height: 100px;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
}
.route-track {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 56px;
  width: max-content;
  list-style: none;
  padding: 0;
  margin: 0;
  animation: marqueeScroll 50s linear infinite;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.route-stop {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: transform var(--t-base);
}
.route-stop:hover { transform: translateY(-3px); }

.flag-circle {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--offwhite);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  line-height: 1;
  box-shadow:
    0 0 0 1px rgba(184, 153, 104, 0.35),
    0 8px 22px rgba(58, 46, 31, 0.1);
  transition: box-shadow var(--t-base);
  animation: flagBob 4.5s ease-in-out infinite;
}
.route-stop:nth-child(2n) .flag-circle  { animation-delay: 0.4s; }
.route-stop:nth-child(3n) .flag-circle  { animation-delay: 0.8s; }
.route-stop:nth-child(4n) .flag-circle  { animation-delay: 1.2s; }
.route-stop:nth-child(5n) .flag-circle  { animation-delay: 1.6s; }

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

.route-stop:hover .flag-circle {
  box-shadow:
    0 0 0 1px var(--bronze-dark),
    0 10px 28px rgba(184, 153, 104, 0.25);
}
.route-label {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--brown-soft);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

@media (max-width: 700px) {
  .route-marquee { margin: 30px -20px 20px; }
  .route-track { gap: 36px; animation-duration: 40s; }
  .flag-circle { width: 54px; height: 54px; font-size: 24px; }
  .reach-stats-row { gap: 22px; }
  .reach-stats-row .divider { display: none; }
}

/* ═══════════════════════ LINHA DO TEMPO ═══════════════════════ */
.timeline-section {
  padding: var(--space-section) 0;
  background: var(--beige);
  position: relative;
}

.timeline {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  padding: 10px 0;
  --timeline-progress: 0%;
}
/* Linha vertical central (fundo - tracejada apagada) */
.timeline::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  background: repeating-linear-gradient(
    to bottom,
    rgba(184, 153, 104, 0.3) 0,
    rgba(184, 153, 104, 0.3) 5px,
    transparent 5px,
    transparent 12px
  );
  z-index: 0;
}
/* Linha que se preenche conforme o scroll */
.timeline::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: var(--timeline-progress);
  background: linear-gradient(to bottom, var(--bronze), var(--bronze-dark));
  box-shadow: 0 0 12px rgba(184, 153, 104, 0.4);
  z-index: 1;
  transition: height 0.15s linear;
  border-radius: 1px;
}

.t-item {
  display: grid;
  grid-template-columns: 1fr 48px 1fr;
  gap: 0;
  align-items: center;
  margin-bottom: 56px;
  position: relative;
}
.t-item:last-child { margin-bottom: 0; }

.t-image {
  display: block;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.t-image::after {
  content: '';
  position: absolute;
  inset: 6%;
  border: 1px solid rgba(212, 164, 76, 0.4);
  border-radius: 4px;
  pointer-events: none;
}
.t-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--t-base);
}
.t-item:hover .t-image { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.t-item:hover .t-image img { transform: scale(1.03); }

/* Imagem à esquerda por defeito, à direita quando .reverse */
.t-item .t-image { grid-column: 1; justify-self: end; margin-right: 12px; }
.t-item.reverse .t-image { grid-column: 3; grid-row: 1; justify-self: start; margin-left: 12px; margin-right: 0; }

.t-content {
  padding: 0 36px;
}
.t-tag {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bronze-dark);
  margin-bottom: 10px;
}
.t-content h3 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 1.9vw, 22px);
  line-height: 1.35;
  color: var(--brown-deep);
  margin-bottom: 10px;
  letter-spacing: -0.005em;
}
.t-content p {
  color: var(--text-soft);
  font-size: 14.5px;
  line-height: 1.65;
}

/* Texto à direita (padrão), espaço vazio à esquerda */
.t-item .t-content { grid-column: 3; padding-left: 50px; padding-right: 0; text-align: left; }

/* Inverso: texto à esquerda */
.t-item.reverse .t-content {
  grid-column: 1;
  grid-row: 1;
  padding-right: 50px;
  padding-left: 0;
  text-align: right;
}

/* Marcador (círculo) no centro */
.t-item::before {
  content: '';
  grid-column: 2;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--offwhite);
  border: 2px solid rgba(184, 153, 104, 0.45);
  box-shadow: 0 0 0 5px var(--beige);
  margin: 0 auto;
  position: relative;
  z-index: 3;
  transition: all 0.4s var(--ease);
}
.t-item.is-passed::before {
  background: var(--bronze);
  border-color: var(--bronze-dark);
  box-shadow:
    0 0 0 5px var(--beige),
    0 0 18px rgba(184, 153, 104, 0.55);
  transform: scale(1.2);
}

/* Mobile: tudo em coluna, linha à esquerda */
@media (max-width: 820px) {
  .timeline::before,
  .timeline::after { left: 22px; transform: none; }
  .t-item {
    grid-template-columns: 44px 1fr;
    gap: 24px;
    margin-bottom: 56px;
  }
  .t-item::before {
    grid-column: 1;
    margin: 0;
    align-self: flex-start;
    margin-top: 8px;
  }
  .t-item .t-image,
  .t-item.reverse .t-image {
    grid-column: 2;
    grid-row: 1;
    aspect-ratio: 4 / 5;
    max-width: 260px;
    margin: 0 0 18px 0;
    justify-self: start;
  }
  .t-item .t-content,
  .t-item.reverse .t-content {
    grid-column: 2;
    grid-row: 2;
    padding: 0 !important;
    text-align: left !important;
  }
}

/* ═══════════════════════ FAQ ═══════════════════════ */
.faq { padding: var(--space-section) 0; background: var(--beige); }
.faq-list { margin-top: 20px; }
.faq details {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 18px;
  color: var(--brown-deep);
  padding-right: 40px;
  position: relative;
  transition: color var(--t-fast);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  font-weight: 300;
  color: var(--bronze);
  transition: transform var(--t-base);
}
.faq details[open] summary { color: var(--bronze-dark); }
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p {
  margin-top: 14px;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.7;
  max-width: 660px;
}

/* ═══════════════════════ CTA FINAL ═══════════════════════ */
.final-cta {
  padding: var(--space-section) 0;
  background:
    radial-gradient(ellipse at center, rgba(184, 153, 104, 0.08), transparent 70%),
    var(--offwhite);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Ondas decorativas full-width */
.cta-wave-top,
.cta-wave-bottom {
  position: absolute;
  left: 0;
  width: 100%;
  height: 120px;
  pointer-events: none;
  animation: waveDrift 20s ease-in-out infinite;
}
.cta-wave-top { top: 8%; }
.cta-wave-bottom { bottom: 8%; animation-direction: reverse; }

@keyframes waveDrift {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(-30px); }
}

/* Mini-onda sob o título */
.cta-wave-mini {
  display: block;
  width: 200px;
  height: 18px;
  margin: 0 auto 36px;
  animation: waveMini 4s ease-in-out infinite;
}
@keyframes waveMini {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-3px); }
}

.final-cta h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(40px, 5.4vw, 64px);
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.final-desc {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(17px, 1.8vw, 20px);
  color: var(--brown-soft);
  line-height: 1.65;
  margin-bottom: 38px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
.final-desc strong {
  font-style: normal;
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--brown-deep);
  letter-spacing: 0.01em;
}

.final-cta .btn { position: relative; z-index: 1; }

/* Onda pulsante (subtil) no CTA final para chamar a atenção */
.final-cta .btn-sage {
  animation:
    ctaBob 3.6s ease-in-out infinite,
    ctaPulse 3s ease-out infinite;
}
.final-cta .btn-sage:hover { animation: none; }

@keyframes ctaBob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-1.5px); }
}
@keyframes ctaPulse {
  0% {
    box-shadow:
      0 0 0 0 rgba(106, 138, 94, 0.34),
      0 6px 20px rgba(106, 138, 94, 0.28);
  }
  60% {
    box-shadow:
      0 0 0 10px rgba(106, 138, 94, 0.06),
      0 6px 20px rgba(106, 138, 94, 0.28);
  }
  100% {
    box-shadow:
      0 0 0 14px rgba(106, 138, 94, 0),
      0 6px 20px rgba(106, 138, 94, 0.28);
  }
}

@media (prefers-reduced-motion: reduce) {
  .final-cta .btn-sage { animation: none; }
}

.final-cta .micro {
  font-family: var(--font-sans);
  font-size: 12px;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 24px 0 0;
  position: relative;
  z-index: 1;
}

/* ═══════════════════════ FOOTER ═══════════════════════ */
.site-footer {
  background: var(--brown-deep);
  color: rgba(250, 247, 242, 0.75);
  padding: 80px 0 28px;
}
.site-footer--minimal { padding: 28px 0; }
.site-footer--minimal .footer-bottom { padding-top: 0; border-top: none; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(250, 247, 242, 0.1);
}
.footer-logo { width: 50px; margin-bottom: 16px; filter: brightness(0) invert(1) opacity(0.9); }
.footer-tag {
  font-style: italic;
  font-size: 15px;
  max-width: 280px;
  color: rgba(250, 247, 242, 0.65);
}
.site-footer h4 { color: var(--bronze-light); margin-bottom: 18px; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { color: rgba(250, 247, 242, 0.75); font-size: 15px; }
.site-footer a:hover { color: var(--bronze-light); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  font-size: 12px;
  color: rgba(250, 247, 242, 0.5);
}
.footer-bottom small,
.footer-bottom a {
  font-family: var(--font-sans);
  font-size: 12px;
  color: rgba(250, 247, 242, 0.5);
  letter-spacing: 0.04em;
  line-height: 1;
}
.footer-bottom a:hover { color: var(--bronze-light); }

/* ═══════════════════════ WHATSAPP FLUTUANTE ═══════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 99;
  width: 56px; height: 56px;
  background: #6A8A5E;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(106, 138, 94, 0.4);
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast), opacity 0.6s ease;
  opacity: 0;
  pointer-events: none;
}
.whatsapp-float.is-visible {
  opacity: 1;
  pointer-events: auto;
  animation: waFloatIn 0.6s var(--ease);
}
@keyframes waFloatIn {
  from { opacity: 0; transform: translateY(20px) scale(0.85); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.whatsapp-float:hover { background: #789B6B; transform: scale(1.08); box-shadow: 0 8px 28px rgba(106, 138, 94, 0.5); }
.whatsapp-float svg { width: 28px; height: 28px; }

/* ═══════════════════════ ANIMAÇÕES DE ENTRADA ═══════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════ RESPONSIVO ═══════════════════════ */
@media (max-width: 960px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }

  .hero { padding: 120px 0 60px; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-text { max-width: 100%; margin: 0 auto; }
  .hero-sub { margin: 0 auto 38px; }
  .hero-actions { justify-content: center; }
  .hero-visual { max-width: 340px; margin: 0 auto; }
  .scroll-hint { display: none; }

  .for-whom-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  /* Menu mobile aberto */
  .site-header.menu-open { background: var(--offwhite); }
  .site-header.menu-open .main-nav {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--offwhite);
    padding: 24px 28px 32px;
    gap: 20px; align-items: flex-start;
    box-shadow: var(--shadow-md);
  }
  .site-header.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .site-header.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .site-header.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .pillar { padding: 32px 24px; }
  .pillar-letter { font-size: 44px; }
  .check-list li { font-size: 16px; padding: 18px 0 18px 38px; }
  .check-list li::before { width: 20px; height: 20px; top: 22px; }
  .check-list li::after { top: 28px; left: 7px; }
  .testimonials-swiper, .long-swiper { padding: 0 20px 50px !important; }
  .swiper-button-prev, .swiper-button-next { display: none !important; }
}

/* ═══════════════════════════════════════════════════════════
   v21 — REVISÃO CLIENTE (Maio 2026)
   - Hero compacto / sem logo
   - Paleta: creme (primeira dobra) → branco → âmbar escuro (VONAR funciona) → ...
   - Nova secção "Porque é que o VONAR funciona?" sobre castanho âmbar
   - Nova secção "Sinais de uma vida que pede reorganização"
   - Nova secção "Sem fronteiras" minimal (12 países, 2 linhas)
   - Bio editorial da Estela (longa, com pull-quote e missão)
   ═══════════════════════════════════════════════════════════ */

/* HERO COMPACTO — primeira dobra creme, sem logo, centrado */
body { background: var(--beige); }

.hero.hero--compact {
  min-height: auto;
  padding: 110px 0 24px;
  background: var(--beige);
  display: block;
}
.hero.hero--compact::before,
.hero.hero--compact::after { display: none; }
.hero-inner.hero-inner--center {
  display: block;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}
.hero-text--center {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.hero--compact h1 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--brown-deep);
  margin-bottom: 22px;
}
.hero--compact h1 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--bronze-dark);
}
.hero--compact .hero-sub {
  font-family: var(--font-serif);
  font-size: clamp(16px, 1.5vw, 18.5px);
  line-height: 1.7;
  color: var(--brown-soft);
  margin: 0 auto;
  max-width: 700px;
}

@media (max-width: 700px) {
  .hero.hero--compact { padding: 110px 0 36px; }
}

/* TESTIMONIALS — tom mais claro para contrastar com o hero creme */
.testimonials {
  background: var(--offwhite);
  padding: 28px 0 18px;
}
.testimonials .section-head { margin-bottom: 20px; }
.testimonials-pagination { margin-top: 14px; }

/* CTA pós-vídeos — continua o tom claro do carrossel; botão em cima, texto abaixo */
.testimonials-cta { background: var(--offwhite); padding: 18px 0 64px; }
.testimonials-cta--inverted .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testimonials-cta--inverted .btn-sage {
  margin-bottom: 30px;
}
.testimonials-cta--inverted p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(15.5px, 1.5vw, 17.5px);
  line-height: 1.75;
  color: var(--brown-soft);
  margin: 0;
  max-width: 680px;
}

/* ═══════════════════════ WHY SECTION (Porque é que o VONAR funciona?) — castanho âmbar */
.why-section {
  background: var(--brown-amber);
  color: rgba(250, 247, 242, 0.86);
  padding: 0 0 clamp(80px, 9vw, 110px);
  position: relative;
}

/* Barra V·O·N·A·R */
.vonar-bar {
  border-bottom: 1px solid rgba(212, 188, 147, 0.18);
  padding: 22px 28px;
}
.vonar-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: nowrap;
}
.vonar-bar > .vonar-bar-inner > span:not(.vbar-sep) {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(212, 188, 147, 0.7);
  white-space: nowrap;
}
.vonar-bar strong {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 19px;
  color: var(--bronze-light);
  letter-spacing: 0;
  text-transform: none;
}
.vonar-bar i {
  font-style: normal;
  color: rgba(212, 188, 147, 0.45);
  margin: 0 2px;
}
.vbar-sep {
  display: inline-block;
  width: 1px;
  height: 22px;
  background: rgba(212, 188, 147, 0.25);
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .vonar-bar { padding: 18px 22px; }
  .vonar-bar-inner { flex-wrap: wrap; justify-content: center; gap: 10px 14px; }
  .vbar-sep { display: none; }
  .vonar-bar > .vonar-bar-inner > span:not(.vbar-sep) { font-size: 10px; }
  .vonar-bar strong { font-size: 16px; }
}

.why-section .container { padding-top: clamp(70px, 10vw, 120px); }

.why-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--offwhite);
  margin: 0 0 22px;
}
.why-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--bronze-light);
}

.why-epigraph {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(16px, 1.7vw, 19px);
  color: var(--bronze-light);
  margin: 0 0 clamp(40px, 5vw, 60px);
}
.why-epigraph em {
  color: #E6C792;
  font-style: italic;
}

.why-body {
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
}
.why-body p {
  font-family: var(--font-serif);
  font-size: 16.5px;
  line-height: 1.85;
  color: rgba(250, 247, 242, 0.78);
  margin: 0 0 22px;
}
.why-body p:last-child { margin-bottom: 0; }

.why-close {
  margin: clamp(50px, 6vw, 70px) auto 0;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--bronze-light);
  font-size: 15px;
  text-align: center;
  max-width: 540px;
}

/* ═══════════════════════ SIGNS SECTION (Sinais de uma vida) */
.signs-section {
  background: var(--beige);
  padding: var(--space-section) 0;
}
.signs-section h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--bronze-dark);
}

.signs-list {
  list-style: none;
  margin: 50px auto 0;
  max-width: 860px;
  padding: 0;
  border-top: 1px solid rgba(184, 153, 104, 0.3);
}
.sign-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 30px;
  padding: 26px 4px;
  border-bottom: 1px solid rgba(184, 153, 104, 0.3);
  align-items: start;
}
.sign-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 19px;
  color: var(--bronze-dark);
  letter-spacing: 0.04em;
  text-transform: lowercase;
  align-self: start;
  padding-top: 3px;
}
.sign-item p {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(17.5px, 1.7vw, 19.5px);
  line-height: 1.55;
  color: var(--brown-soft);
  margin: 0;
}

.signs-footer {
  margin: clamp(40px, 5vw, 60px) auto 0;
  text-align: center;
  max-width: 640px;
}
.signs-close {
  font-family: var(--font-serif);
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-soft);
  margin-bottom: 26px;
}
.signs-close em {
  color: var(--bronze-dark);
  font-style: italic;
}

@media (max-width: 600px) {
  .sign-item { grid-template-columns: 42px 1fr; gap: 16px; padding: 20px 0; }
  .sign-num { font-size: 17px; }
  .sign-item p { font-size: 16.5px; line-height: 1.55; }
}

/* Botão outline (para fundos creme) — verde sage */
.btn-outline-dark {
  background: transparent;
  color: #6A8A5E;
  border: 1.5px solid #6A8A5E;
  padding: 14px 28px;
  box-shadow: none;
  border-radius: 10px;
  gap: 12px;
}
.btn-outline-dark::after {
  content: '→';
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 1.05em;
  line-height: 1;
  transition: transform var(--t-base);
}
.btn-outline-dark:hover {
  background: #6A8A5E;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(106, 138, 94, 0.25);
}
.btn-outline-dark:hover::after { transform: translateX(4px); }

/* ═══════════════════════ REACH MINIMAL (Sem fronteiras) */
.reach-section--minimal {
  background: var(--offwhite);
  padding: var(--space-section) 0;
  overflow: visible;
}
.reach-section--minimal h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--bronze-dark);
}
.reach-section--minimal h2 { margin-bottom: 22px; }
.reach-section--minimal .section-sub {
  font-size: 16.5px;
  line-height: 1.7;
}

.countries-grid {
  max-width: 1120px;
  margin: 44px auto 32px;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.countries-row {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}
.countries-row + .countries-row { margin-top: 22px; }
.countries-row li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 18px;
  position: relative;
  flex: 0 0 auto;
}
.countries-row li + li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 22px;
  background: rgba(184, 153, 104, 0.32);
}
.c-flag {
  font-size: 17px;
  line-height: 1;
  filter: saturate(0.5) opacity(0.72);
  transition: filter var(--t-base);
}
.countries-row li:hover .c-flag {
  filter: saturate(1) opacity(1);
}
.c-name {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 15.5px;
  letter-spacing: 0.01em;
  color: var(--brown-soft);
  white-space: nowrap;
}

.reach-signature {
  text-align: center;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}
.reach-signature strong {
  font-family: var(--font-sans);
  font-weight: 600;
  font-style: normal;
  color: var(--brown-deep);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
}
.reach-signature span {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14.5px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

@media (max-width: 980px) {
  /* Em tablet e mobile, organizar em grelha 4×N para layout simétrico
     (8 países = 4×2, 4 países = 4×1) */
  .countries-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px 0;
    flex-wrap: initial;
  }
  .countries-row li {
    padding: 8px 6px;
  }
  .countries-row li + li::before { display: none; }
  .countries-row + .countries-row { margin-top: 12px; }
  .c-name { font-size: 14px; }
}
@media (max-width: 380px) {
  /* Em mobile muito pequeno, baixar para 2 colunas para não cortar nomes longos */
  .countries-row { grid-template-columns: repeat(2, 1fr); gap: 16px 0; }
  .countries-row li { padding: 4px 6px; }
  .c-name { font-size: 14.5px; }
}

/* ═══════════════════════ TIMELINE (Histórias escritas) — refinos */
.timeline-section { background: var(--beige); }
.timeline-section h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--bronze-dark);
}

/* ═══════════════════════ COMO FUNCIONA — branco, com algarismos romanos */
.how-section { background: var(--offwhite); }
.how-section h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--bronze-dark);
}
.j-num {
  font-size: 24px;
  letter-spacing: 0;
}

/* ═══════════════════════ ESTELA EDITORIAL */
.about-section--editorial {
  background: var(--beige-warm);
  padding: var(--space-section) 0;
}
.about-section--editorial .about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.4fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 0;
}
.about-section--editorial .about-image {
  position: relative;
}
.about-section--editorial .about-photo-wrap {
  position: sticky;
  top: 110px;
  aspect-ratio: 4 / 5;
  background: var(--brown-deep);
  border: none;
  border-radius: 0;
  box-shadow: 0 14px 40px rgba(58, 46, 31, 0.18);
  padding: 0;
  max-width: 360px;
  overflow: hidden;
}
/* Linha fina dourada por dentro da foto (moldura editorial) */
.about-section--editorial .about-photo-wrap::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(212, 188, 147, 0.38);
  pointer-events: none;
  z-index: 2;
}
.about-section--editorial .about-photo-wrap img {
  border-radius: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  display: block;
}
/* Etiquetas E.P / ESTELA PASSOS sobre a foto */
.about-section--editorial .about-photo-wrap .photo-tag-tr,
.about-section--editorial .about-photo-wrap .photo-tag-bl {
  position: absolute;
  z-index: 3;
  color: var(--bronze-light);
  pointer-events: none;
}
.about-section--editorial .about-photo-wrap .photo-tag-tr {
  top: 18px; right: 22px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.06em;
}
.about-section--editorial .about-photo-wrap .photo-tag-bl {
  bottom: 18px; left: 22px;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.22em;
}
.about-section--editorial .about-text {
  max-width: 620px;
}
.about-section--editorial .about-text h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-style: normal;
  font-size: clamp(32px, 3.8vw, 44px);
  letter-spacing: -0.01em;
  margin-bottom: 26px;
}
.about-section--editorial .about-text p {
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 1.78;
  color: var(--text-soft);
  margin-bottom: 18px;
}

/* Pull-quote no meio da bio */
.pull-quote {
  margin: 40px auto;
  text-align: center;
  max-width: 480px;
}
.pq-rule {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 153, 104, 0.55), transparent);
  margin: 0;
  position: relative;
}
.pq-rule::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 6px; height: 6px;
  background: var(--bronze);
  border-radius: 1px;
}
.pull-quote blockquote {
  padding: 26px 0 12px;
  margin: 0;
}
.pull-quote blockquote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(17px, 1.85vw, 21px);
  line-height: 1.45;
  color: var(--brown-deep);
  margin: 0 !important;
}
.pull-quote figcaption {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze-dark);
  margin-bottom: 22px;
}

/* Espaço que criou */
.about-spaces {
  margin: 38px 0 28px;
  padding-top: 26px;
  border-top: 1px solid rgba(184, 153, 104, 0.3);
}
.about-spaces .eyebrow { margin-bottom: 14px; }
.spaces-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.spaces-list li {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16.5px;
  color: var(--brown-deep);
  padding: 5px 0;
}

/* Formações — bases formativas que sustentam o VONAR */
.about-formations {
  margin-top: 38px;
  padding-top: 28px;
  border-top: 1px solid rgba(184, 153, 104, 0.3);
}
.about-formations h3 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.2;
  color: var(--brown-deep);
  margin-bottom: 24px;
  letter-spacing: -0.005em;
  text-align: left;
}
.formations-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.formations-list li {
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--brown-deep);
  padding: 10px 0;
  border-bottom: 1px solid rgba(184, 153, 104, 0.15);
  display: flex;
  align-items: center;
  gap: 14px;
  letter-spacing: 0.005em;
}
.formations-list li:last-child { border-bottom: none; }
.formations-list li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bronze);
}

/* Missão — barra dourada à esquerda */
.about-mission {
  margin-top: 30px !important;
  padding: 18px 22px !important;
  border-left: 3px solid var(--bronze) !important;
  background: rgba(184, 153, 104, 0.08);
  font-family: var(--font-serif) !important;
  font-style: italic;
  font-size: 15.5px !important;
  line-height: 1.7 !important;
  color: var(--brown-deep) !important;
}

@media (max-width: 880px) {
  .about-section--editorial .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-section--editorial .about-photo-wrap {
    position: static;
    max-width: 320px;
    margin: 0 auto;
  }
}

/* ═══════════════════════ CTA FINAL — creme suave, copy nova */
.final-cta {
  background:
    radial-gradient(ellipse at center, rgba(184, 153, 104, 0.10), transparent 65%),
    var(--beige);
}
.final-cta h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--bronze-dark);
}

/* ═══════════════════════ FOOTER minimal */
.site-footer--minimal {
  background: var(--brown-deep);
  color: rgba(250, 247, 242, 0.7);
  padding: 26px 0;
}
.site-footer--minimal .footer-bottom {
  padding-top: 0;
  border-top: none;
}
.site-footer--minimal .footer-bottom small {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(250, 247, 242, 0.65);
}
@media (max-width: 700px) {
  .site-footer--minimal .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* Reduzir movimento para utilizadores que preferem */
@media (prefers-reduced-motion: reduce) {
  .c-flag { transition: none; }
}

/* Compensar o header fixo nas âncoras / scrollIntoView */
section[id] { scroll-margin-top: 80px; }
.why-section { scroll-margin-top: 0; } /* barra VONAR aparece desde o topo */
