/* ========================================= */
/* 1. RESET E CONFIGURAÇÕES GERAIS */
/* ========================================= */
* {
    box-sizing: border-box;
    margin: 0; padding: 0;
    -webkit-tap-highlight-color: transparent;
}

:root {
    --primary-blue: #0062ff;
    --secondary-blue: #38bdf8;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --bg-main: #ffffff;
    --bg-secondary: #f4f7fa;
    --start-green: #10b981;
    --bia-pink: #ec4899;
    --mya-purple: #8b5cf6;
    
    --gradient-highlight: linear-gradient(135deg, #020617 0%, #0f172a 100%);
    --shadow-soft: 0 10px 30px -10px rgba(0,0,0,0.15); 
    --shadow-hover: 0 20px 40px -10px rgba(0, 98, 255, 0.2); 
    --border-light: rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth !important;
}

body {
    width: 100%; max-width: 100vw;
    overflow-x: hidden;
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-main);
}

img { max-width: 100%; height: auto; display: block; }

@keyframes float { 
    0% { transform: translateY(0px); } 
    50% { transform: translateY(-15px); } 
    100% { transform: translateY(0px); } 
}

.floating-img {
    animation: float 5s ease-in-out infinite;
}

/* ========================================= */
/* 2. NAVBAR (MENU) */
/* ========================================= */
.navbar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1rem 5%;
    background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(15px);
    position: sticky; top: 0; z-index: 9999;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

/* LOGO GRANDE */
.logo-img {
    height: 80px; 
    width: auto;
    display: block;
}

.nav-group { display: flex; align-items: center; gap: 25px; }

.nav-link { color: var(--text-muted); text-decoration: none; font-weight: 600; font-size: 0.95rem; transition: 0.3s; }
.nav-link:hover { color: var(--primary-blue); transform: translateY(-1px); }

.btn-nav { 
    color: var(--primary-blue); border: 2px solid var(--primary-blue); 
    padding: 0.6rem 1.5rem; text-decoration: none; border-radius: 50px; 
    font-weight: 700; transition: 0.3s; 
}
.btn-nav:hover { background: var(--primary-blue); color: white; box-shadow: 0 5px 15px rgba(0,98,255,0.3); }

/* ========================================= */
/* 3. HERO (TELA INICIAL) */
/* ========================================= */
.highlight-section { background: var(--gradient-highlight); color: white; position: relative; overflow: hidden; }

.highlight-section::before {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(0,98,255,0.1) 0%, rgba(0,0,0,0) 70%);
    z-index: 0; pointer-events: none;
}
.highlight-section h1, .highlight-section h2, .highlight-section p, .highlight-section span, .highlight-section i { color: white !important; position: relative; z-index: 1; }

.hero { display: flex; align-items: center; padding: 6rem 5% 8rem 5%; min-height: 85vh; }
.hero-content { flex: 1; padding-right: 4rem; }
.hero-content h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 1.5rem; letter-spacing: -1px; }

/* Botão mais para baixo */
.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 3.5rem; 
}

.highlight-text { color: #fff; font-weight: 900; text-shadow: 0 0 20px rgba(0,98,255,0.6); }

.hero-image { flex: 1; display: flex; justify-content: center; position: relative; z-index: 1; }
.hero-image img { max-width: 90%; border-radius: 20px; box-shadow: 0 30px 60px rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.1); }

.btn-primary { 
    background: white; color: var(--primary-blue); padding: 1.2rem 2.8rem; text-decoration: none; 
    font-weight: 800; border-radius: 12px; display: inline-block; 
    box-shadow: 0 15px 30px rgba(0,0,0,0.2); transition: all 0.3s ease;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }

/* ========================================= */
/* 4. CARDS DE PROBLEMAS */
/* ========================================= */
.pain-points { background: var(--bg-main); padding: 8rem 5%; text-align: center; }
.pain-points h2 { font-size: 3.2rem; font-weight: 900; color: var(--text-dark); margin-bottom: 5rem; line-height: 1.2; }

.cards-container { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; }

.card-problem { 
    background: white; border: 1px solid var(--border-light); border-radius: 24px; 
    width: 360px; max-width: 100%; overflow: hidden; 
    box-shadow: var(--shadow-soft); transition: all 0.4s ease;
    display: flex; flex-direction: column;
}

.card-problem:hover { 
    transform: translateY(-10px); 
    border-color: var(--primary-blue); 
    box-shadow: var(--shadow-hover);
}

.card-img-holder { overflow: hidden; height: 220px; }
.card-problem img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.card-problem:hover img { transform: scale(1.05); }

.card-text { padding: 2.5rem; text-align: left; }
.card-text h3 { color: var(--primary-blue); margin-top: 0; font-size: 1.5rem; margin-bottom: 15px; }
.card-text p { font-size: 1.1rem; color: var(--text-muted); line-height: 1.7; }

/* ========================================= */
/* 5. ECOSSISTEMA */
/* ========================================= */
.squad-section { background-color: var(--bg-secondary); padding: 8rem 5%; text-align: center; }
.ecosystem-title { color: var(--primary-blue) !important; font-size: 3rem; font-weight: 900; }
.ecosystem-subtitle { 
    font-size: 1.5rem; 
    font-weight: 500; 
    margin-bottom: 4rem; 
    max-width: 100%; 
    margin-left: auto; 
    margin-right: auto;
    text-align: center;
}

.ecosystem-wrapper { max-width: 1000px; margin: 0 auto; display: flex; flex-direction: column; gap: 30px; }

.eco-card-image {
    background: white; border-radius: 24px; border: 1px solid var(--border-light);
    box-shadow: var(--shadow-soft); overflow: hidden; padding: 12px;
}
.eco-card-image img { width: 100%; border-radius: 18px; display: block; }

.eco-card-text {
    background: white; border-radius: 24px; border: 1px solid var(--border-light);
    box-shadow: var(--shadow-soft); padding: 4rem; text-align: left;
    transition: 0.3s;
}
.eco-card-text:hover { box-shadow: var(--shadow-hover); }

.squad-lead { font-size: 1.5rem; font-weight: 800; color: var(--text-dark); margin-bottom: 2rem; text-align: center; }
.squad-list { list-style: none; }
.squad-list li { display: flex; gap: 15px; margin-bottom: 1.5rem; font-size: 1.2rem; color: var(--text-muted); align-items: flex-start; }
.squad-list i { color: var(--primary-blue); margin-top: 5px; flex-shrink: 0; font-size: 1.3rem; }
.squad-list strong { color: var(--primary-blue); font-weight: 700; }

/* ========================================= */
/* 6. PERSONAGENS */
/* ========================================= */
.thalles-section, .mya-section { background-color: var(--bg-secondary); padding: 8rem 5%; }
.bia-section { background-color: var(--bg-main); padding: 8rem 5%; }

.thalles-container, .bia-container, .mya-container { display: flex; align-items: center; justify-content: center; gap: 6rem; max-width: 1200px; margin: 0 auto; }

.thalles-info, .bia-info, .mya-info { flex: 1.2; text-align: left; }
.thalles-visual, .bia-visual, .mya-visual { flex: 1; display: flex; flex-direction: column; align-items: center; }

.thalles-info h2, .bia-info h2, .mya-info h2 { font-size: 3.5rem; margin-bottom: 0.5rem; line-height: 1; }
.thalles-info h3, .bia-info h3, .mya-info h3 { font-size: 1.6rem; color: var(--text-muted); margin-bottom: 1.5rem; font-weight: 400; }
.thalles-info p, .bia-info p, .mya-info p { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 2.5rem; line-height: 1.8; }

.thalles-features li, .bia-features li, .mya-features li { display: flex; gap: 20px; margin-bottom: 30px; text-align: left; align-items: flex-start; }
.thalles-features i, .bia-features i, .mya-features i { font-size: 1.6rem; padding: 18px; border-radius: 16px; width: 64px; height: 64px; display: flex; justify-content: center; align-items: center; flex-shrink: 0; transition: 0.3s; }

.thalles-features i { background: rgba(0, 98, 255, 0.1); color: var(--primary-blue); } 
.bia-features i { background: rgba(236, 72, 153, 0.1); color: var(--bia-pink); } 
.mya-features i { background: rgba(139, 92, 246, 0.1); color: var(--mya-purple); }

.thalles-features strong, .bia-features strong, .mya-features strong { display: block; color: var(--text-dark); font-size: 1.2rem; margin-bottom: 5px; font-weight: 700; }
.thalles-features span, .bia-features span, .mya-features span { color: var(--text-muted); font-size: 1.05rem; line-height: 1.5; }

.img-glow img, .img-glow-pink img, .img-glow-purple img { width: 400px; max-width: 100%; border-radius: 30px; border: 5px solid white; box-shadow: var(--shadow-soft); transition: 0.5s; }
.img-glow:hover img { box-shadow: 0 0 40px rgba(0,98,255,0.4); transform: scale(1.02); }
.img-glow-pink:hover img { box-shadow: 0 0 40px rgba(236, 72, 153, 0.4); transform: scale(1.02); }
.img-glow-purple:hover img { box-shadow: 0 0 40px rgba(139, 92, 246, 0.4); transform: scale(1.02); }

.thalles-badge, .bia-badge, .mya-badge { margin-top: -30px; background: white; padding: 12px 30px; border-radius: 50px; font-weight: 800; border: 3px solid; z-index: 2; position: relative; font-size: 1.1rem; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.thalles-badge { color: var(--primary-blue); border-color: var(--primary-blue); } 
.bia-badge { color: var(--bia-pink); border-color: var(--bia-pink); } 
.mya-badge { color: var(--mya-purple); border-color: var(--mya-purple); }

/* ========================================= */
/* 7. PLANOS E COMPARAÇÃO */
/* ========================================= */
.plans-section { background-color: var(--bg-main); padding: 8rem 5%; text-align: center; }
.plans-grid { display: flex; justify-content: center; gap: 4rem; flex-wrap: wrap; margin-bottom: 6rem; }
.plan-wrapper { display: flex; flex-direction: column; align-items: center; width: 450px; max-width: 100%; gap: 30px; }

.plan-card { 
    background: white; border-radius: 24px; width: 100%; overflow: hidden; 
    box-shadow: var(--shadow-soft); border: none; transition: transform 0.4s ease; 
}
.plan-card:hover { transform: translateY(-15px); box-shadow: 0 25px 50px rgba(0,0,0,0.15); }
.plan-card img { width: 100%; height: auto; display: block; }

.btn-plan { display: block; padding: 20px 0; width: 100%; border-radius: 50px; font-weight: 800; text-decoration: none; text-align: center; font-size: 1.3rem; transition: 0.3s; }
.btn-start { background-color: var(--start-green); color: white; box-shadow: 0 15px 30px rgba(16, 185, 129, 0.3); }
.btn-start:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(16, 185, 129, 0.4); }
.btn-full-plan { background-color: var(--primary-blue); color: white; box-shadow: 0 15px 30px rgba(0, 98, 255, 0.3); }
.btn-full-plan:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(0, 98, 255, 0.4); }

.comparison-container { max-width: 1100px; margin: 0 auto; background: white; padding: 30px; border-radius: 24px; border: 1px solid var(--border-light); box-shadow: var(--shadow-soft); }
.comparison-container img { width: 100%; height: auto; border-radius: 12px; }

/* ========================================= */
/* 8. SOLUÇÃO E CTA */
/* ========================================= */
.solution { display: flex; align-items: center; padding: 10rem 5%; }
.solution-text { flex: 1; padding-right: 5rem; }

/* HIERARQUIA DE TEXTO */
.solution-text h2 {
    font-size: 3.5rem; 
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 900;
}
.solution-text p {
    font-size: 1.2rem; 
    margin-bottom: 2rem;
}

/* LISTA REDUZIDA */
.check-list li { 
    font-size: 1rem; 
    color: white; 
    margin-bottom: 1rem; 
    display: flex; align-items: center; gap: 15px; 
    background: rgba(255,255,255,0.1); 
    padding: 12px 20px; 
    border-radius: 16px; 
    border: 1px solid rgba(255, 255, 255, 0.2); 
    backdrop-filter: blur(5px); 
}

.solution-img { flex: 1; text-align: right; }
.solution-img img { max-width: 95%; border-radius: 24px; border: 4px solid rgba(255,255,255,0.2); box-shadow: 0 30px 60px rgba(0,0,0,0.4); }

.cta-section { background: var(--bg-secondary); padding: 8rem 5%; }
.cta-container { display: flex; background: white; border-radius: 24px; overflow: hidden; border: 1px solid var(--border-light); max-width: 1200px; margin: 0 auto; box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.cta-image { 
    flex: 1; 
    min-height: 0; 
    display: flex; 
} 
.cta-image img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transform: scale(1.02); 
}

/* --- CORTE DO ESPAÇO VAZIO (PADDING ZERO VERTICAL) --- */
.form-box { 
    flex: 1; 
    padding: 0 2.5rem; /* ZERO em cima/baixo, 2.5rem nas laterais */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centraliza o conteúdo se a imagem for maior */
}

/* Diminui margens internas */
.form-box h3 { margin-bottom: 0.5rem; }
.form-box > p { margin-bottom: 1rem; }

.input-group label { display: block; margin-bottom: 10px; font-weight: 700; color: var(--text-dark); }
.input-group input { width: 100%; padding: 20px; border: 2px solid var(--border-light); border-radius: 12px; background: var(--bg-secondary); font-size: 1rem; outline: none; transition: 0.3s; }
.input-group input:focus { border-color: var(--primary-blue); background: white; }

.btn-full { width: 100%; padding: 22px; background: var(--primary-blue); color: white; border: none; border-radius: 12px; font-weight: 800; cursor: pointer; margin-top: 15px; font-size: 1.2rem; transition: 0.3s; }
.btn-full:hover { background: #0050d0; box-shadow: 0 10px 20px rgba(0,98,255,0.2); }

footer { text-align: center; padding: 5rem 2rem; background: var(--bg-main); border-top: 1px solid var(--border-light); color: var(--text-muted); font-size: 1.1rem; }

/* Grid Resultados */
.awards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; max-width: 1200px; margin: 0 auto; }
.media-card { background: #f8fafc; border-radius: 20px; overflow: hidden; box-shadow: 0 10px 30px -10px rgba(0,0,0,0.1); border: 1px solid rgba(0,0,0,0.1); padding: 10px; height: 380px; display: flex; align-items: center; justify-content: center; transition: 0.3s; }
.media-card:hover { transform: translateY(-7px); border-color: var(--primary-blue); }
.media-card img { max-width: 100%; max-height: 100%; object-fit: contain; border-radius: 12px; }
.video-wrapper { width: 100%; height: 100%; border-radius: 12px; overflow: hidden; }
.video-wrapper iframe { width: 100%; height: 100%; border: none; }

/* ========================================= */
/* 9. RESPONSIVIDADE (MOBILE / CELULAR) */
/* ========================================= */
@media (max-width: 768px) {
    /* Menu Carrossel (Arrastar) */
    .navbar { flex-direction: column; align-items: flex-start; padding: 15px 0; gap: 10px; }
    
    /* LOGO GRANDE NO CELULAR */
    .logo-img { margin-left: 20px; margin-bottom: 5px; height: 60px; } 
    
    .nav-group {
        display: flex; width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch;
        padding: 0 20px 10px 20px; gap: 10px; scrollbar-width: none;
    }
    .nav-group::-webkit-scrollbar { display: none; }
    .nav-link { white-space: nowrap; background-color: #f1f5f9; padding: 8px 16px; border-radius: 50px; font-size: 0.9rem; }
    .btn-nav { white-space: nowrap; padding: 8px 20px; flex-shrink: 0; }

    /* Hero */
    .hero { flex-direction: column; padding: 3rem 20px; text-align: center; min-height: auto; }
    .hero-content { padding: 0; margin-bottom: 40px; }
    .hero-content h1 { font-size: 2.2rem; }
    .hero-image { width: 100%; margin: 0; }
    .hero-image img { max-width: 95%; }

    /* Pain Points */
    .pain-points h2 { font-size: 2.2rem; margin-bottom: 3rem; }

    /* Espaçamentos */
    .pain-points, .squad-section, .plans-section, .solution, .cta-section, .thalles-section, .bia-section, .mya-section {
        padding: 3rem 20px;
    }

    /* Colunas */
    .cards-container, .plans-grid, .awards-grid, .thalles-container, .bia-container, .mya-container, .solution, .cta-container {
        flex-direction: column; gap: 2.5rem;
    }
    .awards-grid { grid-template-columns: 1fr; }

    /* Imagens no Topo */
    .thalles-visual, .bia-visual, .mya-visual, .solution-img { order: -1; width: 100%; margin-bottom: 10px; }

    /* Travas */
    .solution-text { text-align: center; padding: 0; }
    .solution-text h2 { font-size: 2.5rem; } 
    
    .cta-image { display: none; }

    /* MUDANÇA NO MOBILE TAMBÉM - Padding apenas lateral */
    .form-box { padding: 1.5rem 1.5rem; } 
    
    .plan-wrapper, .card-problem, .squad-text-box, .ecosystem-wrapper { width: 100% !important; }
    .eco-card-text { padding: 1.5rem; }
    .ecosystem-title { font-size: 2rem !important; }
    
    /* Fontes Mobile */
    .thalles-info h2, .bia-info h2, .mya-info h2 { font-size: 2.5rem; }
}