/* --- RESET E VARIÁVEIS --- */
:root {
    --primary: #135bec;
    --primary-hover: #0e45b5;
    --bg-light: #f6f6f8;
    --bg-dark: #101622;
    --text-main: #1e293b;
    --text-light: #64748b;
    --white: #ffffff;
    --border: #e2e8f0;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
}

a { text-decoration: none; transition: 0.3s; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* --- UTILITÁRIOS --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section { padding: 80px 0; }
.bg-light { background-color: var(--bg-light); }

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    color: var(--white);
    padding: 12px 32px;
    border-radius: 0.5rem; /* 8px */
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(19, 91, 236, 0.3);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 12px 32px;
    border-radius: 0.5rem;
    font-weight: 700;
    cursor: pointer;
}

.btn-outline:hover {
    background-color: rgba(19, 91, 236, 0.05);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 32px;
    border-radius: 0.5rem;
    font-weight: 700;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* --- HEADER --- */
.header {
    background-color: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary);
}

.logo-icon { font-size: 24px; }
.logo h2 { font-size: 1.125rem; font-weight: 700; letter-spacing: -0.025em; }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu a {
    font-size: 0.875rem;
    font-weight: 500;
    color: #475569; /* Slate-600 */
}

.nav-menu a:hover, .nav-menu a.active { color: var(--primary); }

.btn-login {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 0.5rem;
    font-weight: 700;
    cursor: pointer;
    font-size: 0.875rem;
}

.mobile-toggle { display: none; font-size: 24px; cursor: pointer; }

/* --- HERO --- */
.hero-section {
    padding: 60px 0;
    background-color: var(--white);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text { display: flex; flex-direction: column; gap: 24px; }

.badge {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
}

.hero-text h1 {
    font-size: 3rem; /* 48px */
    font-weight: 900;
    line-height: 1.1;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.hero-text p {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image img {
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
}

/* --- STATS --- */
.stats-section {
    background-color: var(--primary);
    padding: 48px 0;
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-number { font-size: 2.5rem; font-weight: 900; display: block; }
.stat-label { font-size: 0.875rem; font-weight: 500; opacity: 0.8; }

/* --- SECTIONS GERAL --- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 900;
    margin-bottom: 16px;
    color: #0f172a;
}

.divider {
    width: 80px;
    height: 6px;
    background-color: var(--primary);
    border-radius: 999px;
    margin: 0 auto 24px auto;
}
.divider.left { margin: 0 0 24px 0; }

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

/* --- CARDS SERVICES --- */
.card-service {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 32px;
    border-radius: 12px;
    transition: 0.3s;
}

.card-service:hover {
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.card-icon {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.card-service h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 8px; }
.card-service p { font-size: 0.875rem; color: var(--text-light); }

/* --- ABOUT --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    border-radius: 16px;
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 1/1;
}

.about-content h2 { font-size: 2.25rem; font-weight: 900; margin-bottom: 16px; }
.about-content p { margin-bottom: 16px; color: var(--text-light); }

.check-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: #1e293b;
}

.check-item i { color: var(--primary); }

/* --- MISSION VISION VALUES --- */
.card-mvv {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border);
    text-align: center;
    transition: 0.3s;
}

.card-mvv:hover { border-color: var(--primary); }

.circle-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(19, 91, 236, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    color: var(--primary);
    font-size: 1.5rem;
    transition: 0.3s;
}

.card-mvv:hover .circle-icon {
    background-color: var(--primary);
    color: var(--white);
}

/* --- CTA --- */
.cta-section {
    padding: 80px 0;
}

.cta-content {
    background-color: #0f172a; /* Dark Slate */
    border-radius: 24px;
    padding: 64px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Efeito de brilho no fundo */
.cta-content::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 256px;
    height: 256px;
    background-color: rgba(19, 91, 236, 0.2);
    border-radius: 50%;
    filter: blur(64px);
    z-index: 1;
}

.cta-text { position: relative; z-index: 2; max-width: 60%; }
.cta-text h2 { font-size: 3rem; font-weight: 900; color: var(--white); margin-bottom: 16px; }
.cta-text p { font-size: 1.125rem; color: #94a3b8; margin-bottom: 32px; }

.cta-icon {
    font-size: 7.5rem; /* 120px */
    color: rgba(19, 91, 236, 0.3);
    transform: rotate(12deg);
    position: relative;
    z-index: 2;
}

/* --- FOOTER --- */
.footer {
    background-color: #f8fafc;
    border-top: 1px solid var(--border);
    padding: 64px 0 24px;
    color: #64748b;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

.footer-col h4 {
    color: #0f172a;
    font-weight: 700;
    margin-bottom: 24px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.footer-brand i { color: var(--primary); }
.footer-col p { font-size: 0.875rem; margin-bottom: 8px; }
.cnpj { font-size: 0.75rem; margin-top: 16px; }

.footer-col nav { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 0.875rem; }
.footer-col a:hover { color: var(--primary); }

.contact-list div { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; font-size: 0.875rem; }
.contact-list i { color: var(--primary); }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
}

.social-links { display: flex; gap: 24px; }
.social-links a:hover { color: var(--primary); }

/* --- RESPONSIVIDADE --- */
@media (max-width: 1024px) {
    .hero-text h1 { font-size: 2.5rem; }
    .cta-content { flex-direction: column; text-align: center; padding: 40px; }
    .cta-text { max-width: 100%; margin-bottom: 40px; }
    .cta-icon { transform: rotate(0); font-size: 5rem; }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 20px;
        box-shadow: var(--shadow);
        border-bottom: 1px solid var(--border);
    }
    .nav-menu.active { display: flex; }
    .mobile-toggle { display: block; }

    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-buttons { justify-content: center; }
    .hero-text p { margin-left: auto; margin-right: auto; }
    
    .stats-grid { grid-template-columns: 1fr 1fr; }
    
    .about-grid { grid-template-columns: 1fr; }
    .about-image-wrapper { order: -1; } /* Imagem acima no mobile */

    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .hero-text h1 { font-size: 2rem; }
    .stats-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 16px; }
}
