/* Specialized Hero Section Layout */
.hero .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero .hero-text-container {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero .hero-subtitle {
    margin-bottom: 10px;
}

@media (max-width: 576px) {
    .hero .hero-text-container {
        margin-bottom: 10px;
    }

    .hero .hero-subtitle {
        font-size: 0.5rem;
        line-height: 1.1;    /* mais compacto */
        margin-bottom: 8px;
    }
}

