/*
 * ============================================================
 *  FOCALIZZE — style.css
 *  Design System Principal
 *  Versão: 1.0.0
 * ============================================================
 */

/* ══════════════════════════════════════════
   RESET & BOX MODEL
══════════════════════════════════════════ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ══════════════════════════════════════════
   VARIÁVEIS / DESIGN TOKENS
══════════════════════════════════════════ */
:root {
  /* Paleta principal — carvão premium */
  --bg-base:    #2D2D2D;
  --bg-2:       #353535;
  --bg-3:       #3D3D3D;
  --bg-4:       #454545;

  /* Dourado — destaque da marca */
  --gold:       #C8A96E;
  --gold-light: #E8D5A8;
  --gold-dim:   #8a6e3e;

  /* Texto */
  --text-primary:   #F5F5F5;
  --text-secondary: #B8B0A0;
  --text-dim:       #6E6860;

  /* Bordas */
  --border:       rgba(200, 169, 110, 0.22);
  --border-light: rgba(200, 169, 110, 0.10);

  /* Tipografia */
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'DM Sans', system-ui, -apple-system, sans-serif;

  /* Easing */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ══════════════════════════════════════════
   BASE HTML / BODY
══════════════════════════════════════════ */
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Seleção de texto */
::selection {
  background: var(--gold-dim);
  color: var(--text-primary);
}

/* ══════════════════════════════════════════
   SCROLLBAR PERSONALIZADA
══════════════════════════════════════════ */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 2px; }

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

/* ══════════════════════════════════════════
   FAROL DA MARCA — marca d'água discreta
══════════════════════════════════════════ */
.lighthouse-watermark {
  position: fixed;
  bottom: -5%;
  right: -5%;
  width: 400px;
  height: 600px;
  pointer-events: none;
  z-index: 0;
  opacity: 1;
}

.lighthouse-watermark svg {
  width: 100%;
  height: 100%;
}

/* ══════════════════════════════════════════
   UTILITÁRIOS
══════════════════════════════════════════ */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

/* Tag / eyebrow label */
.tag {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
}

/* Títulos de seção */
.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

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

/* Subtítulo de seção */
.section-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.75;
  max-width: 560px;
  margin-top: 1rem;
}

/* Linha dourada decorativa */
.gold-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem 0;
  opacity: 0.6;
}

/* ══════════════════════════════════════════
   BOTÕES
══════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--gold);
  color: var(--bg-base);
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
  border-radius: 2px;
}

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

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border: 1px solid var(--border);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.3s ease, background 0.3s ease;
  border-radius: 2px;
}

.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(200, 169, 110, 0.06);
}

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

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Animação base para hero */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════
   HEADER
══════════════════════════════════════════ */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 0;
  transition: background 0.4s ease, padding 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}

header.scrolled {
  background: rgba(45, 45, 45, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border-light);
  padding: 1rem 0;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo image no header */
.logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.logo-img:hover { opacity: 0.85; }

/* Navegação */
nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

nav a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

nav a:hover,
nav a:focus {
  color: var(--text-primary);
  outline: none;
}

nav a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 2px;
}

.nav-cta {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bg-base) !important;
  background: var(--gold);
  padding: 0.6rem 1.4rem;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.nav-cta:hover { background: var(--gold-light); }

/* Hamburguer */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  z-index: 300;
  position: relative;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--text-primary);
  transition: all 0.3s ease;
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 5rem;
  overflow: hidden;
}

/* Backgrounds do hero */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-gradient {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(200, 169, 110, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-bg-gradient-2 {
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 50%;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(200, 169, 110, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200, 169, 110, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 169, 110, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 60% 40%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 60% 40%, black 30%, transparent 80%);
}

/* Brilho do farol no hero — identidade da marca */
.hero-lighthouse-glow {
  position: absolute;
  top: 5%;
  right: 8%;
  width: 300px;
  height: 300px;
  background: radial-gradient(ellipse at center, rgba(200, 169, 110, 0.06) 0%, transparent 65%);
  pointer-events: none;
  animation: lighthousePulse 4s ease-in-out infinite alternate;
}

@keyframes lighthousePulse {
  from { opacity: 0.6; transform: scale(0.95); }
  to   { opacity: 1;   transform: scale(1.05); }
}

/* Conteúdo do hero */
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  animation: fadeUp 1s 0.2s ease forwards;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 1s 0.4s ease forwards;
}

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

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  font-weight: 300;
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 1s 0.6s ease forwards;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s 0.8s ease forwards;
}

/* Stats no hero */
.hero-stats {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 3rem;
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border-light);
  opacity: 0;
  animation: fadeUp 1s 1s ease forwards;
}

.hero-stat-num {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.hero-stat-label {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ══════════════════════════════════════════
   PROOF BAR
══════════════════════════════════════════ */
#proof-bar {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  background: var(--bg-2);
  position: relative;
  z-index: 1;
}

.proof-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.proof-bar-label {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-right: 1rem;
}

.proof-logo {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  padding: 0 1.5rem;
  border-right: 1px solid var(--border-light);
  transition: color 0.3s ease;
}

.proof-logo:last-child { border-right: none; }
.proof-logo:hover { color: var(--text-secondary); }

/* ══════════════════════════════════════════
   SOBRE
══════════════════════════════════════════ */
#sobre {
  padding: 8rem 0;
  position: relative;
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

/* Card de citação */
.sobre-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  padding: 2.5rem;
  border-radius: 4px;
  position: relative;
}

.sobre-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.sobre-card-quote {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1.55;
  margin-bottom: 1.5rem;
}

.sobre-card-author {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.sobre-badge {
  position: absolute;
  bottom: -1.5rem;
  right: 2rem;
  background: var(--gold);
  color: var(--bg-base);
  padding: 0.8rem 1.2rem;
  border-radius: 2px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Texto sobre */
.sobre-text p {
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.85;
  margin-bottom: 1.2rem;
}

.sobre-text p strong {
  color: var(--text-primary);
  font-weight: 400;
}

.sobre-pilares {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 2rem;
}

.pilar {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.pilar::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   SERVIÇOS
══════════════════════════════════════════ */
#servicos {
  padding: 8rem 0;
  background: var(--bg-2);
  position: relative;
}

.servicos-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
  gap: 2rem;
  flex-wrap: wrap;
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  overflow: hidden;
}

.servico-card {
  background: var(--bg-3);
  padding: 2.5rem;
  position: relative;
  transition: background 0.3s ease;
  cursor: default;
}

.servico-card:hover { background: var(--bg-4); }

.servico-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dim));
  transition: width 0.4s ease;
}

.servico-card:hover::after { width: 100%; }

.servico-num {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(200, 169, 110, 0.14);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.servico-title {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.servico-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.servico-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 0.3rem 0.8rem;
  border-radius: 2rem;
}

/* ══════════════════════════════════════════
   PLANOS
══════════════════════════════════════════ */
#planos {
  padding: 8rem 0;
  position: relative;
}

.planos-header {
  text-align: center;
  margin-bottom: 4rem;
}

.planos-header .section-sub {
  margin: 0 auto;
  text-align: center;
}

.planos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: start;
}

/* Card de plano */
.plano-card {
  background: var(--bg-3);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 2rem;
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.plano-card:hover {
  border-color: var(--border);
  transform: translateY(-2px);
}

/* Card destaque — Mais contratado */
.plano-destaque {
  background: var(--bg-4);
  border-color: var(--border);
  position: relative;
  transform: translateY(-4px);
}

.plano-destaque:hover { transform: translateY(-6px); }

.plano-destaque::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 4px 4px 0 0;
}

/* Selo "Mais contratado" */
.plano-badge-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--bg-base);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 2rem;
  white-space: nowrap;
}

/* Header do card de plano */
.plano-header-card {
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--border-light);
}

.plano-nome {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.plano-preco {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
}

.plano-preco-label {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--gold);
}

.plano-preco-val {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}

.plano-preco-period {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-left: 0.2rem;
}

.plano-preco-custom {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--gold);
  font-style: italic;
  margin-top: 0.4rem;
}

/* Detalhes (carga horária, dias) */
.plano-detalhe {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.plano-detalhe-titulo {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.plano-detalhe-info {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Lista de serviços */
.plano-servicos-titulo {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: -0.4rem;
}

.plano-servicos {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}

.plano-servicos li {
  font-size: 0.82rem;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  line-height: 1.5;
}

.plano-servicos li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.5rem;
  flex-shrink: 0;
  margin-top: 0.3rem;
}

/* Texto card personalizado */
.plano-custom-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.75;
  flex: 1;
}

/* Ícone SVG do farol no card personalizado */
.plano-custom-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
}

/* Botão dentro dos cards */
.plano-btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

/* ══════════════════════════════════════════
   BENEFÍCIOS
══════════════════════════════════════════ */
#beneficios {
  padding: 8rem 0;
  position: relative;
  background: var(--bg-2);
}

#beneficios .container {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 6rem;
  align-items: start;
}

.beneficios-left {
  position: sticky;
  top: 8rem;
}

.beneficios-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.beneficio-item {
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--border-light);
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 1.2rem;
  align-items: start;
}

.beneficio-item:first-child { border-top: 1px solid var(--border-light); }

.beneficio-icon {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--gold);
  padding-top: 0.15rem;
}

.beneficio-title {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.beneficio-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ══════════════════════════════════════════
   NÚMEROS
══════════════════════════════════════════ */
#numeros {
  padding: 5rem 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  position: relative;
  z-index: 1;
}

.numeros-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-light);
}

.numero-item {
  padding: 2.5rem 2rem;
  background: var(--bg-base);
  text-align: center;
}

.numero-val {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.numero-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ══════════════════════════════════════════
   DEPOIMENTOS
══════════════════════════════════════════ */
#depoimentos {
  padding: 8rem 0;
  background: var(--bg-2);
  overflow: hidden;
  position: relative;
}

.depo-header {
  text-align: center;
  margin-bottom: 4rem;
}

.depo-header .section-sub {
  margin: 0 auto;
  text-align: center;
}

.depo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.depo-card {
  background: var(--bg-3);
  border: 1px solid var(--border-light);
  padding: 2rem;
  border-radius: 4px;
  position: relative;
  transition: border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.depo-card:hover { border-color: var(--border); }

.depo-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1.2rem;
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.depo-text {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  flex: 1;
}

.depo-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-top: 1px solid var(--border-light);
  padding-top: 1.2rem;
  margin-top: auto;
}

.depo-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg-4), var(--gold-dim));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gold-light);
  flex-shrink: 0;
}

.depo-name {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.15rem;
}

.depo-role {
  font-size: 0.72rem;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}

/* ══════════════════════════════════════════
   PROCESSO
══════════════════════════════════════════ */
#processo {
  padding: 8rem 0;
  background: var(--bg-base);
}

.processo-header {
  text-align: center;
  margin-bottom: 4rem;
}

.processo-header .section-sub {
  margin: 0 auto;
  text-align: center;
}

.processo-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.processo-steps::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), var(--border), transparent);
}

.pstep {
  padding: 2rem;
  text-align: center;
  position: relative;
}

.pstep-num {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-4);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--gold);
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.pstep:hover .pstep-num {
  background: var(--gold);
  color: var(--bg-base);
  border-color: var(--gold);
}

.pstep-title {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.pstep-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ══════════════════════════════════════════
   OBJEÇÕES
══════════════════════════════════════════ */
#objecoes {
  padding: 8rem 0;
  background: var(--bg-2);
}

.objecoes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 4rem;
}

.objecao-card {
  background: var(--bg-3);
  border: 1px solid var(--border-light);
  padding: 2rem;
  border-radius: 4px;
  transition: border-color 0.3s ease;
}

.objecao-card:hover { border-color: var(--border); }

.objecao-q {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 0.8rem;
  line-height: 1.5;
}

.objecao-a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.objecao-a strong {
  color: var(--text-primary);
  font-weight: 400;
}

/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
#faq {
  padding: 8rem 0;
  background: var(--bg-base);
}

#faq .container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem;
  align-items: start;
}

.faq-left {
  position: sticky;
  top: 8rem;
}

.faq-list { display: flex; flex-direction: column; }

.faq-item {
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}

.faq-item:first-child { border-top: 1px solid var(--border-light); }

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 0;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-primary);
  gap: 1rem;
  transition: color 0.3s ease;
  user-select: none;
}

.faq-q:hover,
.faq-q.open { color: var(--gold); }

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--gold);
  transition: transform 0.3s ease;
}

.faq-q.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-a.open {
  max-height: 220px;
  padding-bottom: 1.4rem;
}

.faq-a strong {
  color: var(--text-primary);
  font-weight: 400;
}

/* ══════════════════════════════════════════
   CONTATO / FORMULÁRIO
══════════════════════════════════════════ */
#contato {
  padding: 8rem 0;
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}

/* Brilho de fundo do farol na seção contato */
#contato::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(200, 169, 110, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.contato-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.contato-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.contato-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contato-item-icon {
  width: 36px;
  height: 36px;
  background: rgba(200, 169, 110, 0.08);
  border: 1px solid var(--border);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1rem;
}

.contato-item-title {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}

.contato-item-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Form card */
.form-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  padding: 2.5rem;
  border-radius: 4px;
  position: relative;
}

.form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.form-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.form-sub {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.form-group { margin-bottom: 1.2rem; }

.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-4);
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 300;
  padding: 0.85rem 1rem;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold-dim); }

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23C8A96E' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-group select option {
  background: var(--bg-4);
  color: var(--text-primary);
}

.form-submit {
  width: 100%;
  margin-top: 0.5rem;
  background: var(--gold);
  color: var(--bg-base);
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem;
  border: none;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.form-submit:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.form-disclaimer {
  font-size: 0.7rem;
  color: var(--text-dim);
  margin-top: 0.8rem;
  text-align: center;
  line-height: 1.6;
}

/* Mensagem de sucesso */
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}

.form-success-icon {
  font-family: var(--serif);
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.form-success-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.form-success-sub {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border-light);
  background: var(--bg-base);
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border-light);
}

.footer-brand .footer-logo-link {
  display: inline-block;
  margin-bottom: 1.2rem;
}

.footer-logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: brightness(1);
  transition: opacity 0.3s ease;
}

.footer-logo-img:hover { opacity: 0.8; }

.footer-brand p {
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.75;
  max-width: 260px;
}

.footer-col-title {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 1.2rem;
}

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

.footer-links a {
  font-size: 0.82rem;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

.footer-copy {
  font-size: 0.72rem;
  color: var(--text-dim);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.72rem;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover { color: var(--text-secondary); }

/* ══════════════════════════════════════════
   ACESSIBILIDADE — Focus visible
══════════════════════════════════════════ */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Motion preferences */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .hero-eyebrow,
  .hero-title,
  .hero-sub,
  .hero-cta,
  .hero-stats {
    animation: none;
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-lighthouse-glow { animation: none; }
  .lighthousePulse { animation: none; }
}
