/* ===========================================
   MÉTODO 360 — LANDING DE VENDA
   Identidade Publish Digital
   =========================================== */

:root {
  /* Cores Publish */
  --azul: #1A8CFF;
  --azul-claro: #E4F0FE;
  --azul-escuro: #0066D9;
  --preto: #0A0E1A;
  --cinza-texto: #4B5563;
  --cinza-suave: #9CA3AF;
  --cinza-borda: #E5E7EB;
  --branco: #FFFFFF;
  --bg: #FAFBFD;
  --bg-card: #FFFFFF;
  --verde: #25D366;
  --vermelho: #EF4444;
  --amarelo: #F59E0B;

  /* Tipografia */
  --font-titulo: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-corpo: 'Inter', system-ui, sans-serif;

  /* Espaçamento */
  --container-max: 1200px;
  --pad-x: 24px;
  --gap-secao: 96px;

  /* Sombras */
  --sombra-sm: 0 1px 3px rgba(10, 14, 26, 0.06);
  --sombra-md: 0 4px 12px rgba(10, 14, 26, 0.08);
  --sombra-lg: 0 16px 40px rgba(10, 14, 26, 0.12);

  /* Transições */
  --easing: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Tema escuro */
html.dark {
  --preto: #F4F6FA;
  --cinza-texto: #C0C7D4;
  --cinza-suave: #6B7280;
  --cinza-borda: #1F2937;
  --branco: #0A0E1A;
  --bg: #0A0E1A;
  --bg-card: #111827;
  --azul-claro: #1E293B;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-corpo);
  background: var(--bg);
  color: var(--preto);
  line-height: 1.6;
  font-size: 16px;
  transition: background 0.3s var(--easing), color 0.3s var(--easing);
  overflow-x: hidden;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* ============== TIPOGRAFIA ============== */

h1, h2, h3, h4 {
  font-family: var(--font-titulo);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--preto);
}

.kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--azul);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.highlight {
  color: var(--azul);
}

/* ============== TOPBAR ============== */

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 251, 253, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--cinza-borda);
  transition: background 0.3s var(--easing);
}

html.dark .topbar { background: rgba(10, 14, 26, 0.85); }

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 180px;
  gap: 32px;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--preto);
  transition: opacity 0.2s var(--easing);
}

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

.logo-img {
  height: 160px;
  width: auto;
  display: block;
  max-width: 480px;
  object-fit: contain;
}

.logo-img-footer {
  height: 180px;
  width: auto;
  display: block;
  max-width: 540px;
  object-fit: contain;
  margin-bottom: 12px;
  filter: brightness(0) invert(1);
}

html.dark .logo-img-footer { filter: none; }

.logo-text-fallback {
  font-family: var(--font-titulo);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--preto);
}

.logo-text-fallback .logo-azul { color: var(--azul); }
.logo-azul { color: var(--azul); }

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

.nav a {
  color: var(--cinza-texto);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s var(--easing);
}

.nav a:hover { color: var(--azul); }

.theme-toggle {
  background: transparent;
  border: 1px solid var(--cinza-borda);
  color: var(--preto);
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s var(--easing);
}

.theme-toggle:hover {
  background: var(--azul-claro);
  border-color: var(--azul);
}

.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }
html.dark .theme-toggle .icon-sun { display: block; }
html.dark .theme-toggle .icon-moon { display: none; }

/* ============== BUTTONS ============== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border: none;
  border-radius: 12px;
  font-family: var(--font-corpo);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s var(--easing);
  text-decoration: none;
  white-space: nowrap;
}

.btn-pequeno {
  padding: 10px 20px;
  font-size: 14px;
  background: var(--azul);
  color: white !important;
  border-radius: 10px;
}

.btn-pequeno:hover {
  background: var(--azul-escuro);
  transform: translateY(-1px);
}

.btn-principal {
  background: var(--verde);
  color: white;
  padding: 18px 32px;
  font-size: 17px;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}

.btn-principal:hover {
  background: #1FAA52;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.55);
}

.btn-grande {
  padding: 22px 40px;
  font-size: 19px;
}

/* ============== HERO (2 colunas com foto CEO) ============== */

.hero {
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(26, 140, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 64px;
}

.hero-conteudo { max-width: 640px; }

.badge {
  display: inline-block;
  background: var(--azul-claro);
  color: var(--azul-escuro);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 32px;
}

.hero-titulo {
  font-size: clamp(34px, 4.5vw, 56px);
  margin-bottom: 28px;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.hero-subtitulo {
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.55;
  color: var(--cinza-texto);
  margin-bottom: 40px;
}

.hero-cta {
  margin-bottom: 0;
}

.hero-cta-info {
  margin-top: 12px;
  font-size: 14px;
  color: var(--cinza-suave);
}

/* Foto/placeholder do CEO no Hero */
.hero-foto {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ceo-img {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(10, 14, 26, 0.18);
}

.ceo-placeholder {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--azul) 0%, var(--azul-escuro) 100%);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  box-shadow: 0 24px 60px rgba(26, 140, 255, 0.35);
  position: relative;
  overflow: hidden;
  padding: 32px;
}

.ceo-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.ceo-avatar {
  width: 140px;
  height: 140px;
  background: rgba(255, 255, 255, 0.15);
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-titulo);
  font-size: 56px;
  font-weight: 800;
  color: white;
  position: relative;
  z-index: 1;
  backdrop-filter: blur(8px);
  margin-bottom: 8px;
}

.ceo-info {
  text-align: center;
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
}

.ceo-info strong {
  display: block;
  font-family: var(--font-titulo);
  font-size: 22px;
  color: white;
  margin-bottom: 4px;
}

.ceo-info span {
  display: block;
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

.hero-balao {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-card);
  border: 1px solid var(--cinza-borda);
  padding: 14px 28px;
  border-radius: 100px;
  box-shadow: 0 8px 24px rgba(10, 14, 26, 0.15);
  white-space: nowrap;
  z-index: 2;
}

.hero-balao::before {
  content: '•';
  color: var(--azul);
  font-size: 24px;
  vertical-align: middle;
  margin-right: 8px;
}

.hero-balao span {
  font-family: var(--font-titulo);
  font-style: italic;
  font-size: 15px;
  color: var(--preto);
  font-weight: 500;
}

.hero-prova {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding-top: 48px;
  border-top: 1px solid var(--cinza-borda);
  flex-wrap: wrap;
}

.prova-numero {
  display: flex;
  flex-direction: column;
}

.prova-numero .num {
  font-family: var(--font-titulo);
  font-size: 36px;
  font-weight: 800;
  color: var(--azul);
  line-height: 1;
}

.prova-numero .lab {
  font-size: 14px;
  color: var(--cinza-suave);
  margin-top: 6px;
}

/* ============== PROBLEMA ============== */

.problema {
  padding: var(--gap-secao) 0;
  background: var(--bg-card);
}

html.dark .problema { background: var(--bg); }

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.section-header p {
  font-size: 18px;
  color: var(--cinza-texto);
  line-height: 1.6;
}

.section-header strong { color: var(--preto); font-weight: 600; }

.problemas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.problema-card {
  background: var(--bg);
  border: 1px solid var(--cinza-borda);
  border-radius: 16px;
  padding: 32px;
  position: relative;
}

html.dark .problema-card { background: var(--bg-card); }

.problema-num {
  font-family: var(--font-titulo);
  font-size: 14px;
  font-weight: 700;
  color: var(--azul);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 12px;
}

.problema-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.problema-card p {
  color: var(--cinza-texto);
  font-size: 15px;
  line-height: 1.6;
}

.problema-frase {
  text-align: center;
  font-family: var(--font-titulo);
  font-size: clamp(18px, 2.2vw, 24px);
  font-style: italic;
  color: var(--preto);
  max-width: 720px;
  margin: 64px auto 0;
  font-weight: 500;
  line-height: 1.4;
}

/* ============== MÉTODO ============== */

.metodo {
  padding: var(--gap-secao) 0;
}

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

.pilar-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--bg-card);
  border: 1px solid var(--cinza-borda);
  border-radius: 16px;
  transition: all 0.3s var(--easing);
}

.pilar-card:hover {
  transform: translateY(-4px);
  border-color: var(--azul);
  box-shadow: var(--sombra-md);
}

.pilar-icon {
  font-size: 48px;
  margin-bottom: 16px;
  line-height: 1;
}

.pilar-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.pilar-card p {
  font-size: 14px;
  color: var(--cinza-texto);
  line-height: 1.6;
}

/* ============== ENTREGÁVEIS ============== */

.entregaveis {
  padding: var(--gap-secao) 0;
  background: var(--bg-card);
}

html.dark .entregaveis { background: var(--bg); }

.entregaveis-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.entregavel-card {
  background: var(--bg);
  border: 1px solid var(--cinza-borda);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s var(--easing);
  position: relative;
  overflow: hidden;
}

html.dark .entregavel-card { background: var(--bg-card); }

.entregavel-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sombra-lg);
  border-color: var(--azul);
}

.entregavel-icon {
  font-size: 40px;
  margin-bottom: 16px;
  line-height: 1;
}

.entregavel-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.entregavel-card p {
  color: var(--cinza-texto);
  font-size: 15px;
  margin-bottom: 16px;
  line-height: 1.6;
}

.entregavel-card strong {
  color: var(--preto);
  font-weight: 600;
}

.entregavel-tag {
  font-size: 12px;
  color: var(--azul);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--azul-claro);
  padding: 4px 12px;
  border-radius: 100px;
  display: inline-block;
}

.entregavel-destaque {
  background: linear-gradient(135deg, var(--azul-claro), var(--bg));
  border-color: var(--azul);
  border-width: 2px;
}

html.dark .entregavel-destaque {
  background: linear-gradient(135deg, rgba(26, 140, 255, 0.15), var(--bg-card));
}

.entregavel-destaque::before {
  content: '⭐ DIFERENCIAL';
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 10px;
  font-weight: 700;
  background: var(--azul);
  color: white;
  padding: 4px 8px;
  border-radius: 100px;
  letter-spacing: 0.05em;
}

/* ============== AUDIOVISUAL ============== */

.audiovisual {
  padding: var(--gap-secao) 0;
  background: linear-gradient(135deg, #0A0E1A 0%, #1F2937 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.audiovisual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(26, 140, 255, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(26, 140, 255, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.audiovisual-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.audiovisual-conteudo .kicker {
  color: #60a5fa;
}

.audiovisual-conteudo h2 {
  color: white;
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 24px;
  line-height: 1.1;
}

.audiovisual-conteudo .highlight {
  color: #60a5fa;
}

.audiovisual-texto {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
}

.audiovisual-texto strong {
  color: white;
  font-weight: 600;
}

.audiovisual-bullets {
  list-style: none;
  margin: 32px 0;
}

.audiovisual-bullets li {
  padding: 8px 0;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.audiovisual-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.filmmakers-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
  max-width: 420px;
}

.filmmaker-card {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(96, 165, 250, 0.25);
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s var(--easing);
}

.filmmaker-card:hover {
  border-color: rgba(96, 165, 250, 0.55);
  transform: translateY(-4px);
}

.filmmaker-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.filmmaker-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, rgba(26, 140, 255, 0.3), rgba(26, 140, 255, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
}

.filmmaker-avatar {
  font-family: var(--font-titulo);
  font-size: 56px;
  font-weight: 800;
  color: white;
  letter-spacing: 0.05em;
}

.filmmaker-info {
  padding: 16px 12px;
  background: rgba(0, 0, 0, 0.3);
}

.filmmaker-info strong {
  display: block;
  font-family: var(--font-titulo);
  font-size: 16px;
  color: white;
  margin-bottom: 2px;
}

.filmmaker-info span {
  display: block;
  font-size: 12px;
  color: rgba(96, 165, 250, 0.9);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.filmmakers-legenda {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  font-style: italic;
}

.filmmakers-legenda span {
  font-size: 18px;
  margin-right: 4px;
}

/* ============== TIME (galeria estilo site) ============== */

.time {
  padding: var(--gap-secao) 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-card) 100%);
}

html.dark .time {
  background: linear-gradient(180deg, var(--bg) 0%, #0F1722 100%);
}

.equipe-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}

.equipe-card {
  background: var(--bg-card);
  border: 1px solid var(--cinza-borda);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s var(--easing);
  position: relative;
}

html.dark .equipe-card {
  background: #0F1722;
  border-color: #1F2937;
}

.equipe-card:hover {
  transform: translateY(-6px);
  border-color: var(--azul);
  box-shadow: var(--sombra-lg);
}

.equipe-card-destaque {
  border-color: var(--azul);
  border-width: 2px;
  box-shadow: 0 8px 32px rgba(26, 140, 255, 0.2);
}

.equipe-card-destaque::before {
  content: 'CEO';
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--azul);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 100px;
  z-index: 2;
}

.equipe-foto {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, #0A0E1A 0%, #1F2937 100%);
  position: relative;
  overflow: hidden;
}

.equipe-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.equipe-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 30% 30%, rgba(26, 140, 255, 0.3) 0%, transparent 50%),
    linear-gradient(135deg, #0A0E1A 0%, #1F2937 100%);
}

.equipe-avatar {
  font-family: var(--font-titulo);
  font-size: 48px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.05em;
}

.equipe-info {
  padding: 16px 12px;
  text-align: center;
}

.equipe-info strong {
  display: block;
  font-family: var(--font-titulo);
  font-size: 15px;
  color: var(--preto);
  margin-bottom: 4px;
}

.equipe-info span {
  display: block;
  font-size: 11px;
  color: var(--cinza-suave);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.time-frase {
  background: var(--bg-card);
  border-left: 4px solid var(--azul);
  border-radius: 0 16px 16px 0;
  padding: 32px 40px;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: var(--sombra-md);
}

html.dark .time-frase { background: #0F1722; }

.time-frase p {
  font-family: var(--font-titulo);
  font-style: italic;
  font-size: clamp(17px, 2vw, 22px);
  color: var(--preto);
  line-height: 1.5;
  margin-bottom: 16px;
  font-weight: 500;
}

.time-assinatura {
  font-size: 14px;
  color: var(--azul);
  font-weight: 600;
}

/* ============== PROVA SOCIAL ============== */

.prova-social {
  padding: var(--gap-secao) 0;
  background: var(--bg-card);
  text-align: center;
}

html.dark .prova-social { background: var(--bg); }

.numeros-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin: 48px 0 64px;
}

.numero-grande {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.numero-valor {
  font-family: var(--font-titulo);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  color: var(--azul);
  line-height: 1;
  margin-bottom: 8px;
}

.numero-label {
  font-size: 15px;
  color: var(--cinza-texto);
  font-weight: 500;
}

.frase-ancora {
  margin: 64px auto 0;
  max-width: 720px;
}

.frase-ancora p {
  font-family: var(--font-titulo);
  font-style: italic;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--azul);
  font-weight: 600;
  line-height: 1.2;
}

/* ============== PRA QUEM ============== */

.para-quem {
  padding: var(--gap-secao) 0;
}

.quem-comparativo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
}

.quem-card {
  background: var(--bg-card);
  border: 2px solid var(--cinza-borda);
  border-radius: 16px;
  padding: 32px;
}

.quem-sim {
  border-color: var(--verde);
  background: linear-gradient(180deg, rgba(37, 211, 102, 0.05), var(--bg-card));
}

.quem-nao {
  border-color: var(--vermelho);
  background: linear-gradient(180deg, rgba(239, 68, 68, 0.04), var(--bg-card));
}

.quem-card h3 {
  font-size: 22px;
  margin-bottom: 24px;
}

.quem-card ul {
  list-style: none;
}

.quem-card li {
  padding: 10px 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--cinza-texto);
  border-bottom: 1px solid var(--cinza-borda);
}

.quem-card li:last-child { border-bottom: none; }

.quem-card strong {
  color: var(--preto);
  font-weight: 600;
}

/* ============== FAQ ============== */

.faq {
  padding: var(--gap-secao) 0;
  background: var(--bg-card);
}

html.dark .faq { background: var(--bg); }

.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg);
  border: 1px solid var(--cinza-borda);
  border-radius: 12px;
  padding: 0;
  margin-bottom: 12px;
  transition: all 0.2s var(--easing);
  overflow: hidden;
}

html.dark .faq-item { background: var(--bg-card); }

.faq-item:hover { border-color: var(--azul); }

.faq-item summary {
  padding: 20px 24px;
  font-family: var(--font-titulo);
  font-weight: 600;
  font-size: 17px;
  color: var(--preto);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s var(--easing);
}

.faq-item summary::after {
  content: '+';
  font-size: 24px;
  color: var(--azul);
  font-weight: 400;
  transition: transform 0.3s var(--easing);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary:hover {
  color: var(--azul);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item p {
  padding: 0 24px 20px;
  color: var(--cinza-texto);
  font-size: 15px;
  line-height: 1.7;
}

.faq-item p strong {
  color: var(--preto);
  font-weight: 600;
}

/* ============== CTA FINAL ============== */

.cta-final {
  padding: var(--gap-secao) 0;
  text-align: center;
  background: linear-gradient(135deg, var(--azul) 0%, var(--azul-escuro) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

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

.cta-final h2 {
  color: white;
  font-size: clamp(32px, 5vw, 56px);
  margin-bottom: 16px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.cta-final p {
  font-size: 19px;
  opacity: 0.95;
  margin-bottom: 32px;
}

.cta-final .btn-principal {
  background: white;
  color: var(--verde);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.cta-final .btn-principal:hover {
  background: var(--bg);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  color: #1FAA52;
}

.cta-info {
  margin-top: 24px !important;
  font-size: 15px !important;
  opacity: 0.9 !important;
}

/* ============== FOOTER ============== */

.footer {
  background: var(--preto);
  color: var(--cinza-texto);
  padding: 64px 0 32px;
}

html.dark .footer {
  background: var(--bg-card);
  border-top: 1px solid var(--cinza-borda);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}

.footer-brand .logo-text-fallback {
  color: white;
  margin-bottom: 12px;
  display: inline-flex;
  font-family: var(--font-titulo);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.03em;
  gap: 4px;
}

html.dark .footer-brand .logo-text-fallback { color: var(--preto); }

.footer-brand .logo-text-fallback span:first-child { color: white; }

html.dark .footer-brand .logo-text-fallback span:first-child { color: var(--preto); }

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
  margin-top: 8px;
}

html.dark .footer-brand p { color: var(--cinza-suave); }

.footer-links h4 {
  color: white;
  font-size: 15px;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

html.dark .footer-links h4 { color: var(--preto); }

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  padding: 4px 0;
  transition: color 0.2s var(--easing);
}

html.dark .footer-links a { color: var(--cinza-texto); }

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

.footer-bottom {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

html.dark .footer-bottom {
  border-color: var(--cinza-borda);
  color: var(--cinza-suave);
}

/* ============== WHATSAPP FLOAT ============== */

.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 64px;
  height: 64px;
  background: var(--verde);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
  z-index: 99;
  transition: all 0.2s var(--easing);
  text-decoration: none;
  animation: pulse-wa 2s infinite;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.7);
}

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5), 0 0 0 12px rgba(37, 211, 102, 0); }
}

/* ============== RESPONSIVE ============== */

@media (max-width: 968px) {
  :root { --gap-secao: 64px; }

  .nav a:not(.btn) { display: none; }

  .hero { padding: 48px 0 32px; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .hero-conteudo { max-width: 100%; }
  .ceo-img, .ceo-placeholder { max-width: 320px; }
  .hero-prova { gap: 24px; justify-content: center; }

  .problemas-grid { grid-template-columns: 1fr; }
  .pilares-grid { grid-template-columns: repeat(2, 1fr); }
  .audiovisual-inner { grid-template-columns: 1fr; gap: 48px; }
  .equipe-grid { grid-template-columns: repeat(3, 1fr); }
  .numeros-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .quem-comparativo { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 640px) {
  :root { --pad-x: 16px; }

  .topbar-inner {
    height: 130px;
  }

  .logo-img {
    height: 110px;
    max-width: 320px;
  }

  .logo-img-footer {
    height: 130px;
    max-width: 380px;
  }

  .logo-text-fallback {
    font-size: 22px;
  }

  .hero-prova { gap: 16px; flex-direction: column; align-items: center; }
  .prova-numero { align-items: center; text-align: center; }
  .prova-numero .num { font-size: 32px; }

  .hero-balao {
    position: static;
    transform: none;
    margin-top: 16px;
  }

  .pilares-grid { grid-template-columns: 1fr; }
  .equipe-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .equipe-info strong { font-size: 13px; }
  .equipe-info span { font-size: 10px; }

  .filmmakers-cards { max-width: 100%; }

  .wa-float {
    width: 56px;
    height: 56px;
    bottom: 16px;
    right: 16px;
  }
}
