:root {
    --bg: #050608;
    --surface: #11141a;
    --primary: #ff3131;
    --text: #ffffff;
    --text-dim: #a0a6b1;
    --nav-height: 70px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: var(--bg); color: var(--text); font-family: 'Outfit', sans-serif; line-height: 1.4; overflow-x: hidden; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; width: 100%; }

/* NAVBAR */
.navbar {
    background: rgba(5, 6, 8, 0.98); backdrop-filter: blur(10px);
    border-bottom: 1px solid #1f232b; position: fixed; width: 100%; top: 0; z-index: 1000;
    height: var(--nav-height); display: flex; align-items: center;
}
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-weight: 900; font-size: 1.4rem; letter-spacing: -1px; }
.logo span { color: var(--primary); }
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-address { font-size: 0.85rem; color: var(--text-dim); display: flex; align-items: center; gap: 8px; border-right: 1px solid #333; padding-right: 20px; }
.btn-call { background: #fff; color: #000; padding: 10px 18px; border-radius: 6px; text-decoration: none; font-weight: 800; font-size: 0.8rem; }

/* HERO */
.hero { padding: calc(var(--nav-height) + 60px) 0 60px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; }
.badge-live { background: rgba(37, 211, 102, 0.1); color: #25d366; padding: 6px 12px; border-radius: 4px; font-size: 0.7rem; font-weight: 800; display: inline-block; margin-bottom: 15px; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1.1; margin-bottom: 15px; }
h1 span { opacity: 0.4; }
.hero-content p { font-size: 1.1rem; color: var(--text-dim); margin-bottom: 30px; }
.main-cta { background: var(--primary); color: #fff; padding: 20px 35px; border-radius: 8px; text-decoration: none; font-weight: 900; display: inline-block; }
.urgency-sub { margin-top: 15px; color: var(--primary); font-weight: 700; font-size: 0.85rem; }
.hero-image img { width: 100%; height: 380px; object-fit: cover; border-radius: 20px; border: 1px solid #1f232b; }

/* LOCALIZAÇÃO / BAIRROS */
.location-info { padding: 60px 0; border-top: 1px solid #1f232b; }
.section-title { font-size: 2rem; text-align: center; margin-bottom: 10px; }
.section-subtitle { text-align: center; color: var(--text-dim); margin-bottom: 30px; }
.neighborhoods-grid { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.neighborhoods-grid span { background: #1a1d24; padding: 6px 14px; border-radius: 50px; font-size: 0.75rem; color: var(--text-dim); border: 1px solid #2a2e38; }

/* SINTOMAS */
.symptoms { padding: 80px 0; background: #080a0f; }
.symptoms-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 12px; }
.s-card { background: var(--surface); padding: 20px; border-radius: 12px; border-left: 4px solid var(--primary); font-size: 0.9rem; display: flex; align-items: center; gap: 12px; }
.s-card i { color: var(--primary); font-size: 0.7rem; }
.center-btn { text-align: center; margin-top: 40px; }
.btn-outline { border: 2px solid var(--primary); color: var(--primary); padding: 15px 30px; border-radius: 8px; text-decoration: none; font-weight: 700; display: inline-block; }

/* BENTO / DIFERENCIAIS */
.differentials { padding: 80px 0; }
.bento-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.bento-item { background: var(--surface); padding: 35px; border-radius: 24px; border: 1px solid #1f232b; }
.bento-item.red { background: var(--primary); color: #fff; border: none; }
.bento-item.red * { color: #fff; }
.bento-item i { font-size: 2rem; color: var(--primary); margin-bottom: 20px; display: block; }

/* STEPS / WORKFLOW */
.workflow { padding: 80px 0; background: #080a0f; }
.steps-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; }
.step-card { text-align: center; }
.step-card span { font-size: 3rem; font-weight: 900; opacity: 0.1; display: block; margin-bottom: -20px; }
.step-card h5 { font-size: 1.2rem; margin-bottom: 10px; position: relative; }

/* FAQ */
.faq { padding: 80px 0; }
.faq-list { max-width: 800px; margin: 0 auto; }
details { background: var(--surface); padding: 20px; border-radius: 12px; margin-bottom: 10px; cursor: pointer; border: 1px solid #1f232b; }
summary { font-weight: 700; display: flex; justify-content: space-between; align-items: center; list-style: none; }

/* CTA FINAL */
.cta-final { padding: 100px 0; background: linear-gradient(rgba(255, 49, 49, 0.1), transparent); text-align: center; }
.cta-final h2 { font-size: 2.5rem; margin-bottom: 15px; }

/* FOOTER */
.site-footer { padding: 60px 0; background: #000; border-top: 1px solid #1f232b; }
.footer-grid { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px; }

/* MOBILE */
@media (max-width: 850px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-image { order: -1; }
    .hero-image img { height: 260px; }
    .nav-address, .mobile-hide { display: none; }
    .footer-grid { flex-direction: column; text-align: center; }
}

.floating-wa { position: fixed; bottom: 25px; right: 25px; background: #25d366; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 30px; color: #fff; z-index: 2000; box-shadow: 0 10px 20px rgba(0,0,0,0.4); }
.hero-image video {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 20px;
    border: 1px solid #1f232b;
    pointer-events: none; /* Isso desabilita cliques no vídeo, impedindo o "pausar" ao clicar */
}