/* --- Seção Hero --- */
.hero-section {
    position: relative;
    height: 100vh; /* Altura total da viewport no desktop */
    /* Caminho da imagem: Verifique ABSOLUTAMENTE este caminho */
    background-image: url('../imagens/index/header.jpg'); 
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover; /* Garante que a imagem cubra toda a seção */
    
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white); 
    padding: 0 20px; 
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Garante que o overlay tenha uma transparência para ver a imagem */
    background-color: rgba(0, 0, 0, 0.6); 
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2; 
    max-width: 800px;
}

.hero-content h1 {
    font-size: 4.5rem; 
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--white); 
    font-weight: 700;
}

.hero-content p {
    font-size: 1.4rem; 
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
    color: var(--white); 
}

/* Resto do CSS do style.css permanece o mesmo */

/* --- Seção Ecossistema --- */
.ecosystem-section {
    background-color: var(--white);
    text-align: center;
}

.ecosystem-section h2 {
    margin-bottom: 20px;
}

.ecosystem-section .section-description {
    max-width: 700px;
    margin: 0 auto 50px auto;
    font-size: 1.1rem;
    color: var(--text-medium);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.solution-card {
    background-color: var(--light-gray);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.solution-icon {
    font-size: 3.5rem;
    color: var(--highlight-gold);
    margin-bottom: 25px;
}

.solution-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.solution-card p {
    font-size: 1rem;
    color: var(--text-medium);
}

/* --- Seção Impacto --- */
.impact-section {
    background: linear-gradient(to right, var(--primary-dark), #333333); 
    color: var(--white);
    text-align: center;
    padding: 100px 0;
}

.impact-section h2 {
    color: var(--white);
    margin-bottom: 50px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-item i {
    font-size: 3.5rem;
    color: var(--highlight-gold);
    margin-bottom: 20px;
}

.stat-item strong {
    display: block;
    font-size: 3rem; 
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
}

.stat-item span {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}

/* --- Seção Prova Social --- */
.social-proof-section {
    background-color: var(--light-gray);
    padding: 100px 0;
    text-align: center;
}

.social-proof-section h2 {
    margin-bottom: 50px;
}

.testimonial {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.testimonial blockquote {
    font-size: 1.5rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 25px;
    position: relative;
}

.testimonial blockquote::before {
    content: "“";
    font-family: serif;
    font-size: 4rem;
    color: var(--highlight-gold);
    position: absolute;
    left: -20px;
    top: -20px;
    opacity: 0.2;
}

.testimonial cite {
    display: block;
    font-style: normal;
    font-size: 1.1rem;
    color: var(--text-medium);
    font-weight: 600;
}

/* --- Seção CTA Final --- */
.final-cta-section {
    background: linear-gradient(to right, #333333, var(--primary-dark)); 
    color: var(--white);
    text-align: center;
    padding: 80px 0;
}

.final-cta-section h2 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 3rem;
}

.final-cta-section p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 40px auto;
    opacity: 0.9;
}

/* --- Responsividade Específica da Index.html --- */
@media (max-width: 992px) {
    .hero-section {
        height: auto; 
        min-height: 80vh; 
        padding-top: 150px; 
        padding-bottom: 80px; 
        background-position: center bottom;
    }

    .hero-content h1 {
        font-size: 2.8rem; 
        margin-bottom: 20px;
    }

    .hero-content p {
        font-size: 1.1rem; 
        margin-bottom: 30px;
    }

    .ecosystem-section .section-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    .solution-card {
        padding: 30px;
    }
    .solution-icon {
        font-size: 3rem;
    }
    .solution-card h3 {
        font-size: 1.4rem;
    }
    .stat-item strong {
        font-size: 2.5rem;
    }
    .stat-item span {
        font-size: 1rem;
    }
    .testimonial blockquote {
        font-size: 1.2rem;
    }
    .testimonial cite {
        font-size: 1rem;
    }
    .final-cta-section h2 {
        font-size: 2.5rem;
    }
    .final-cta-section p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 120px; 
        padding-bottom: 60px;
        min-height: 70vh; 
    }
    .hero-content h1 {
        font-size: 2.2rem; 
    }
    .hero-content p {
        font-size: 0.95rem; 
    }
}