
.hero-section {
    position: relative;
    height: 60vh; 
    display: flex;
    align-items: center;
    justify-content: flex-start; 
    color: white;
    text-align: left; 
    overflow: hidden;
    border-bottom: 5px solid var(--primary-color);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://firebasestorage.googleapis.com/v0/b/feira-ajudaai-81958853-50516.firebasestorage.app/o/WhatsApp%20Image%202026-05-24%20at%204.10.59%20PM.jpeg?alt=media&token=2ae14a6c-054f-4ba4-a511-713ebb8a4381');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1; 
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); 
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
    padding-left: 5vw; 
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3rem; 
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.hero-content p {
    font-size: 1.2rem; 
    margin-bottom: 2rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
}

.map-section {
    background-color: var(--light-bg);
    padding: 4rem 1.5rem;
    text-align: center; 
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 16px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

/* === SEÇÃO COMO FUNCIONA (Estilo "sobre.html") === */

.how-it-works-section {
    padding: 4rem 1.5rem;
    text-align: center;
    background-color: var(--light-bg);
}

.steps-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 3rem auto 0 auto; /* Espaçamento superior */
}

/* Não é mais um "cartão", e sim um "passo" */
.step-card {
    flex-basis: 300px;
    flex-grow: 1;
    padding: 1rem;
    text-align: center;
}

.step-card .icon {
    font-size: 2rem;
    font-weight: 700; /* Número mais forte */
    color: var(--white);
    background-color: var(--primary-green);
    width: 60px;
    height: 60px;
    line-height: 52px; /* Ajuste para centralizar com a borda */
    border-radius: 50%;
    margin: 0 auto 1.5rem auto;
    border: 4px solid var(--white); /* Borda branca */
    box-shadow: 0 5px 15px rgba(46, 148, 163, 0.4); /* Sombra na cor primária */
}

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-green); /* Título na cor primária */
    font-weight: 700;
}

.step-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}


@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero-content p {
        font-size: 1.1rem;
    }
    .map-container {
        padding: 1.5rem;
    }
}