.hero {
    height: 410px;
    position: relative; 
    overflow: hidden;    
    display: flex;       
    align-items: center;
    justify-content: center;
}

.hero h1, .hero h2, .hero h3 { font-family: var(--font-1); }
.hero p { font-family: var(--font-2); font-weight: 600; }

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        rgba(255, 255, 255, 0.3), 
        rgba(255, 255, 255, 0.3)), 
        url('../assets/imagens/yasmine.png');
    background-size: cover;
    background-position: center 60%;
    opacity: 0.6;      
    z-index: -1;        
}

.hero .container {
    position: relative;
    z-index: 1;
    color: var(--color-azul-escuro);  
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center; 
    text-align: center;
}

.hero .container h1 {
    font-size: 74px;
    font-weight: bold;
    margin-bottom: 0; 
    line-height: 1.1;
}

.hero .container p {
    font-size: 24.2px;
    margin-top: 5px;
    line-height: 1.2rem;
}

@media(max-width: 768px) {
    .hero { padding: 30px 15px; }
}