/* --- GERAL E VARIÁVEIS --- */
:root {
    --primary-blue: #233DFF; /* Cor principal da identidade */
    --light-blue: #3E82FC;
    --dark-gray: #1E1E1E;
    --accent-yellow: #FFC400; /* Cor de destaque da paleta */
    --white: #FFFFFF;
    --background-light: #F4F7FF;

    --font-primary: 'Sora', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--white);
    color: var(--dark-gray);
}

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

/* --- BOTÕES --- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, background-color 0.3s;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background-color: var(--accent-yellow);
    color: var(--dark-gray);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-blue);
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* --- HEADER E NAVEGAÇÃO --- */
.header {
    background-color: var(--primary-blue);
    padding: 15px 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
}

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

.logo img {
    height: 40px; /* Ajuste conforme o tamanho do seu logo */
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    padding-bottom: 5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-yellow);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* --- SEÇÃO HERO --- */
.hero-section {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

/* --- SEÇÃO QUEM SOMOS --- */
.about-section {
    padding: 80px 0;
    background-color: var(--background-light);
}
.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}
.about-text {
    flex: 2;
}
.about-text h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}
.about-text p {
    line-height: 1.6;
    margin-bottom: 15px;
}
.about-image {
    flex: 1;
    text-align: center;
}
.about-image img {
    max-width: 250px;
}

/* --- SEÇÃO SERVIÇOS --- */
.services-section {
    padding: 80px 0;
    text-align: center;
}
.services-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary-blue);
}
.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.card {
    background: var(--background-light);
    padding: 30px;
    border-radius: 12px;
    text-align: left;
    border-left: 5px solid var(--primary-blue);
}
.card-icon {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}
.card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* --- SEÇÃO PARA QUEM É --- */
.target-section {
    padding: 60px 0;
    background-color: var(--primary-blue);
    /* CORREÇÃO: Garante que todo texto nesta seção seja branco para ter contraste */
    color: var(--white);
}

.target-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
}
.target-section .section-subtitle {
    text-align: center;
    margin-bottom: 40px;
    opacity: 0.9;
}

.target-section ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.target-section li {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: 600;
}

/* --- SEÇÃO COMO FUNCIONA --- */
.how-it-works-section {
    padding: 80px 0;
    /* CORREÇÃO: Fundo escuro como na imagem de referência */
    background: var(--dark-gray); 
    text-align: center;
    /* CORREÇÃO: Garante que todo texto aqui seja branco */
    color: var(--white);
}
.how-it-works-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    /* CORREÇÃO: A cor do título também precisa ser branca */
    color: var(--white); 
}
.steps {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}
.step {
    flex: 1;
}
.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.step h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}
.step p {
    line-height: 1.5;
    opacity: 0.8; /* Leve opacidade para o texto descritivo */
}

/* --- SEÇÃO PARCEIRO --- */
.partner-section {
    padding: 60px 0;
    text-align: center;
    background: var(--dark-gray);
    color: var(--white);
}
.partner-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.partner-section p {
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.8;
}

/* --- SEÇÃO POR QUE ESCOLHER --- */
.why-us-section {
    padding: 80px 0;
}
.why-us-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-blue);
}
.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}
.feature-item {
    background: var(--background-light);
    padding: 15px 25px;
    border-radius: 30px;
    font-weight: 600;
    color: var(--primary-blue);
}

/* --- FOOTER / CONTATO --- */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 60px 0 20px;
    text-align: center;
}
.footer h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}
.footer p {
    opacity: 0.8;
    margin-bottom: 40px;
}
.contact-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}
.contact-card {
    background: #333;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: var(--white);
    transition: background-color 0.3s;
}
.contact-card:hover {
    background-color: var(--primary-blue);
}
.contact-icon img {
    height: 30px;
}
.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 768px) {
    .nav-links, .header .btn-primary {
        display: none; /* Simplificando para o exemplo. Idealmente, aqui entraria um menu hamburguer com JS */
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .about-content {
        flex-direction: column;
    }
    .steps {
        flex-direction: column;
        gap: 40px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
}