:root {
    --bg-base: #F8F9FA; /* Fundo principal super clean */
    --bg-surface: #FFFFFF; /* Fundo de cartões */
    --text-dark: #0A192F; /* Azul noite profundo para títulos */
    --text-body: #4A5568; /* Cinza chumbo para leitura */
    --accent-primary: #0044CC; /* Azul corporativo vibrante */
    --accent-gradient: linear-gradient(135deg, #001133 0%, #0044CC 100%);
    --shadow-soft: 0 10px 40px rgba(10, 25, 47, 0.06);
    --border-light: rgba(10, 25, 47, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-base);
    color: var(--text-body);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, .counter, .badge, .btn-primary, .btn-massive {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
}

.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}

/* Navbar Glass Light */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo img { height: 55px; }

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
    list-style: none;
}

.nav-links a {
    color: var(--text-body);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover { color: var(--accent-primary); }

.btn-nav {
    background: var(--bg-base);
    padding: 10px 24px;
    border-radius: 100px;
    border: 1px solid var(--border-light);
    color: var(--text-dark) !important;
    transition: all 0.3s ease;
}
.btn-nav:hover { background: var(--text-dark); color: var(--bg-surface) !important; }

/* Hero Section */
.hero {
    position: relative;
    padding: 200px 0 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-glow-orb {
    position: absolute;
    top: -10%; left: 50%;
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(0, 68, 204, 0.08) 0%, rgba(248, 249, 250, 0) 70%);
    transform: translateX(-50%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.badge {
    display: inline-block;
    padding: 8px 18px;
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    color: var(--accent-primary);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.hero-content h1 {
    font-size: 4.8rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 25px;
}

.text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions { display: flex; gap: 20px; justify-content: center; align-items: center; }

.btn-primary, .btn-secondary {
    padding: 18px 40px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--text-dark);
    color: var(--bg-surface);
    box-shadow: 0 10px 30px rgba(10, 25, 47, 0.15);
}
.btn-primary:hover { transform: translateY(-3px); background: var(--accent-primary); box-shadow: 0 15px 40px rgba(0, 68, 204, 0.3); }
.btn-primary i { margin-left: 8px; transition: transform 0.3s; }
.btn-primary:hover i { transform: translateX(5px); }

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border: 1px solid rgba(10, 25, 47, 0.2);
}
.btn-secondary:hover { background: rgba(10, 25, 47, 0.05); }

/* Parceiros Marquee */
.partners-band {
    padding: 60px 0;
    background: var(--bg-surface);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.partners-title { text-align: center; font-size: 0.9rem; font-weight: 600; color: #A0AEC0; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 30px; }

.slider { overflow: hidden; position: relative; width: 100%; }
.slider::before, .slider::after { content: ""; position: absolute; top: 0; width: 150px; height: 100%; z-index: 2; }
.slider::before { left: 0; background: linear-gradient(to right, var(--bg-surface), transparent); }
.slider::after { right: 0; background: linear-gradient(to left, var(--bg-surface), transparent); }

.slide-track { display: flex; width: calc(200px * 12); animation: scroll 35s linear infinite; }

.slide { width: 200px; display: flex; align-items: center; justify-content: center; }
.slide img { max-width: 130px; max-height: 45px; filter: grayscale(100%) opacity(0.5); transition: all 0.4s; mix-blend-mode: multiply; }
.slide img:hover { filter: grayscale(0%) opacity(1); transform: scale(1.05); }

@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-200px * 6)); } }

/* Números */
.stats-section { padding: 100px 0; background: var(--bg-base); }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: center; }
.stat-box h2, .stat-box .plus { font-size: 4.5rem; font-weight: 800; color: var(--accent-primary); display: inline-block; line-height: 1; margin-bottom: 10px; }
.stat-box p { color: var(--text-dark); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; font-size: 0.95rem;}

/* Bento Grid Services Light (Com Hover Reveal) */
.bento-section { padding: 60px 0 120px; }
.section-header { text-align: center; margin-bottom: 80px; }
.section-header h2 { font-size: 3.5rem; letter-spacing: -1px; line-height: 1.1; }

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 24px;
}

.bento-item {
    background-color: var(--bg-surface);
    border-radius: 24px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
}

.bento-item:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(10, 25, 47, 0.12); }

.bento-item.large { grid-column: span 2; grid-row: span 2; }
.bento-item.wide { grid-column: span 2; }

/* Overlay dinâmico: mais branco em baixo */
.bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(255,255,255,1) 15%, rgba(255,255,255,0) 60%);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: background 0.4s ease;
}

.bento-item:hover .bento-overlay {
    background: linear-gradient(to top, rgba(255,255,255,1) 40%, rgba(255,255,255,0.6) 80%, transparent 100%);
}

/* Animação do Título */
.bento-item h3 { 
    font-size: 1.6rem; 
    font-weight: 700; 
    color: var(--text-dark); 
    margin: 0; 
    transform: translateY(20px); 
    transition: all 0.4s ease;
}

.bento-item.large h3 { font-size: 2.5rem; }

.bento-item:hover h3 {
    transform: translateY(0);
    margin-bottom: 8px; 
}

/* Animação do Texto (Surgimento suave) */
.service-desc { 
    color: var(--text-body); 
    font-size: 1.05rem; 
    line-height: 1.4; 
    font-weight: 500;
    opacity: 0;
    max-height: 0;
    transform: translateY(15px);
    transition: all 0.4s ease;
    overflow: hidden;
}

.bento-item:hover .service-desc {
    opacity: 1;
    max-height: 150px; 
    transform: translateY(0);
}

/* Super CTA Boxed */
.super-cta { padding: 80px 0; background: var(--bg-surface); border-top: 1px solid var(--border-light); }

.cta-box {
    background: var(--text-dark);
    border-radius: 30px;
    padding: 80px 40px;
    text-align: center;
    color: var(--bg-surface);
    box-shadow: 0 30px 60px rgba(10, 25, 47, 0.2);
    margin-bottom: 60px;
    background-image: radial-gradient(circle at top right, rgba(0, 68, 204, 0.4) 0%, transparent 60%);
}

.cta-box h2 { color: var(--bg-surface); font-size: 3.5rem; letter-spacing: -1.5px; margin-bottom: 20px; }
.cta-box p { font-size: 1.25rem; color: #A0AEC0; margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; }

.cta-actions { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }

.btn-massive { background: #25D366; color: white; padding: 20px 50px; font-size: 1.2rem; border-radius: 100px; text-decoration: none; transition: transform 0.3s; box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3); }
.btn-massive:hover { transform: translateY(-5px); background: #20BD5A; color: white; }

.btn-email { background: rgba(255,255,255,0.1); color: white; border: 1px solid rgba(255,255,255,0.2); padding: 20px 40px; border-radius: 100px; text-decoration: none; font-size: 1.1rem; font-weight: 600; transition: background 0.3s; }
.btn-email:hover { background: rgba(255,255,255,0.2); }

.footer-bottom { text-align: center; }
.footer-logo { height: 40px; margin-bottom: 20px; filter: grayscale(100%); opacity: 0.6; }
.legal { font-size: 0.85rem; color: #A0AEC0; }

/* Animações Scroll */
.reveal { opacity: 0; transform: translateY(40px); transition: all 1s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* Float WhatsApp */
.float-whatsapp {
    position: fixed; width: 65px; height: 65px; bottom: 30px; right: 30px;
    background-color: #25D366; color: #FFF; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 35px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4); z-index: 100; transition: transform 0.3s;
}
.float-whatsapp:hover { transform: scale(1.1) rotate(-5deg); }

/* Responsivo */
@media (max-width: 1024px) {
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .bento-item.large, .bento-item.wide { grid-column: span 2; }
    .hero-content h1 { font-size: 4rem; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero { padding: 150px 0 80px; }
    .hero-content h1 { font-size: 2.8rem; }
    .stats-grid { grid-template-columns: 1fr; gap: 60px; }
    .bento-grid { grid-template-columns: 1fr; }
    .bento-item.large, .bento-item.wide { grid-column: span 1; }
    .cta-box { padding: 50px 20px; }
    .cta-box h2 { font-size: 2.5rem; }
}