/* Reset Geral */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background-color: #ffffff; 
    color: #1e293b; 
    line-height: 1.6;
}

:root {
    --bg-light: #f8fafc; 
    --primary-mint: #00ffaa; /* Verde menta destacado */
    --primary-hover: #00dd90;
    --navy-blue: #0f172a; 
    --text-muted: #64748b;
    --white: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar Flexbox */
header {
    background-color: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-placeholder img {
    height: 45px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-links a {
    color: #334155;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-hover);
}

.btn-nav {
    background-color: var(--primary-mint);
    color: var(--navy-blue) !important;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 700 !important;
}

/* Hero Section */
.hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    border-bottom: 1px solid #e2e8f0;
}

.hero-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.hero-form-container {
    width: 420px;
    flex-shrink: 0;
}

.badge {
    background-color: rgba(0, 255, 170, 0.15);
    color: #00875a;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}

h1 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--navy-blue);
}

h1 span {
    color: #00b377;
}

.hero-text p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.hero-stats {
    display: flex;
    gap: 30px;
    border-top: 1px solid #e2e8f0;
    padding-top: 20px;
}

.stat-item h3 {
    font-size: 28px;
    color: var(--navy-blue);
    font-weight: 800;
}

.stat-item p {
    font-size: 13px;
    color: var(--text-muted);
}

/* Formulário */
.lead-form {
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.lead-form h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--navy-blue);
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 12px;
    color: #475569;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 12px;
    background-color: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    color: #1e293b;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background-color: var(--primary-mint);
    color: var(--navy-blue);
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: var(--primary-hover);
}

/* Conveniência */
.convenience-bar {
    background-color: var(--bg-light);
    padding: 20px 0;
    border-bottom: 1px solid #e2e8f0;
}

.bar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.bar-item {
    flex: 1;
    text-align: center;
    border-right: 1px solid #cbd5e1;
}

.bar-item:last-child {
    border-right: none;
}

.bar-item a {
    color: #334155;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.bar-item i {
    margin-right: 8px;
    color: #00b377;
}

/* Seção de Planos (Fundo Verde Completo) */
.solutions {
    padding: 80px 0;
    background-color: #00b377; 
    color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 800;
}

.solutions .section-header h2 {
    color: var(--white);
}

.solutions .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

.cards-flex {
    display: flex;
    justify-content: space-between;
    gap: 25px;
}

.card-cell {
    flex: 1;
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden; 
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    color: var(--navy-blue);
}

.card-image-box {
    width: 100%;
    height: 180px;
}

.card-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

.card-content-inner {
    padding: 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-cell h4 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
}

.card-sub {
    font-weight: 700;
    color: #00b377;
    font-size: 14px;
    margin-bottom: 15px;
}

.card-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 25px;
    flex-grow: 1;
}

.btn-card {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: var(--primary-mint);
    color: var(--navy-blue);
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    transition: background-color 0.3s;
}

.btn-card:hover {
    background-color: var(--primary-hover);
}

/* Seção Sobre Nós Clean */
.about-section {
    padding: 80px 0;
    background-color: var(--white);
    border-bottom: 1px solid #e2e8f0;
}

.about-grid {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    font-size: 36px;
    color: var(--navy-blue);
    margin-bottom: 20px;
    font-weight: 800;
}

.about-content p {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 40px;
}

/* Grid de Missão, Visão e Valores */
.mvv-grid {
    display: flex;
    justify-content: space-between;
    gap: 25px;
}

.mvv-card {
    flex: 1;
    background-color: var(--bg-light);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 30px 20px;
}

.mvv-icon-box {
    width: 50px;
    height: 50px;
    line-height: 50px;
    background-color: rgba(0, 255, 170, 0.15);
    color: #00875a;
    border-radius: 50%;
    display: inline-block;
    font-size: 20px;
    margin-bottom: 15px;
}

.mvv-card h3 {
    font-size: 18px;
    color: var(--navy-blue);
    margin-bottom: 10px;
    font-weight: 700;
}

.mvv-card p {
    font-size: 13px;
    color: var(--text-muted);
}

/* Como Trabalhamos */
.features {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.features-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.feature-box {
    flex: 1;
    padding: 20px;
    text-align: center;
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    line-height: 60px;
    background-color: #ffffff;
    color: #00b377;
    border-radius: 50%;
    display: inline-block;
    font-size: 24px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.feature-box h3 {
    font-size: 20px;
    color: var(--navy-blue);
}

.feature-box p {
    font-size: 14px;
    color: var(--text-muted);
}

/* Footer Flex */
footer {
    background-color: var(--navy-blue);
    padding: 40px 0;
    font-size: 13px;
    color: #94a3b8;
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo img {
    filter: brightness(0) invert(1); 
    height: 35px;
}

.footer-cell.right {
    text-align: right;
}

/* WhatsApp Flutuante Redondo */
.whatsapp-floating {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50%;
    display: block;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    animation: pulse-wa 2s infinite;
}

.whatsapp-floating-inner {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.whatsapp-icon-cell {
    font-size: 30px;
}

@keyframes pulse-wa {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Responsividade Geral Absoluta */
@media (max-width: 992px) {
    .hero-grid {
        flex-direction: column;
        text-align: center;
    }
    .hero-text {
        padding-right: 0;
        margin-bottom: 40px;
    }
    .hero-stats {
        justify-content: center;
    }
    .hero-form-container {
        width: 100%;
        max-width: 450px;
    }
}

@media (max-width: 768px) {
    .header-flex {
        flex-direction: column;
        gap: 15px;
    }
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    .bar-flex, .cards-flex, .mvv-grid, .features-grid, .footer-flex {
        flex-direction: column !important;
        text-align: center !important;
        gap: 25px;
    }
    .bar-item {
        width: 100%;
        border-right: none !important;
        border-bottom: 1px solid #cbd5e1;
        padding-bottom: 15px;
    }
    .bar-item:last-child {
        border-bottom: none;
    }
    .card-cell, .mvv-card, .feature-box, .footer-cell {
        width: 100% !important;
    }
    .footer-cell.right {
        text-align: center;
    }
    h1 {
        font-size: 32px;
    }
    .logo-placeholder img {
        height: 32px;
        transform: translateY(4px); /* Mantém o logo no eixo certo no mobile */
    }
    .whatsapp-floating {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
}