/* -------------------------------------------------------------
   PET VOA — Quiet Luxury Design System
   © Pet Voa. Todos os direitos reservados.
   ------------------------------------------------------------- */

/* Google Fonts loaded via HTML <link> tags in index.html for parallel loading performance */

/* CSS Variables & Tokens */
:root {
  --navy-deep: #0B1528;
  --navy-medium: #112240;
  --navy-light: #233554;
  --champagne: #C5A880;
  --champagne-light: #F4EFEB;
  --champagne-dark: #A3865E;
  --warm-white: #FAF9F6;
  --pure-white: #FFFFFF;
  --slate: #8892B0;
  --slate-dark: #4A5568;
  --accent-green: #2ECC71;
  --shadow-premium: 0 20px 40px rgba(11, 21, 40, 0.06);
  --shadow-hover: 0 30px 60px rgba(11, 21, 40, 0.12);
  --shadow-champagne: 0 8px 25px rgba(197, 168, 128, 0.15);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --font-serif: 'Lora', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --border-radius-lg: 16px;
  --border-radius-md: 8px;
}

/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  /* Compensa o header fixo ao navegar por âncoras (#timeline, #faq etc.) */
  scroll-padding-top: 96px;
}

/* Respeita usuários que preferem menos movimento */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-sans);
  background-color: var(--warm-white);
  color: var(--navy-medium);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Bilingual Visibility Logic (Zero Friction) */
body.lang-pt-active .lang-en {
  display: none !important;
}
body.lang-en-active .lang-pt {
  display: none !important;
}

/* Typography & Links */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--navy-deep);
  font-weight: 600;
}

p {
  color: var(--slate-dark);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

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

/* Buttons & CTAs */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 30px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  gap: 10px;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--navy-deep);
  color: var(--pure-white);
  box-shadow: 0 4px 15px rgba(11, 21, 40, 0.15);
}

.btn-primary:hover {
  background-color: var(--champagne);
  transform: translateY(-2px);
  box-shadow: var(--shadow-champagne);
}

.btn-secondary {
  background-color: transparent;
  color: var(--navy-deep);
  border: 2px solid var(--navy-deep);
}

.btn-secondary:hover {
  background-color: var(--navy-deep);
  color: var(--pure-white);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: #25D366;
  color: var(--pure-white);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
  background-color: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

/* Hero Live Activity Status */
.hero-live-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 6px 12px;
  background-color: rgba(46, 204, 113, 0.04); /* extremely soft light green tint */
  border: 1px solid rgba(46, 204, 113, 0.12); /* light green border */
  border-radius: 20px;
  transition: var(--transition-smooth);
}

.hero-live-status:hover {
  background-color: rgba(46, 204, 113, 0.08);
  border-color: rgba(46, 204, 113, 0.22);
}

.hero-live-text {
  font-size: 12px;
  font-weight: 500;
  color: var(--slate-dark);
  font-family: var(--font-sans);
  display: inline-flex;
  align-items: center;
  gap: 5px; /* Strict spacing to prevent text collapse */
}

/* Microcopy de compromisso zero sob os CTAs do hero */
.hero-cta-note {
  font-size: 13px;
  color: var(--slate-dark);
  margin-top: 14px;
  font-style: italic;
}

.online-pulse-green {
  width: 6px;
  height: 6px; /* smaller dot for subtlety */
  background-color: var(--accent-green);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  display: inline-block;
}

.online-pulse-green::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--accent-green);
  border-radius: 50%;
  animation: pulse-ring 1.5s infinite;
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: rgba(250, 249, 246, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(11, 21, 40, 0.05);
  transition: var(--transition-smooth);
}

.header.scrolled {
  height: 70px;
  top: 0;
  box-shadow: var(--shadow-premium);
  background-color: rgba(250, 249, 246, 0.98);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1300px; /* Increased to 1300px to allow menu + switcher + badge + button to sit side-by-side */
}

.header .btn {
  padding: 10px 24px;
  font-size: 13px;
  border-radius: 20px;
  height: auto;
}

.logo-wrapper {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

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

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy-light);
  cursor: pointer;
}

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

.controls-wrapper {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Language Toggle Switcher */
.lang-switcher {
  display: flex;
  background-color: rgba(11, 21, 40, 0.05);
  padding: 4px;
  border-radius: 20px;
  border: 1px solid rgba(11, 21, 40, 0.05);
  position: relative;
}

.lang-btn {
  background: none;
  border: none;
  padding: 6px 14px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 16px;
  color: var(--slate-dark);
  transition: var(--transition-smooth);
}

body.lang-pt-active .lang-btn-pt,
body.lang-en-active .lang-btn-en {
  background-color: var(--pure-white);
  color: var(--navy-deep);
  box-shadow: 0 2px 8px rgba(11, 21, 40, 0.08);
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  z-index: 1001;
}

/* Menu colapsado mais cedo (tablets/laptops estreitos): evita que os 7 links +
   botão + seletor de idiomas estourem o header entre 769px e ~1100px */
@media (max-width: 1100px) {
  .mobile-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: -100%;
    width: 100%;
    height: calc(100vh - 100%);
    overflow-y: auto; /* garante acesso a todos os links em telas baixas (celular em paisagem) */
    background-color: var(--warm-white);
    flex-direction: column;
    padding: 40px 40px 60px 40px;
    gap: 30px;
    transition: var(--transition-smooth);
    border-top: 1px solid rgba(11, 21, 40, 0.05);
  }

  .nav-links.active {
    left: 0;
  }
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--navy-deep);
  transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
  padding-top: 160px;
  padding-bottom: 80px;
  background: linear-gradient(180deg, rgba(197, 168, 128, 0.08) 0%, rgba(250, 249, 246, 0) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-tag {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--champagne-dark);
  margin-bottom: 16px;
  display: inline-block;
}

.hero-title {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--navy-deep);
}

.hero-description {
  font-size: 18px;
  color: var(--slate-dark);
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image-wrapper {
  position: relative;
}

/* Interactive Card & Album Hover Animation (Quiet Luxury) */
.interactive-card {
  position: relative;
  transition: var(--transition-smooth);
}

.hero-image-frame {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  border: 8px solid var(--pure-white);
  transform: rotate(1.5deg);
  transition: var(--transition-smooth);
  will-change: transform, box-shadow;
  aspect-ratio: 1 / 1;
}

/* Solution Specific Image Frame */
.solution-image-frame {
  border-color: var(--champagne-light);
  transform: rotate(-1.5deg);
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  background-color: var(--pure-white);
  padding: 16px 24px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-premium);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(197, 168, 128, 0.2);
  transition: var(--transition-smooth);
  z-index: 10;
  will-change: transform, box-shadow;
}

/* Default placement for Hero section badge */
.interactive-card .hero-badge:not(.solution-badge-left):not(.solution-badge-right) {
  bottom: -20px;
  left: -20px;
  transform: rotate(-2deg);
}

/* Solution Section Badges Placements */
.solution-badge-right {
  bottom: -15px;
  right: -15px;
  transform: rotate(2deg);
}

.solution-badge-left {
  top: -15px;
  left: -15px;
  transform: rotate(-2deg);
  border-color: rgba(11, 21, 40, 0.15);
}

/* Hover States: The entire photo card straightens and lifts */
.interactive-card:hover .hero-image-frame {
  transform: rotate(0deg) scale(1.03);
  box-shadow: var(--shadow-hover);
}

/* The stickers/badges shift outwards and lift slightly in 3D parallax */
.interactive-card:hover .hero-badge:not(.solution-badge-left):not(.solution-badge-right) {
  transform: rotate(-1deg) translateY(-8px) scale(1.06);
  box-shadow: 0 15px 30px rgba(11, 21, 40, 0.15);
}

.interactive-card:hover .solution-badge-right {
  transform: rotate(1deg) translateY(-8px) scale(1.06);
  box-shadow: 0 15px 30px rgba(11, 21, 40, 0.15);
}

.interactive-card:hover .solution-badge-left {
  transform: rotate(-1deg) translateY(-8px) scale(1.06);
  box-shadow: 0 15px 30px rgba(11, 21, 40, 0.15);
}

.hero-badge-icon {
  font-size: 24px;
  color: var(--champagne);
}

.hero-badge-text {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy-deep);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Problem Section */
.problem {
  background-color: var(--pure-white);
}

.section-tag {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--champagne-dark);
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: 36px;
  margin-bottom: 16px;
  color: var(--navy-deep);
}

.section-subtitle {
  font-size: 16px;
  color: var(--slate-dark);
  max-width: 600px;
  margin: 0 auto 60px auto;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.problem-card {
  background-color: var(--warm-white);
  padding: 36px 24px;
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(11, 21, 40, 0.02);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.problem-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(197, 168, 128, 0.2);
}

.problem-number {
  font-family: var(--font-serif);
  font-size: 48px;
  color: rgba(197, 168, 128, 0.15);
  font-weight: 700;
  position: absolute;
  top: 15px;
  right: 20px;
  line-height: 1;
}

.problem-card-title {
  font-size: 18px;
  margin-bottom: 16px;
  margin-top: 20px;
}

.problem-card-text {
  font-size: 14px;
  color: var(--slate-dark);
}

/* Ponte de eficácia: fecha a dobra do medo abrindo o alívio (EPPM) */
.problem-bridge {
  max-width: 640px;
  margin: 48px auto 0 auto;
  font-family: var(--font-serif);
  font-size: 19px;
  font-style: italic;
  color: var(--navy-deep);
  line-height: 1.6;
}

/* Solution Section */
.solution {
  background: linear-gradient(180deg, var(--warm-white) 0%, rgba(197, 168, 128, 0.05) 100%);
}

.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.solution-benefits {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.benefit-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.benefit-icon {
  width: 44px;
  height: 44px;
  background-color: var(--champagne-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--champagne-dark);
  font-size: 18px;
  flex-shrink: 0;
}

.benefit-title {
  font-size: 18px;
  margin-bottom: 6px;
}

.benefit-text {
  font-size: 14px;
  color: var(--slate-dark);
}

/* Interactive Timeline (Como Funciona) */
.timeline-section {
  background-color: var(--pure-white);
}

.timeline-flow {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0;
}

.timeline-flow::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  background-color: var(--champagne-light);
  transform: translateX(-50%);
}

.timeline-step {
  display: flex;
  margin-bottom: 60px;
  position: relative;
  width: 100%;
}

.timeline-step:last-child {
  margin-bottom: 0;
}

.timeline-badge {
  width: 40px;
  height: 40px;
  background-color: var(--navy-deep);
  color: var(--pure-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  border: 4px solid var(--pure-white);
  box-shadow: 0 0 10px rgba(11, 21, 40, 0.1);
}

.timeline-content {
  width: 45%;
  background-color: var(--warm-white);
  padding: 30px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-premium);
  border: 1px solid rgba(11, 21, 40, 0.02);
  transition: var(--transition-smooth);
}

.timeline-step:nth-child(even) .timeline-content {
  margin-left: auto;
}

.timeline-step:nth-child(odd) .timeline-content {
  margin-right: auto;
  text-align: right;
}

.timeline-content:hover {
  transform: translateY(-5px);
  border-color: rgba(197, 168, 128, 0.3);
}

.timeline-title {
  font-size: 20px;
  margin-bottom: 12px;
}

.timeline-text {
  font-size: 14px;
  color: var(--slate-dark);
}

/* Alert Box */
.alert-box {
  background-color: rgba(197, 168, 128, 0.08);
  border-left: 4px solid var(--champagne);
  padding: 24px;
  border-radius: var(--border-radius-md);
  margin-top: 60px;
  display: flex;
  gap: 20px;
  align-items: center;
  text-align: left;
}

.alert-icon {
  font-size: 28px;
  color: var(--champagne-dark);
}

.alert-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.alert-desc {
  font-size: 14px;
  color: var(--slate-dark);
}

/* Fecho emocional da timeline (regra do pico-fim) */
.timeline-closing {
  max-width: 640px;
  margin: 48px auto 0 auto;
  font-family: var(--font-serif);
  font-size: 19px;
  font-style: italic;
  color: var(--navy-deep);
  line-height: 1.6;
  text-align: center;
}

/* Open Budget / Transparency Section */
.budget {
  background: linear-gradient(180deg, var(--warm-white) 0%, rgba(197, 168, 128, 0.05) 100%);
}

.budget-card {
  background-color: var(--pure-white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-hover);
  padding: 48px;
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid rgba(197, 168, 128, 0.15);
}

/* Os 3 pilares do investimento (controle, zero margem, valor fechado) */
.budget-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.budget-pillar {
  text-align: left;
  background-color: var(--warm-white);
  border: 1px solid rgba(197, 168, 128, 0.15);
  border-radius: var(--border-radius-md);
  padding: 24px;
}

.budget-pillar .benefit-icon {
  margin-bottom: 14px;
}

.budget-pillar-title {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 8px;
  line-height: 1.4;
}

.budget-pillar-text {
  font-size: 13px;
  color: var(--slate-dark);
  line-height: 1.6;
}

.budget-footer {
  background-color: var(--warm-white);
  padding: 24px 30px;
  border-radius: var(--border-radius-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgba(197, 168, 128, 0.1);
}

.budget-disclaimer {
  font-size: 11px;
  color: var(--slate-dark);
  margin-top: 16px;
}

/* O que os honorários cobrem (âncora de valor sem número) */
.budget-includes {
  text-align: left;
  margin: 6px 0 30px 0;
  padding: 24px;
  background-color: var(--warm-white);
  border: 1px solid rgba(197, 168, 128, 0.15);
  border-radius: var(--border-radius-md);
}

.budget-includes-title {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 16px;
}

.budget-includes-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
}

.budget-includes-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--slate-dark);
  line-height: 1.5;
}

.budget-includes-list li i {
  color: var(--champagne-dark);
  font-size: 14px;
  margin-top: 3px;
  flex-shrink: 0;
}

/* Recompensa colada no CTA (antídoto da dor de pagar) */
.budget-reward {
  font-family: var(--font-serif);
  font-size: 17px;
  font-style: italic;
  color: var(--navy-deep);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.6;
}

.budget-cta-note {
  font-size: 12px;
  color: var(--slate-dark);
  max-width: 460px;
  margin: 0 auto;
}

.budget-direct-pay {
  background-color: rgba(197, 168, 128, 0.05);
  padding: 20px;
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(197, 168, 128, 0.15);
  margin-top: 30px;
  font-size: 13px;
  text-align: left;
}

/* Founder / Sobre Section */
.founder {
  background-color: var(--pure-white);
}

.founder-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.founder-img-wrapper {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  border: 8px solid var(--warm-white);
  aspect-ratio: 1 / 1;
}

.founder-img {
  width: 100%;
  height: auto;
  display: block;
}

.founder-story {
  text-align: left;
}

.founder-team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 30px 0;
}

.team-member-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 4px;
  font-family: var(--font-sans);
}

.team-member-role {
  font-size: 11px;
  font-weight: 700;
  color: var(--champagne-dark);
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}

.team-member-bio {
  font-size: 12px;
  color: var(--slate-dark);
  line-height: 1.4;
}

.founder-name {
  font-size: 28px;
  margin-bottom: 4px;
}

.founder-title {
  font-size: 14px;
  color: var(--champagne-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  display: block;
}

.founder-text {
  font-size: 15px;
  color: var(--slate-dark);
  margin-bottom: 20px;
}

.founder-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--navy-deep);
  border-left: 3px solid var(--champagne);
  padding-left: 20px;
  margin: 30px 0;
}

.founder-quote-cite {
  display: block;
  margin-top: 12px;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 12px;
  font-weight: 600;
  color: var(--champagne-dark);
  letter-spacing: 0.5px;
}

/* FAQ Accordion Section */
.faq {
  background-color: var(--warm-white);
}

.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: var(--pure-white);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-premium);
  border: 1px solid rgba(11, 21, 40, 0.02);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-trigger {
  width: 100%;
  padding: 24px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy-deep);
}

.faq-icon {
  font-size: 18px;
  color: var(--champagne-dark);
  transition: transform 0.3s ease;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
  padding: 0 30px;
}

.faq-content p {
  font-size: 14px;
  color: var(--slate-dark);
  padding-bottom: 24px;
}

/* Active FAQ Item state */
.faq-item.active {
  border-color: rgba(197, 168, 128, 0.25);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-item.active .faq-content {
  max-height: 500px;
  padding: 0 30px;
}

/* Fecho emocional da página (pico-fim): a última cena é o reencontro */
.final-cta {
  background: linear-gradient(180deg, var(--warm-white) 0%, rgba(197, 168, 128, 0.08) 100%);
  padding: 90px 0;
  border-top: 1px solid rgba(197, 168, 128, 0.15);
}

.final-cta-title {
  font-size: 34px;
  color: var(--navy-deep);
  margin-bottom: 20px;
}

.final-cta-text {
  max-width: 620px;
  margin: 0 auto 32px auto;
  font-size: 16px;
  color: var(--slate-dark);
  line-height: 1.7;
}

.final-cta-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--slate-dark);
  font-style: italic;
}

/* Footer Section — REVERTED TO DEEP NAVY FOR ORIGINAL THEME */
.footer {
  background-color: var(--navy-deep);
  color: var(--slate);
  padding: 80px 0 40px 0;
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-col-desc {
  max-width: 300px;
}

/* Transparent wrapper to let the logo merge with the dark background */
.footer-logo-capsule {
  display: inline-block;
  margin-bottom: 20px;
}

.footer-logo {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}

.footer-title {
  color: var(--pure-white);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link:hover {
  color: var(--champagne);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copy {
  color: rgba(136, 146, 176, 0.85);
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pure-white);
  font-size: 30px;
  z-index: 999;
  transition: var(--transition-smooth);
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(5deg);
  background-color: #128C7E;
}

/* Toast de registro de atividade recente */
.live-notification {
  position: fixed;
  bottom: 30px;
  left: -400px;
  background-color: var(--pure-white);
  padding: 16px 24px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-hover);
  border-left: 4px solid var(--champagne);
  z-index: 998;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  max-width: 320px;
}

.live-notification.show {
  left: 30px;
}

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(2.5); opacity: 0; }
}

.notification-body {
  font-size: 13px;
  color: var(--navy-medium);
  font-weight: 500;
  line-height: 1.4;
  text-align: left;
}

.notification-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--champagne-dark);
  margin-bottom: 4px;
}

/* -------------------------------------------------------------
   RESPONSIVIDADE (MEDIA QUERIES) - MOBILE FIRST & FLUID
   ------------------------------------------------------------- */

@media (max-width: 1024px) {
  .hero-grid {
    gap: 40px;
  }
  .hero-title {
    font-size: 38px;
  }
  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .founder-grid {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 70px 0;
  }

  /* Hero */
  .hero {
    padding-top: 120px;
    padding-bottom: 60px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  
  .hero-description {
    margin: 0 auto 36px auto;
  }
  
  .hero-ctas {
    justify-content: center;
  }
  
  .hero-image-wrapper {
    max-width: 450px;
    margin: 0 auto;
  }
  
  /* Sections */
  .section-title {
    font-size: 28px;
  }
  
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .solution-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  /* Timeline Mobile */
  .timeline-flow::before {
    left: 20px;
  }
  
  .timeline-badge {
    left: 20px;
    transform: translateX(-50%);
  }
  
  .timeline-content {
    width: calc(100% - 50px);
    margin-left: 50px !important;
    text-align: left !important;
  }
  
  /* Budget & Founder */
  .budget-card {
    padding: 24px;
  }

  .budget-pillars {
    grid-template-columns: 1fr;
  }
  
  .budget-footer {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-live-status {
    margin: 16px auto 0 auto;
    justify-content: center;
  }

  /* Toast adjustment for mobile (deixa livre o botão flutuante do WhatsApp à direita) */
  .live-notification {
    bottom: 20px;
    max-width: calc(100vw - 110px);
  }
  .live-notification.show {
    left: 20px;
  }

  /* Mobile Header optimizations to prevent overlaps */
  .header .whatsapp-link span {
    display: none !important;
  }
  .header .whatsapp-link {
    padding: 10px;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .header .whatsapp-link i {
    margin: 0;
    font-size: 16px;
  }
  .controls-wrapper {
    gap: 8px;
  }

  /* Founder Team Grid optimizations on mobile */
  .founder-team-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Blocos novos da dobra de orçamento e fecho no mobile */
  .budget-includes-list {
    grid-template-columns: 1fr;
  }
  .final-cta {
    padding: 70px 0;
  }
  .final-cta-title {
    font-size: 26px;
  }

  /* FAQ Padding adjustments on mobile */
  .faq-trigger {
    padding: 18px 20px;
    font-size: 15px;
  }
  .faq-content,
  .faq-item.active .faq-content {
    padding: 0 20px;
  }
}

/* Footer Social Links */
.social-icon-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  transition: var(--transition-smooth);
}

.social-icon-link:not(.disabled):hover {
  background-color: var(--champagne);
  color: var(--navy-deep);
  border-color: var(--champagne);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(197, 168, 128, 0.2);
}

.social-icon-link.disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* Reusable Legal Modal (Quiet Luxury styling) */
.legal-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(11, 21, 40, 0.6);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.legal-modal.active {
  opacity: 1;
  pointer-events: all;
}

.legal-modal-content {
  background-color: var(--pure-white);
  padding: 40px;
  border-radius: var(--border-radius-lg);
  max-width: 650px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 30px 60px rgba(11, 21, 40, 0.25);
  border: 1px solid rgba(197, 168, 128, 0.2);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.legal-modal.active .legal-modal-content {
  transform: translateY(0);
}

.legal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: var(--slate);
  transition: var(--transition-smooth);
}

.legal-close-btn:hover {
  color: var(--navy-deep);
}

.legal-text-container {
  display: none;
}

.legal-text-container.active {
  display: block;
}

.legal-text-container h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--navy-deep);
  border-bottom: 2px solid var(--champagne-light);
  padding-bottom: 10px;
}

.legal-text-container h4 {
  font-size: 15px;
  margin: 18px 0 6px 0;
  color: var(--navy-light);
}

.legal-text-container p {
  font-size: 13px;
  color: var(--slate-dark);
  line-height: 1.6;
  margin-bottom: 12px;
}

