/* =============================================
   GRD10 — Gestora de Recursos Dedicados
   ============================================= */

:root {
  --bg-dark: #0b1220;
  --bg-card: #111d2e;
  --bg-card2: #162436;
  --navy: #1a3a5c;
  --gold: #c9960c;
  --gold-light: #f0c040;
  --blue: #2563eb;
  --blue-light: #60a5fa;
  --text: #f1f5f9;
  --muted: #94a3b8;
  --border: #1e3a5f;
  --radius: 12px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  background-color: var(--bg-dark);
  color: var(--text);
  font-family: 'Inter', 'Segoe UI', sans-serif;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

/* ── NAVBAR ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 2rem;
  background: rgba(11,18,32,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -.02em;
}
.nav-logo span { color: var(--gold-light); }

.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { color: var(--muted); font-size: 0.9rem; transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }

.nav-cta {
  background: linear-gradient(135deg, var(--gold), #a37800);
  color: #fff !important;
  padding: 0.5rem 1.2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: opacity 0.2s !important;
}
.nav-cta:hover { opacity: 0.85; }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 5rem;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(201,150,12,0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(37,99,235,0.12) 0%, transparent 50%);
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231e3a5f' fill-opacity='0.3'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

.hero-inner { position: relative; z-index: 1; max-width: 800px; }

.hero-badge {
  display: inline-block;
  background: rgba(201,150,12,0.15);
  border: 1px solid rgba(201,150,12,0.35);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.hero-title span {
  background: linear-gradient(90deg, var(--gold-light), #fde68a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--gold), #a37800);
  color: #fff;
  padding: 0.9rem 2.2rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(201,150,12,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 32px rgba(201,150,12,0.5); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 0.9rem 2.2rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--text); }

.hero-trust {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: var(--muted);
}

/* ── SECTIONS ── */
section { padding: 5rem 2rem; scroll-margin-top: 80px; }
.section-header { text-align: center; margin-bottom: 3.5rem; }

.section-label {
  display: inline-block;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
}

.section-title { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; margin-bottom: 1rem; }
.section-desc { color: var(--muted); max-width: 560px; margin: 0 auto; font-size: 1rem; }

/* ── PARA QUEM ── */
#para-quem { background: var(--bg-card); }

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.audience-card {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}
.audience-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.audience-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.audience-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.6rem; }
.audience-card p { color: var(--muted); font-size: 0.9rem; }

/* ── SERVIÇOS ── */
#servicos { background: var(--bg-dark); }

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.servico-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color 0.3s, transform 0.3s;
}
.servico-card:hover { transform: translateY(-4px); }
.servico-card:has(.vigilancia):hover { border-color: #3b82f6; }
.servico-card:has(.limpeza):hover { border-color: #10b981; }
.servico-card:has(.copa):hover { border-color: var(--gold); }
.servico-card:has(.freelancer):hover { border-color: #8b5cf6; }
.servico-card:has(.portaria):hover { border-color: #f59e0b; }
.servico-card:has(.admin):hover { border-color: #06b6d4; }
.servico-card:has(.telefonista):hover { border-color: #ec4899; }

.servico-icon {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
  display: block;
}

.servico-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
}

.servico-card > p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

.servico-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.servico-list li {
  font-size: 0.88rem;
  color: var(--muted);
  padding-left: 1.2rem;
  position: relative;
}
.servico-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold-light);
  font-weight: 700;
}

/* ── DIFERENCIAIS ── */
#diferenciais { background: var(--bg-card); }

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.diferencial-item {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color 0.3s;
}
.diferencial-item:hover { border-color: var(--gold); }

.dif-icon { font-size: 2rem; margin-bottom: 1rem; }
.diferencial-item h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.6rem; }
.diferencial-item p { color: var(--muted); font-size: 0.9rem; line-height: 1.6; }

/* ── COMO FUNCIONA ── */
#como-funciona { background: var(--bg-dark); }

.steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto 3rem;
  flex-wrap: wrap;
}

.step-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  flex: 1;
  min-width: 220px;
  max-width: 260px;
}

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #a37800);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 16px rgba(201,150,12,0.3);
}

.step-item h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.6rem; }
.step-item p { color: var(--muted); font-size: 0.88rem; line-height: 1.6; }

.step-arrow {
  font-size: 1.8rem;
  color: var(--gold);
  align-self: center;
  margin-top: -1rem;
}

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

/* ── COBERTURA ── */
#cobertura { background: var(--bg-card); }

.cobertura-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}

.cidade-tag {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  transition: border-color 0.2s, color 0.2s;
}
.cidade-tag:hover { border-color: var(--gold); color: var(--text); }

/* ── FAQ ── */
#faq { background: var(--bg-dark); }

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.5rem;
  background: none;
  border: none;
  color: var(--text);
  font-size: 0.97rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--gold-light); }

.arrow {
  font-size: 1.1rem;
  color: var(--gold-light);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.open .arrow { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
  padding: 0 1.5rem;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 1.5rem 1.2rem; }

/* ── CTA FINAL ── */
#cta-final {
  background: linear-gradient(135deg, #0d1c30, #1a3a5c);
  text-align: center;
  padding: 5rem 2rem;
  border-top: 1px solid var(--border);
}
#cta-final h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; margin-bottom: 1rem; }
#cta-final p { color: var(--muted); font-size: 1.05rem; margin-bottom: 2rem; }

/* ── WHATSAPP FLUTUANTE ── */
.wpp-float {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  z-index: 999;
  background: #25d366;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wpp-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.6); }

/* ── FOOTER ── */
footer {
  background: #070d18;
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 2rem;
  color: var(--muted);
  font-size: 0.85rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 1rem; }
  .nav-links { gap: 1rem; }
  .nav-links a:not(.nav-cta):not(.nav-simule) { display: none; }
  .step-arrow { display: none; }
  .steps-grid { flex-direction: column; align-items: center; }
  .step-item { max-width: 100%; width: 100%; }
  .inovacao-grid { grid-template-columns: 1fr; }
  .cote-banner-content { flex-direction: column; gap: 1rem; text-align: center; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn-simule { width: 100%; max-width: 360px; justify-content: center; }
}

/* ── NAV SIMULE ── */
.nav-simule {
  background: rgba(201,150,12,0.15);
  color: var(--gold-light) !important;
  padding: 0.45rem 1rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.88rem;
  border: 1px solid rgba(201,150,12,0.3);
  transition: all 0.2s !important;
}
.nav-simule:hover {
  background: rgba(201,150,12,0.25) !important;
  color: #fff !important;
}

/* ── BTN SIMULE (hero) ── */
.btn-simule {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,150,12,0.15);
  color: var(--gold-light);
  border: 2px solid rgba(201,150,12,0.5);
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-simule:hover {
  background: rgba(201,150,12,0.28);
  border-color: var(--gold-light);
  color: #fff;
  transform: translateY(-1px);
}

/* ── AUDIENCE LINK ── */
.audience-link {
  display: inline-block;
  margin-top: 0.6rem;
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 600;
  transition: color 0.2s;
}
.audience-link:hover { color: #fff; }

/* ── SEÇÃO INOVAÇÃO ── */
.inovacao-section {
  padding: 6rem 2rem 5rem;
  background: linear-gradient(180deg, #0e1a2e 0%, #0b1220 100%);
  border-top: 1px solid rgba(201,150,12,0.2);
  border-bottom: 1px solid var(--border);
}

.inovacao-label {
  background: rgba(201,150,12,0.15) !important;
  color: var(--gold-light) !important;
  border: 1px solid rgba(201,150,12,0.3) !important;
}

/* ── BANNER COTE AGORA ── */
.cote-banner {
  max-width: 900px;
  margin: 0 auto 3.5rem;
  background: linear-gradient(135deg, rgba(201,150,12,0.12) 0%, rgba(37,99,235,0.1) 100%);
  border: 1px solid rgba(201,150,12,0.35);
  border-radius: 16px;
  padding: 1.8rem 2rem;
}
.cote-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.cote-banner-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.3rem;
}
.cote-banner-desc {
  font-size: 0.88rem;
  color: var(--muted);
}
.cote-btn {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  background: linear-gradient(135deg, var(--gold), #a37800);
  color: #fff;
  padding: 0.85rem 1.8rem;
  border-radius: 10px;
  font-weight: 800;
  font-size: 0.95rem;
  transition: all 0.2s;
  text-decoration: none;
  flex-shrink: 0;
}
.cote-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201,150,12,0.3);
}

/* ── GRID INOVAÇÃO ── */
.inovacao-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.inovacao-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  transition: transform 0.25s, border-color 0.25s;
  position: relative;
  overflow: hidden;
}
.inovacao-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), #a37800);
  opacity: 0;
  transition: opacity 0.25s;
}
.inovacao-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,150,12,0.4);
}
.inovacao-card:hover::before { opacity: 1; }

.inovacao-icon {
  font-size: 2.2rem;
  margin-bottom: 0.6rem;
}

.inovacao-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 10px;
  border-radius: 20px;
  margin-bottom: 0.7rem;
}

.monit { }
.inovacao-card:nth-child(1) .inovacao-tag { background: rgba(37,99,235,0.15); color: #60a5fa; border: 1px solid rgba(37,99,235,0.3); }
.inovacao-card:nth-child(2) .inovacao-tag { background: rgba(16,185,129,0.12); color: #34d399; border: 1px solid rgba(16,185,129,0.25); }
.inovacao-card:nth-child(3) .inovacao-tag { background: rgba(201,150,12,0.12); color: var(--gold-light); border: 1px solid rgba(201,150,12,0.3); }
.inovacao-card:nth-child(4) .inovacao-tag { background: rgba(139,92,246,0.12); color: #a78bfa; border: 1px solid rgba(139,92,246,0.3); }

.inovacao-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.inovacao-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 1rem;
}

.inovacao-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.inovacao-list li {
  font-size: 0.82rem;
  color: var(--muted);
  padding: 0.25rem 0;
  padding-left: 1.2rem;
  position: relative;
}
.inovacao-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ── CARD PORTEIROBOT ── */
.porteirobot-card {
  border-color: rgba(201,150,12,0.5) !important;
  background: linear-gradient(160deg, rgba(201,150,12,0.07) 0%, var(--bg-card) 60%);
  position: relative;
}
.porteirobot-card::before {
  opacity: 1 !important;
  background: linear-gradient(90deg, var(--gold), #e6b800, var(--gold)) !important;
  height: 3px;
}
.porteirobot-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 0.9rem;
  background: rgba(201,150,12,0.18);
  color: var(--gold-light);
  border: 1px solid rgba(201,150,12,0.4);
}
.porteirobot-logo {
  font-size: 1.5rem;
  font-weight: 800;
  font-family: 'Sora', sans-serif;
  color: var(--gold-light);
  letter-spacing: -0.02em;
  margin-bottom: 0.7rem;
}
.porteirobot-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 1rem;
}
.porteirobot-list li::before { color: var(--gold) !important; }
.porteirobot-cta {
  display: block;
  margin-top: 1.2rem;
  background: var(--gold);
  color: #0b1220;
  text-decoration: none;
  text-align: center;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  transition: background 0.2s, transform 0.15s;
}
.porteirobot-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.porteirobot-site {
  display: block;
  text-align: center;
  margin-top: 0.6rem;
  font-size: 0.75rem;
  color: rgba(201,150,12,0.55);
  text-decoration: none;
  letter-spacing: 0.03em;
}
.porteirobot-site:hover { color: var(--gold-light); }

/* ── FOOTER DA SEÇÃO INOVAÇÃO ── */
.inovacao-footer {
  max-width: 900px;
  margin: 3rem auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem 2rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  flex-wrap: wrap;
}
.inovacao-footer span {
  font-size: 0.9rem;
  color: var(--muted);
}

/* =============================================
   MELHORIAS DE CONVERSÃO — 2026-06-08
   ============================================= */

/* ── NAV: telefone + hamburger ── */
.nav-phone {
  color: var(--text) !important;
  font-weight: 700;
  font-size: 0.88rem;
  white-space: nowrap;
}
.nav-phone:hover { color: var(--gold-light) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  padding: 0 9px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.2s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── CTA de fim de seção ── */
.section-cta {
  max-width: 760px;
  margin: 3rem auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.2rem;
  padding: 1.4rem 1.8rem;
  background: rgba(201,150,12,0.06);
  border: 1px dashed rgba(201,150,12,0.35);
  border-radius: 14px;
  text-align: center;
}
.section-cta-text {
  color: var(--text);
  font-weight: 600;
  font-size: 0.98rem;
}

/* ── SEÇÃO ECONOMIA / COMPARATIVO ── */
.economia-section { background: var(--bg-dark); position: relative; }

.gate-wrap { position: relative; max-width: 1000px; margin: 0 auto; }

/* Conteúdo borrado/bloqueado até cadastro */
.gate-content {
  filter: blur(7px);
  pointer-events: none;
  user-select: none;
  transition: filter 0.4s;
}
.gate-wrap.unlocked .gate-content { filter: none; pointer-events: auto; user-select: auto; max-height: none; }
.gate-wrap.unlocked .gate-lock { display: none; }

/* Preview compacto enquanto bloqueado — evita área borrada gigante no mobile */
.gate-wrap:not(.unlocked) .gate-content {
  max-height: 540px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, #000 60%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 60%, transparent 100%);
}

.gate-lock {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.gate-card {
  background: var(--bg-card2);
  border: 1px solid rgba(201,150,12,0.4);
  border-radius: 18px;
  padding: 2.2rem 2rem;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 25px 70px rgba(0,0,0,0.55);
}
.gate-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.gate-title { font-size: 1.3rem; font-weight: 800; margin-bottom: 0.5rem; }
.gate-sub { color: var(--muted); font-size: 0.9rem; margin-bottom: 1.4rem; line-height: 1.55; }

.gate-form { display: flex; flex-direction: column; gap: 0.7rem; }
.gate-input {
  width: 100%;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 0.8rem 1rem;
  color: var(--text);
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}
.gate-input::placeholder { color: #5b7290; }
.gate-input:focus { border-color: var(--gold); }
.gate-submit {
  background: linear-gradient(135deg, var(--gold), #a37800);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 0.85rem 1rem;
  font-weight: 700;
  font-size: 0.98rem;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s;
}
.gate-submit:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(201,150,12,0.4); }
.gate-error {
  background: rgba(220,38,38,0.12);
  border: 1px solid rgba(220,38,38,0.35);
  color: #fca5a5;
  border-radius: 8px;
  padding: 0.5rem 0.7rem;
  font-size: 0.82rem;
}
.gate-divider {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 1rem 0;
  color: var(--muted);
  font-size: 0.8rem;
}
.gate-divider::before, .gate-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.gate-google { display: flex; justify-content: center; min-height: 44px; }
.gate-privacy { font-size: 0.72rem; color: #5b7290; margin-top: 1.2rem; line-height: 1.5; }

/* ── Tabela comparativa ── */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
.compare-col {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.8rem 1.6rem;
}
.compare-grd { border-color: rgba(16,185,129,0.45); background: linear-gradient(160deg, rgba(16,185,129,0.06), var(--bg-card) 55%); }
.compare-clt { opacity: 0.92; }
.compare-badge-best {
  position: absolute;
  top: -12px; right: 18px;
  background: #10b981;
  color: #04231a;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 12px;
  border-radius: 20px;
}
.compare-head { margin-bottom: 1.2rem; }
.compare-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 0.6rem;
}
.tag-bad { background: rgba(220,38,38,0.14); color: #fca5a5; border: 1px solid rgba(220,38,38,0.3); }
.tag-good { background: rgba(16,185,129,0.15); color: #6ee7b7; border: 1px solid rgba(16,185,129,0.3); }
.compare-head h3 { font-size: 1.1rem; font-weight: 800; }
.compare-list { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.compare-list li {
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--muted);
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.compare-list li:last-child { border-bottom: none; }
.compare-list li.good { color: #d1fae5; }
.compare-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.4rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--muted);
}
.compare-foot strong { font-size: 1.3rem; font-weight: 900; }
.foot-bad strong { color: #fca5a5; }
.foot-good strong { color: #34d399; }
.compare-cta {
  max-width: 1000px;
  margin: 2rem auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  text-align: center;
}
.compare-cta span { color: var(--text); font-weight: 600; }

/* ── CONTATO ── */
#contato { background: var(--bg-card); }
.contato-wrap {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: start;
}
.contato-form {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.contato-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.contato-msg { resize: vertical; min-height: 80px; }
.contato-submit {
  background: linear-gradient(135deg, var(--gold), #a37800);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 0.9rem 1rem;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s;
}
.contato-submit:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(201,150,12,0.4); }
.contato-ok {
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.35);
  color: #6ee7b7;
  border-radius: 10px;
  padding: 0.9rem 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
}
.contato-aside { display: flex; flex-direction: column; gap: 1.2rem; padding-top: 0.5rem; }
.contato-aside-item { display: flex; gap: 0.9rem; align-items: flex-start; font-size: 0.88rem; color: var(--muted); line-height: 1.45; }
.contato-aside-item strong { color: var(--text); }
.contato-aside-ico { font-size: 1.4rem; flex-shrink: 0; }
.contato-wpp-link { color: var(--gold-light); font-weight: 700; }
.contato-wpp-link:hover { color: #fff; }

/* ── Garantias no CTA final ── */
.cta-guarantees {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 1.5rem 0 0.5rem;
  font-size: 0.88rem;
  color: var(--muted);
}

/* ── Botão Instalar app (PWA) ── */
.nav-install {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  padding: 0.45rem 0.9rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  font-family: inherit;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.nav-install:hover { border-color: var(--gold); color: var(--gold-light); }

/* ── Barra CTA fixa (mobile) ── */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: rgba(11,18,32,0.97);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  padding: 0.4rem 0.4rem calc(0.4rem + env(safe-area-inset-bottom));
}
.mcta {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 0.45rem 0.2rem;
  border-radius: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text);
  transition: background 0.2s;
}
.mcta-ico { font-size: 1.25rem; line-height: 1; }
.mcta-sim { color: var(--gold-light); }
.mcta-wpp { color: #4ade80; }
.mcta:active { background: rgba(255,255,255,0.06); }

/* ── Fade-in no scroll ── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── RESPONSIVO (novos componentes) ── */
@media (max-width: 880px) {
  .compare-grid { grid-template-columns: 1fr; }
  .contato-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 70px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem;
    padding: 1rem 1.2rem 1.5rem;
    background: rgba(11,18,32,0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    transform: translateY(-130%);
    transition: transform 0.3s ease;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a:not(.nav-cta):not(.nav-simule) { display: block !important; padding: 0.6rem 0.2rem; }
  .nav-phone { font-size: 1rem; }
  .nav-simule, .nav-cta { text-align: center; }
  .contato-row { grid-template-columns: 1fr; }
  .section-cta { flex-direction: column; }
  /* Barra CTA fixa entra; WhatsApp flutuante sai (redundante) e abre espaço no rodapé */
  .mobile-cta-bar { display: flex; }
  .wpp-float { display: none; }
  body { padding-bottom: 64px; }
  footer { margin-bottom: 0; }
  .gate-card { padding: 1.8rem 1.3rem; border-radius: 14px; }
  .gate-lock { padding: 0.6rem; }
  .gate-title { font-size: 1.15rem; }
  .compare-foot strong { font-size: 1.15rem; }
  .gate-wrap:not(.unlocked) .gate-content { max-height: 600px; }
}
