/* Stile del contenitore principale (Sfondo sfumato) */
.popup-hero-section {
    background: linear-gradient(90deg, #186ba7 0%, #467f7e 50%, #7e873b 100%);
    color: #ffffff;
    padding: 80px 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}

/* Contenitore interno per limitare la larghezza */
.popup-hero-container {
    display: flex;
    align-items: stretch;
    max-width: 1200px;
    width: 100%;
    gap: 40px; /* Spazio tra le colonne e la linea */
}

/* Colonna sinistra (Titolo) */
.popup-hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px 0;
}

.popup-hero-left h1 {
    font-size: 5rem;
    line-height: 1.05;
    font-weight: bold;
    letter-spacing: -2px;
}

/* Linea divisoria verticale */
.popup-hero-divider {
    width: 1px;
    background-color: rgba(255, 255, 255, 0.4);
}

/* Colonna destra (Paragrafi) */
.popup-hero-right {
    flex: 1;
    font-size: 1.15rem;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px 0 30px 10px;
}

.popup-hero-right p {
    margin-bottom: 25px;
}

.popup-hero-right p:last-child {
    margin-bottom: 0;
}

.popup-hero-right .hero-cta {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 16px 24px;
    background-color: transparent;
    border: 2px solid #ffffff;
    border-radius: 6px;
    transition: all 0.4s;
    color: #ffffff;
}

.popup-hero-right .hero-cta:hover {
    background-color: #ffffff;
    color: #186ba7;
}

/* Design Responsive per dispositivi mobili */
@media (max-width: 900px) {
    .popup-hero-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .popup-hero-left {
        padding: 0;
    }

    .popup-hero-left h1 {
        font-size: 3.5rem;
    }

    /* Cambia la linea da verticale a orizzontale su mobile */
    .popup-hero-divider {
        width: 100%;
        height: 1px;
    }

    .popup-hero-right {
        padding: 0;
    }
}
