/* =======================================================
   ARGOS ENERGIA SOLAR - DESIGN SYSTEM COMPLETO
   ======================================================= */

/* 1. VARIÁVEIS E BASE */
:root {
    --bg-dark: #05050A;
    --bg-glass: rgba(255, 255, 255, 0.03);
    --border-glass: rgba(255, 255, 255, 0.08);
    --primary-orange: #FF6B00;
    --gradient-sun: linear-gradient(135deg, #FFB800, #FF6B00);
    --text-main: #FFFFFF;
    --text-muted: #A1A1AA;
}

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

html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
h1, h2, h3, h4 { font-family: 'Space Grotesk', sans-serif; }
.text-gradient { background: var(--gradient-sun); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* 2. HEADER E NAVEGAÇÃO */
.navbar {
    position: fixed; width: 100%; max-width: 100vw; top: 0; z-index: 100;
    background: rgba(5, 5, 10, 0.6); backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-glass); padding: 0.75rem 0;
}
.nav-container { display: flex; justify-content: space-between; align-items: center; position: relative; width: 100%; }
.logo { display: flex; align-items: center; }
.logo-img { height: 40px; width: auto; transition: transform 0.3s; }
.logo-img:hover { transform: scale(1.05); }

.nav-links { display: flex; align-items: center; margin-left: 1rem; }
.nav-links a { color: var(--text-main); text-decoration: none; margin: 0 1rem; font-weight: 400; transition: color 0.3s; }
.nav-links a:hover { color: var(--primary-orange); }
.btn-far-right { margin-left: auto; }

/* Ícone de Menu Celular */
.hamburger { display: none; flex-direction: column; gap: 6px; cursor: pointer; z-index: 1001; }
.hamburger span { width: 28px; height: 3px; background: var(--text-main); border-radius: 3px; transition: all 0.3s ease; }

/* 3. BOTÕES GLOBAIS */
.btn-primary {
    background: var(--gradient-sun); color: #000; font-weight: 800; text-decoration: none;
    padding: 0.85rem 1.75rem; border-radius: 50px; display: inline-flex; align-items: center; gap: 0.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(255, 107, 0, 0.4); }

.btn-outline {
    background: transparent; border: 1px solid var(--border-glass); color: var(--text-main); text-decoration: none;
    padding: 0.85rem 1.75rem; border-radius: 50px; transition: all 0.3s;
}
.btn-outline:hover { background: var(--bg-glass); border-color: var(--primary-orange); }

/* 4. SEÇÃO HERO (Apresentação Principal) */
.hero-modern { position: relative; min-height: 100vh; display: flex; align-items: center; padding-top: 70px; }

.glow-orb { position: absolute; border-radius: 50%; filter: blur(100px); z-index: 0; pointer-events: none; }
.orb-1 { top: 5%; left: -5%; width: 600px; height: 600px; background: rgba(255, 107, 0, 0.20); }
.orb-2 { bottom: -10%; right: -5%; width: 500px; height: 450px; background: rgba(0, 163, 255, 0.12); }

.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; width: 100%; position: relative; z-index: 2; }

.badge-modern {
    display: inline-flex; align-items: center; gap: 0.5rem; background: var(--bg-glass); border: 1px solid var(--border-glass);
    padding: 0.5rem 1rem; border-radius: 50px; font-size: 0.8rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 2rem;
}
.pulse-dot { width: 8px; height: 8px; background: var(--primary-orange); border-radius: 50%; box-shadow: 0 0 10px var(--primary-orange); animation: pulse 2s infinite; }
@keyframes pulse { 0% { opacity: 1; } 50% { opacity: 0.4; } 100% { opacity: 1; } }

.hero-title { font-size: clamp(3.2rem, 5.5vw, 4.5rem); line-height: 1.1; margin-bottom: 1.5rem; letter-spacing: -0.02em;}
.hero-subtitle { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 3rem; max-width: 500px; line-height: 1.6;}
.hero-actions { display: flex; gap: 1rem; margin-bottom: 4rem; }

.trust-indicators { display: flex; align-items: center; gap: 2rem; }
.trust-item { display: flex; flex-direction: column; }
.trust-item strong { font-size: 1.4rem; color: var(--text-main); }
.trust-item span { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px;}
.divider { width: 1px; height: 35px; background: var(--border-glass); }

.mascot-container { position: relative; display: flex; justify-content: center; }
.mascot-img { width: 100%; max-width: 480px; animation: float 6s ease-in-out infinite; border-radius: 20px;}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }

.mascot-dialog {
    position: absolute; bottom: 15px; right: -25px; background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 15px; padding: 1.5rem; max-width: 280px;
    font-size: 0.9rem; font-style: italic; box-shadow: 0 20px 40px rgba(0,0,0,0.5); border-top-left-radius: 0;
}

/* 5. SEÇÃO SOLUÇÕES */
.solutions-section { padding: 8rem 0; position: relative; z-index: 10; background: var(--bg-dark); }
.section-header.center { text-align: center; display: flex; flex-direction: column; align-items: center; margin-bottom: 5rem; }
.section-header h2 { font-size: clamp(2.5rem, 4vw, 3.5rem); margin-bottom: 1rem; letter-spacing: -0.02em; }
.section-header p { color: var(--text-muted); font-size: 1.1rem; max-width: 600px; line-height: 1.6; }

.solutions-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.solution-card {
    background: rgba(15, 15, 20, 0.4); border: 1px solid var(--border-glass); border-radius: 24px;
    padding: 2.5rem 2rem; position: relative; overflow: hidden; backdrop-filter: blur(10px);
    transition: transform 0.4s ease, border-color 0.4s ease; display: flex; flex-direction: column; align-items: flex-start;
}
.card-glow {
    position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,107,0,0.1) 0%, transparent 50%); opacity: 0; transition: opacity 0.5s ease; pointer-events: none; z-index: 0;
}
.solution-card:hover { transform: translateY(-10px); border-color: rgba(255, 107, 0, 0.3); }
.solution-card:hover .card-glow { opacity: 1; }

.solution-icon {
    font-size: 3rem; margin-bottom: 1.5rem; position: relative; z-index: 1; background: rgba(255, 107, 0, 0.1);
    width: 70px; height: 70px; display: flex; align-items: center; justify-content: center; border-radius: 16px; border: 1px solid rgba(255, 107, 0, 0.2);
}
.solution-card h3 { font-size: 1.5rem; margin-bottom: 1rem; position: relative; z-index: 1;}
.solution-card p { color: var(--text-muted); font-size: 1rem; line-height: 1.6; margin-bottom: 2rem; position: relative; z-index: 1; flex-grow: 1; }

.card-link { color: var(--text-main); text-decoration: none; font-weight: 600; font-size: 0.95rem; display: flex; align-items: center; gap: 0.5rem; position: relative; z-index: 1; transition: color 0.3s ease; }
.card-link span { color: var(--primary-orange); transition: transform 0.3s ease; }
.card-link:hover { color: var(--primary-orange); }
.card-link:hover span { transform: translateX(5px); }

/* 6. SEÇÃO SIMULADOR (Interativo) */
.simulator-section { padding: 8rem 0; background: var(--bg-dark); position: relative; z-index: 10; }
.simulator-dashboard { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; background: rgba(15, 15, 20, 0.4); border: 1px solid var(--border-glass); border-radius: 24px; padding: 3rem; backdrop-filter: blur(12px); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.sim-controls label { display: block; color: var(--text-muted); font-size: 0.95rem; margin-bottom: 0.8rem; text-transform: uppercase; letter-spacing: 1px; }
.sim-currency-box { display: flex; align-items: center; background: rgba(0,0,0,0.5); border: 2px solid var(--border-glass); border-radius: 12px; padding: 0.5rem 1rem; margin-bottom: 2rem; transition: border-color 0.3s; }
.sim-currency-box:focus-within { border-color: var(--primary-orange); box-shadow: 0 0 15px rgba(255, 107, 0, 0.2); }
.sim-currency-box span { color: var(--primary-orange); font-size: 1.5rem; font-weight: 800; margin-right: 0.5rem; }
.sim-currency-box input { background: transparent; border: none; color: var(--text-main); font-size: 2rem; font-weight: 800; width: 100%; outline: none; font-family: 'Space Grotesk', sans-serif; }

.sim-slider-container { margin-bottom: 3rem; }
input[type=range] { -webkit-appearance: none; width: 100%; background: transparent; }
input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; height: 24px; width: 24px; border-radius: 50%; background: var(--primary-orange); cursor: pointer; margin-top: -10px; box-shadow: 0 0 15px var(--primary-orange); }
input[type=range]::-webkit-slider-runnable-track { width: 100%; height: 6px; cursor: pointer; background: var(--border-glass); border-radius: 5px; }
.slider-labels { display: flex; justify-content: space-between; margin-top: 0.8rem; color: var(--text-muted); font-size: 0.85rem; }

.toggle-buttons { display: flex; gap: 1rem; }
.sim-btn { flex: 1; background: transparent; border: 1px solid var(--border-glass); color: var(--text-main); padding: 1rem; border-radius: 12px; cursor: pointer; transition: all 0.3s; font-family: 'Outfit', sans-serif; font-weight: 600; }
.sim-btn.active { background: rgba(255, 107, 0, 0.15); border-color: var(--primary-orange); color: var(--primary-orange); }

.sim-results { display: flex; flex-direction: column; gap: 1.5rem; }
.result-box { background: rgba(0,0,0,0.4); border: 1px solid var(--border-glass); border-radius: 16px; padding: 2rem; text-align: center; }
.result-box.highlight { background: linear-gradient(145deg, rgba(255, 107, 0, 0.1), rgba(0,0,0,0.4)); border-color: rgba(255, 107, 0, 0.3); }
.result-box h4 { color: var(--text-muted); font-weight: 400; margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 1px; font-size: 0.9rem;}
.result-value { display: flex; justify-content: center; align-items: baseline; gap: 0.5rem; margin-bottom: 0.5rem; }
.result-value .currency { font-size: 1.5rem; color: var(--primary-orange); }
.result-value span:not(.currency) { font-size: 3.5rem; font-weight: 800; font-family: 'Space Grotesk', sans-serif; color: var(--text-main); line-height: 1;}
.result-note { color: var(--text-muted); font-size: 0.95rem; }
.result-note span { color: var(--text-main); font-weight: 600; }
.result-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.result-box-small { background: rgba(0,0,0,0.3); border: 1px solid var(--border-glass); border-radius: 12px; padding: 1.5rem; display: flex; flex-direction: column; }
.result-box-small h4 { color: var(--text-muted); font-size: 0.8rem; margin-bottom: 0.5rem; text-transform: uppercase; }
.result-box-small strong { font-size: 1.5rem; font-family: 'Space Grotesk', sans-serif; color: var(--primary-orange); }
.result-box-small span { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.2rem;}
.w-100 { width: 100%; justify-content: center; }

/* 7. SEÇÃO BLOG */
.blog-section { padding: 8rem 0; background: var(--bg-dark); position: relative; z-index: 10; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2.5rem; min-height: 200px; }
.loading-blog { grid-column: 1 / -1; text-align: center; color: var(--primary-orange); font-size: 1.1rem; display: flex; align-items: center; justify-content: center; gap: 10px; }
.blog-card { background: rgba(15, 15, 20, 0.4); border: 1px solid var(--border-glass); border-radius: 20px; overflow: hidden; backdrop-filter: blur(10px); transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-10px); border-color: rgba(255, 107, 0, 0.4); box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 107, 0, 0.15); }
.blog-img-container { width: 100%; height: 220px; overflow: hidden; border-bottom: 1px solid var(--border-glass); }
.blog-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.blog-card:hover .blog-img { transform: scale(1.05); }
.blog-content { padding: 2rem; display: flex; flex-direction: column; flex-grow: 1; }
.blog-content h3 { font-size: 1.3rem; margin-bottom: 1rem; line-height: 1.4; color: var(--text-main); }
.blog-content p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; margin-bottom: 1.5rem; flex-grow: 1; }
.blog-link { color: var(--primary-orange); text-decoration: none; font-weight: 600; font-size: 0.95rem; display: inline-flex; align-items: center; gap: 0.5rem; transition: color 0.3s ease; }
.blog-link span { transition: transform 0.3s ease; }
.blog-link:hover { color: #FFB800; }
.blog-link:hover span { transform: translateX(5px); }

/* =======================================================
   8. RESPONSIVIDADE TOTAL (Celular e Tablet)
   ======================================================= */
.mobile-only { display: none !important; }

/* TABLET E CELULAR MENU (Até 1024px) */
@media (max-width: 1024px) {
    .container { padding: 0 1.5rem; } /* Margens laterais seguras */

    /* Menu Mobile Ativado */
    .desktop-only { display: none !important; }
    .mobile-only { display: inline-flex !important; margin-top: 2rem; justify-content: center; }
    
    /* POSIÇÃO SNIPER PARA O HAMBÚRGUER */
    .hamburger { 
        display: flex; 
        position: absolute; 
        right: 1.5rem; 
        top: 50%; 
        transform: translateY(-50%); 
    }
    
    .nav-links {
        position: fixed; top: 0; right: -100%; 
        width: 85%; max-width: 320px; height: 100vh;
        background: rgba(5, 5, 10, 0.98); backdrop-filter: blur(25px);
        display: flex; flex-direction: column; justify-content: center; align-items: center;
        transition: 0.4s cubic-bezier(0.77, 0.2, 0.05, 1); 
        z-index: 1000; border-left: 1px solid var(--border-glass);
        box-shadow: -10px 0 30px rgba(0,0,0,0.8);
    }
    .nav-links.active { right: 0; }
    .nav-links a { margin: 1.5rem 0; font-size: 1.3rem; }

    .hamburger.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); background: var(--primary-orange); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); background: var(--primary-orange); }

    /* Layout Tablet */
    .hero-grid, .simulator-dashboard { grid-template-columns: 1fr; gap: 4rem; text-align: center; }
    .hero-visual { order: 1; }
    .hero-copy { order: 2; display: flex; flex-direction: column; align-items: center; }
    .hero-actions, .trust-indicators { justify-content: center; flex-wrap: wrap; }
    .divider { display: none; }
    .mascot-dialog { right: 0; left: 0; margin: 0 auto; bottom: -30px; text-align: center; border-radius: 15px; }
}

/* CELULARES PEQUENOS (Até 768px) */
@media (max-width: 768px) {
    .container { padding: 0 1.2rem; }
    .hamburger { right: 1.2rem; } /* Acompanha o padding do container */

    .hero-grid { padding-top: 2rem; gap: 3rem; }
    .hero-copy { display: flex; flex-direction: column; align-items: center; text-align: center; width: 100%; padding: 0; }
    .badge-modern { margin: 0 auto 1.5rem auto !important; } 
    .hero-title, .hero-subtitle { text-align: center !important; margin-left: auto !important; margin-right: auto !important; width: 100%; }
    .hero-title { font-size: clamp(2.5rem, 9vw, 3rem); }
    .hero-actions { display: flex; flex-direction: column; align-items: center; width: 100%; gap: 1rem; margin-bottom: 2rem; }
    .btn-primary, .btn-outline { width: 100%; max-width: 320px; justify-content: center; }
    .trust-indicators { justify-content: center; width: 100%; gap: 1.5rem; flex-wrap: wrap; }
    .logo-img { height: 32px; }
    
    /* Centraliza o Lúmen */
    .mascot-img { max-width: 260px; }
    .mascot-dialog { 
        position: relative !important; width: 90% !important; max-width: 300px;
        margin: 1.5rem auto 0 auto !important; right: auto !important; left: auto !important; bottom: auto !important;
        text-align: center; box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    }

    .simulator-dashboard { padding: 2rem 1.5rem; }
    .sim-type-toggles .toggle-buttons { flex-direction: column; }
    .result-value span:not(.currency) { font-size: 2.5rem; }
    .result-grid { grid-template-columns: 1fr; }
}
/* =======================================================
   ARGOS ENERGIA SOLAR - DESIGN SYSTEM COMPLETO
   ======================================================= */

/* 1. VARIÁVEIS E BASE */
:root {
    --bg-dark: #05050A;
    --bg-glass: rgba(255, 255, 255, 0.03);
    --border-glass: rgba(255, 255, 255, 0.08);
    --primary-orange: #FF6B00;
    --gradient-sun: linear-gradient(135deg, #FFB800, #FF6B00);
    --text-main: #FFFFFF;
    --text-muted: #A1A1AA;
}

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

html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
h1, h2, h3, h4 { font-family: 'Space Grotesk', sans-serif; }
.text-gradient { background: var(--gradient-sun); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* 2. HEADER E NAVEGAÇÃO */
.navbar {
    position: fixed; width: 100%; max-width: 100vw; top: 0; z-index: 100;
    background: rgba(5, 5, 10, 0.6); backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-glass); padding: 0.75rem 0;
}
.nav-container { display: flex; justify-content: space-between; align-items: center; position: relative; width: 100%; }
.logo { display: flex; align-items: center; }
.logo-img { height: 40px; width: auto; transition: transform 0.3s; }
.logo-img:hover { transform: scale(1.05); }

.nav-links { display: flex; align-items: center; margin-left: 1rem; }
.nav-links a { color: var(--text-main); text-decoration: none; margin: 0 1rem; font-weight: 400; transition: color 0.3s; }
.nav-links a:hover { color: var(--primary-orange); }
.btn-far-right { margin-left: auto; }

/* Ícone de Menu Celular */
.hamburger { display: none; flex-direction: column; gap: 6px; cursor: pointer; z-index: 1001; }
.hamburger span { width: 28px; height: 3px; background: var(--text-main); border-radius: 3px; transition: all 0.3s ease; }

/* 3. BOTÕES GLOBAIS */
.btn-primary {
    background: var(--gradient-sun); color: #000; font-weight: 800; text-decoration: none;
    padding: 0.85rem 1.75rem; border-radius: 50px; display: inline-flex; align-items: center; gap: 0.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(255, 107, 0, 0.4); }

.btn-outline {
    background: transparent; border: 1px solid var(--border-glass); color: var(--text-main); text-decoration: none;
    padding: 0.85rem 1.75rem; border-radius: 50px; transition: all 0.3s;
}
.btn-outline:hover { background: var(--bg-glass); border-color: var(--primary-orange); }

/* 4. SEÇÃO HERO (Apresentação Principal) */
.hero-modern { position: relative; min-height: 100vh; display: flex; align-items: center; padding-top: 70px; }

.glow-orb { position: absolute; border-radius: 50%; filter: blur(100px); z-index: 0; pointer-events: none; }
.orb-1 { top: 5%; left: -5%; width: 600px; height: 600px; background: rgba(255, 107, 0, 0.20); }
.orb-2 { bottom: -10%; right: -5%; width: 500px; height: 450px; background: rgba(0, 163, 255, 0.12); }

.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; width: 100%; position: relative; z-index: 2; }

.badge-modern {
    display: inline-flex; align-items: center; gap: 0.5rem; background: var(--bg-glass); border: 1px solid var(--border-glass);
    padding: 0.5rem 1rem; border-radius: 50px; font-size: 0.8rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 2rem;
}
.pulse-dot { width: 8px; height: 8px; background: var(--primary-orange); border-radius: 50%; box-shadow: 0 0 10px var(--primary-orange); animation: pulse 2s infinite; }
@keyframes pulse { 0% { opacity: 1; } 50% { opacity: 0.4; } 100% { opacity: 1; } }

.hero-title { font-size: clamp(3.2rem, 5.5vw, 4.5rem); line-height: 1.1; margin-bottom: 1.5rem; letter-spacing: -0.02em;}
.hero-subtitle { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 3rem; max-width: 500px; line-height: 1.6;}
.hero-actions { display: flex; gap: 1rem; margin-bottom: 4rem; }

.trust-indicators { display: flex; align-items: center; gap: 2rem; }
.trust-item { display: flex; flex-direction: column; }
.trust-item strong { font-size: 1.4rem; color: var(--text-main); }
.trust-item span { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px;}
.divider { width: 1px; height: 35px; background: var(--border-glass); }

.mascot-container { position: relative; display: flex; justify-content: center; }
.mascot-img { width: 100%; max-width: 480px; animation: float 6s ease-in-out infinite; border-radius: 20px;}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }

.mascot-dialog {
    position: absolute; bottom: 15px; right: -25px; background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 15px; padding: 1.5rem; max-width: 280px;
    font-size: 0.9rem; font-style: italic; box-shadow: 0 20px 40px rgba(0,0,0,0.5); border-top-left-radius: 0;
}

/* 5. SEÇÃO SOLUÇÕES */
.solutions-section { padding: 8rem 0; position: relative; z-index: 10; background: var(--bg-dark); }
.section-header.center { text-align: center; display: flex; flex-direction: column; align-items: center; margin-bottom: 5rem; }
.section-header h2 { font-size: clamp(2.5rem, 4vw, 3.5rem); margin-bottom: 1rem; letter-spacing: -0.02em; }
.section-header p { color: var(--text-muted); font-size: 1.1rem; max-width: 600px; line-height: 1.6; }

.solutions-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.solution-card {
    background: rgba(15, 15, 20, 0.4); border: 1px solid var(--border-glass); border-radius: 24px;
    padding: 2.5rem 2rem; position: relative; overflow: hidden; backdrop-filter: blur(10px);
    transition: transform 0.4s ease, border-color 0.4s ease; display: flex; flex-direction: column; align-items: flex-start;
}
.card-glow {
    position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,107,0,0.1) 0%, transparent 50%); opacity: 0; transition: opacity 0.5s ease; pointer-events: none; z-index: 0;
}
.solution-card:hover { transform: translateY(-10px); border-color: rgba(255, 107, 0, 0.3); }
.solution-card:hover .card-glow { opacity: 1; }

.solution-icon {
    font-size: 3rem; margin-bottom: 1.5rem; position: relative; z-index: 1; background: rgba(255, 107, 0, 0.1);
    width: 70px; height: 70px; display: flex; align-items: center; justify-content: center; border-radius: 16px; border: 1px solid rgba(255, 107, 0, 0.2);
}
.solution-card h3 { font-size: 1.5rem; margin-bottom: 1rem; position: relative; z-index: 1;}
.solution-card p { color: var(--text-muted); font-size: 1rem; line-height: 1.6; margin-bottom: 2rem; position: relative; z-index: 1; flex-grow: 1; }

.card-link { color: var(--text-main); text-decoration: none; font-weight: 600; font-size: 0.95rem; display: flex; align-items: center; gap: 0.5rem; position: relative; z-index: 1; transition: color 0.3s ease; }
.card-link span { color: var(--primary-orange); transition: transform 0.3s ease; }
.card-link:hover { color: var(--primary-orange); }
.card-link:hover span { transform: translateX(5px); }

/* 6. SEÇÃO SIMULADOR (Interativo) */
.simulator-section { padding: 8rem 0; background: var(--bg-dark); position: relative; z-index: 10; }
.simulator-dashboard { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; background: rgba(15, 15, 20, 0.4); border: 1px solid var(--border-glass); border-radius: 24px; padding: 3rem; backdrop-filter: blur(12px); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.sim-controls label { display: block; color: var(--text-muted); font-size: 0.95rem; margin-bottom: 0.8rem; text-transform: uppercase; letter-spacing: 1px; }
.sim-currency-box { display: flex; align-items: center; background: rgba(0,0,0,0.5); border: 2px solid var(--border-glass); border-radius: 12px; padding: 0.5rem 1rem; margin-bottom: 2rem; transition: border-color 0.3s; }
.sim-currency-box:focus-within { border-color: var(--primary-orange); box-shadow: 0 0 15px rgba(255, 107, 0, 0.2); }
.sim-currency-box span { color: var(--primary-orange); font-size: 1.5rem; font-weight: 800; margin-right: 0.5rem; }
.sim-currency-box input { background: transparent; border: none; color: var(--text-main); font-size: 2rem; font-weight: 800; width: 100%; outline: none; font-family: 'Space Grotesk', sans-serif; }

.sim-slider-container { margin-bottom: 3rem; }
input[type=range] { -webkit-appearance: none; width: 100%; background: transparent; }
input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; height: 24px; width: 24px; border-radius: 50%; background: var(--primary-orange); cursor: pointer; margin-top: -10px; box-shadow: 0 0 15px var(--primary-orange); }
input[type=range]::-webkit-slider-runnable-track { width: 100%; height: 6px; cursor: pointer; background: var(--border-glass); border-radius: 5px; }
.slider-labels { display: flex; justify-content: space-between; margin-top: 0.8rem; color: var(--text-muted); font-size: 0.85rem; }

.toggle-buttons { display: flex; gap: 1rem; }
.sim-btn { flex: 1; background: transparent; border: 1px solid var(--border-glass); color: var(--text-main); padding: 1rem; border-radius: 12px; cursor: pointer; transition: all 0.3s; font-family: 'Outfit', sans-serif; font-weight: 600; }
.sim-btn.active { background: rgba(255, 107, 0, 0.15); border-color: var(--primary-orange); color: var(--primary-orange); }

.sim-results { display: flex; flex-direction: column; gap: 1.5rem; }
.result-box { background: rgba(0,0,0,0.4); border: 1px solid var(--border-glass); border-radius: 16px; padding: 2rem; text-align: center; }
.result-box.highlight { background: linear-gradient(145deg, rgba(255, 107, 0, 0.1), rgba(0,0,0,0.4)); border-color: rgba(255, 107, 0, 0.3); }
.result-box h4 { color: var(--text-muted); font-weight: 400; margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 1px; font-size: 0.9rem;}
.result-value { display: flex; justify-content: center; align-items: baseline; gap: 0.5rem; margin-bottom: 0.5rem; }
.result-value .currency { font-size: 1.5rem; color: var(--primary-orange); }
.result-value span:not(.currency) { font-size: 3.5rem; font-weight: 800; font-family: 'Space Grotesk', sans-serif; color: var(--text-main); line-height: 1;}
.result-note { color: var(--text-muted); font-size: 0.95rem; }
.result-note span { color: var(--text-main); font-weight: 600; }
.result-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.result-box-small { background: rgba(0,0,0,0.3); border: 1px solid var(--border-glass); border-radius: 12px; padding: 1.5rem; display: flex; flex-direction: column; }
.result-box-small h4 { color: var(--text-muted); font-size: 0.8rem; margin-bottom: 0.5rem; text-transform: uppercase; }
.result-box-small strong { font-size: 1.5rem; font-family: 'Space Grotesk', sans-serif; color: var(--primary-orange); }
.result-box-small span { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.2rem;}
.w-100 { width: 100%; justify-content: center; }

/* 7. SEÇÃO BLOG */
.blog-section { padding: 8rem 0; background: var(--bg-dark); position: relative; z-index: 10; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2.5rem; min-height: 200px; }
.loading-blog { grid-column: 1 / -1; text-align: center; color: var(--primary-orange); font-size: 1.1rem; display: flex; align-items: center; justify-content: center; gap: 10px; }
.blog-card { background: rgba(15, 15, 20, 0.4); border: 1px solid var(--border-glass); border-radius: 20px; overflow: hidden; backdrop-filter: blur(10px); transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-10px); border-color: rgba(255, 107, 0, 0.4); box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 107, 0, 0.15); }
.blog-img-container { width: 100%; height: 220px; overflow: hidden; border-bottom: 1px solid var(--border-glass); }
.blog-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.blog-card:hover .blog-img { transform: scale(1.05); }
.blog-content { padding: 2rem; display: flex; flex-direction: column; flex-grow: 1; }
.blog-content h3 { font-size: 1.3rem; margin-bottom: 1rem; line-height: 1.4; color: var(--text-main); }
.blog-content p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; margin-bottom: 1.5rem; flex-grow: 1; }
.blog-link { color: var(--primary-orange); text-decoration: none; font-weight: 600; font-size: 0.95rem; display: inline-flex; align-items: center; gap: 0.5rem; transition: color 0.3s ease; }
.blog-link span { transition: transform 0.3s ease; }
.blog-link:hover { color: #FFB800; }
.blog-link:hover span { transform: translateX(5px); }

/* =======================================================
   8. RESPONSIVIDADE TOTAL (Celular e Tablet)
   ======================================================= */
.mobile-only { display: none !important; }

/* TABLET E CELULAR MENU (Até 1024px) */
@media (max-width: 1024px) {
    .container { padding: 0 1.5rem; } /* Margens laterais seguras */

    /* Menu Mobile Ativado */
    .desktop-only { display: none !important; }
    .mobile-only { display: inline-flex !important; margin-top: 2rem; justify-content: center; }
    
    /* POSIÇÃO SNIPER PARA O HAMBÚRGUER */
    .hamburger { 
        display: flex; 
        position: absolute; 
        right: 1.5rem; 
        top: 50%; 
        transform: translateY(-50%); 
    }
    
    .nav-links {
        position: fixed; top: 0; right: -100%; 
        width: 85%; max-width: 320px; height: 100vh;
        background: rgba(5, 5, 10, 0.98); backdrop-filter: blur(25px);
        display: flex; flex-direction: column; justify-content: center; align-items: center;
        transition: 0.4s cubic-bezier(0.77, 0.2, 0.05, 1); 
        z-index: 1000; border-left: 1px solid var(--border-glass);
        box-shadow: -10px 0 30px rgba(0,0,0,0.8);
    }
    .nav-links.active { right: 0; }
    .nav-links a { margin: 1.5rem 0; font-size: 1.3rem; }

    .hamburger.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); background: var(--primary-orange); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); background: var(--primary-orange); }

    /* Layout Tablet */
    .hero-grid, .simulator-dashboard { grid-template-columns: 1fr; gap: 4rem; text-align: center; }
    .hero-visual { order: 1; }
    .hero-copy { order: 2; display: flex; flex-direction: column; align-items: center; }
    .hero-actions, .trust-indicators { justify-content: center; flex-wrap: wrap; }
    .divider { display: none; }
    .mascot-dialog { right: 0; left: 0; margin: 0 auto; bottom: -30px; text-align: center; border-radius: 15px; }
}

/* CELULARES PEQUENOS (Até 768px) */
@media (max-width: 768px) {
    .container { padding: 0 1.2rem; }
    .hamburger { right: 1.2rem; } /* Acompanha o padding do container */

    .hero-grid { padding-top: 2rem; gap: 3rem; }
    .hero-copy { display: flex; flex-direction: column; align-items: center; text-align: center; width: 100%; padding: 0; }
    .badge-modern { margin: 0 auto 1.5rem auto !important; } 
    .hero-title, .hero-subtitle { text-align: center !important; margin-left: auto !important; margin-right: auto !important; width: 100%; }
    .hero-title { font-size: clamp(2.5rem, 9vw, 3rem); }
    .hero-actions { display: flex; flex-direction: column; align-items: center; width: 100%; gap: 1rem; margin-bottom: 2rem; }
    .btn-primary, .btn-outline { width: 100%; max-width: 320px; justify-content: center; }
    .trust-indicators { justify-content: center; width: 100%; gap: 1.5rem; flex-wrap: wrap; }
    .logo-img { height: 32px; }
    
    /* Centraliza o Lúmen */
    .mascot-img { max-width: 260px; }
    .mascot-dialog { 
        position: relative !important; width: 90% !important; max-width: 300px;
        margin: 1.5rem auto 0 auto !important; right: auto !important; left: auto !important; bottom: auto !important;
        text-align: center; box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    }

    .simulator-dashboard { padding: 2rem 1.5rem; }
    .sim-type-toggles .toggle-buttons { flex-direction: column; }
    .result-value span:not(.currency) { font-size: 2.5rem; }
    .result-grid { grid-template-columns: 1fr; }
}
/* ================= SEÇÕES FINAIS ================= */
.how-it-works, .contact-footer { padding: 8rem 0; background: var(--bg-dark); }

.how-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 4rem; align-items: center; }
.infographic-wrapper { background: var(--bg-glass); border: 1px solid var(--border-glass); border-radius: 30px; padding: 10px; box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.infographic-img { width: 100%; border-radius: 20px; display: block; }
.how-steps { display: flex; flex-direction: column; gap: 2.5rem; }
.step-item { display: flex; gap: 1.5rem; }
.step-num { background: var(--gradient-sun); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-family: 'Space Grotesk', sans-serif; font-size: 2.5rem; font-weight: 800; }

.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 4rem; border-top: 1px solid var(--border-glass); padding-top: 4rem; }
.footer-logo { height: 35px; margin-bottom: 1.5rem; }
.footer-nav h4, .footer-contact h4 { margin-bottom: 1.5rem; color: var(--primary-orange); }
.footer-nav a, .footer-contact p { display: block; margin-bottom: 0.8rem; color: var(--text-muted); text-decoration: none; }
.footer-bottom { margin-top: 4rem; text-align: center; color: var(--text-muted); font-size: 0.85rem; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 2rem; }

/* Botão WhatsApp */
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 25px rgba(37,211,102,0.3); z-index: 1000; transition: transform 0.3s; }
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float img { width: 35px; }

@media (max-width: 768px) {
    .how-grid, .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .how-steps { text-align: left; }
    .footer-brand { display: flex; flex-direction: column; align-items: center; }
    .whatsapp-float { bottom: 20px; right: 20px; width: 50px; height: 50px; }
}