:root {
    --primary: #0f172a;       /* Marinho profundo */
    --accent: #ff6b35;        /* Laranja Compensair (Foco em conversão) */
    --accent-hover: #e85a2a;
    --text-main: #1e293b;
    --text-light: #64748b;
    --bg-ice: #f8fafc;
    --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* NAVBAR */
.navbar {
    padding: 20px 0;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    z-index: 100;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo { font-weight: 800; font-size: 1.2rem; color: var(--primary); }
.logo span { font-weight: 400; font-size: 0.75rem; color: var(--text-light); }
.nav-links a { text-decoration: none; margin-left: 24px; color: var(--text-main); font-weight: 600; font-size: 0.9rem; }

.btn-nav {
    background: var(--primary);
    color: white !important;
    padding: 10px 20px;
    border-radius: 6px;
}

/* HERO */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tagline { color: var(--accent); font-weight: 800; font-size: 0.85rem; letter-spacing: 2px; }

h1 { font-size: 3.5rem; line-height: 1.1; margin: 20px 0; font-weight: 800; }
h1 strong { color: var(--accent); }

.hero-content p { font-size: 1.1rem; color: #94a3b8; margin-bottom: 40px; }

/* VÍDEO PROFISSIONAL */
.video-wrapper {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    background: #000;
}

.video-wrapper iframe { width: 100%; height: 100%; border: none; }

/* BOTOES CHAMATIVOS */
.btn-main {
    display: inline-block;
    padding: 22px 40px;
    background-color: var(--accent);
    color: white;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: center;
    border-bottom: 4px solid rgba(0,0,0,0.1);
}

.btn-main:hover {
    transform: translateY(-2px);
    background-color: var(--accent-hover);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

.sub-cta { margin-top: 15px; font-size: 0.85rem; color: #94a3b8; }

/* STATS */
.stats { background: var(--bg-ice); padding: 40px 0; border-bottom: 1px solid #e2e8f0; }
.stats-inner { display: flex; justify-content: space-around; text-align: center; }
.stat .number { display: block; font-size: 2.5rem; font-weight: 800; color: var(--primary); }
.stat .label { color: var(--text-light); font-size: 0.9rem; font-weight: 600; }

/* BENEFITS */
.benefits { padding: 100px 0; text-align: center; }
.section-title { font-size: 2.2rem; margin-bottom: 60px; font-weight: 800; }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

.b-card {
    padding: 40px;
    background: var(--bg-ice);
    border-radius: 20px;
    transition: 0.3s;
    text-align: left;
}

.b-card:hover { background: white; box-shadow: 0 20px 40px rgba(0,0,0,0.05); }
.b-icon { color: var(--accent); margin-bottom: 20px; }
.b-card h3 { margin-bottom: 15px; font-weight: 700; }
.b-card p { color: var(--text-light); font-size: 0.95rem; }

/* OFFER CARD */
.offer-card {
    background: var(--primary);
    padding: 60px;
    border-radius: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.offer-info h2 span { color: var(--accent); }
.badge { background: rgba(255,107,53,0.15); color: var(--accent); padding: 6px 12px; border-radius: 6px; font-weight: 800; font-size: 0.75rem; }

/* PULSE ANIMATION */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(255, 107, 53, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0); }
}
.pulse { animation: pulse 2s infinite; }

/* RESPONSIVO */
@media (max-width: 768px) {
    .hero-grid, .benefits-grid, .offer-card { grid-template-columns: 1fr; text-align: center; }
    .offer-card { flex-direction: column; gap: 40px; }
    h1 { font-size: 2.5rem; }
    .nav-links { display: none; }
}