.hero-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('/images/hero/1731059055008_univisionmyresorts4%20(3).webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    min-height: calc(100vh - var(--header-height));
    position: relative;
    padding-top: 0;
}
.hero-content {
    max-width: 1000px;
    padding: 0 20px;
    z-index: 2;
}
.hero-title {
    font-size: 82px;
    font-weight: 900;
    margin-bottom: 25px;
    letter-spacing: -3px;
    line-height: 1;
    text-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.hero-subtitle {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 0;
    opacity: 1;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* Value Props Section */
.value-props-section {
    background: var(--bg-light); 
    padding: 120px 0 80px; 
    border-bottom: 1px solid #eee;
}

.value-props {
    display: flex; 
    justify-content: space-around; 
    text-align: center;
    gap: 60px;
}
@media (max-width: 992px) {
    .hero-title { font-size: 52px; letter-spacing: -1.5px; }
    .hero-subtitle { font-size: 16px; letter-spacing: 2px; margin-bottom: 0; }
    .value-props {
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }
    .value-props-section { padding: 80px 0; }
}
@media (max-width: 576px) {
    .hero-title { font-size: 42px; letter-spacing: -1px; }
    .hero-section { min-height: calc(100vh - var(--header-height)); }
}
