.hero-block {
    position: relative;
    min-height: 37.5rem; /* Altezza minima di sicurezza per schermi grandi */
    height: 75vh;        /* Prende il 75% dell'altezza dello schermo */
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-badge {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 0.8125rem;
    font-weight: 700;
    text-uppercase: uppercase;
    letter-spacing: 0.0625rem;
    padding: var(--space-sm) var(--space-md);
    border-radius: 0.25rem;
    margin-bottom: var(--space-md);
}

.hero-title {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: var(--space-md);
}

@media (min-width: 48rem) {
    .hero-title {
        font-size: 4.5rem; /* Diventa maestoso sui monitor desktop */
    }
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-xl);
    max-width: 43.75rem;
}