/* =========================================
   Hero — Retiro Rural Privado
   ========================================= */

.home .frontpage {
    min-height: 100vh;
    min-height: 100dvh;
}

/* Eyebrow y título: claros sobre fondo oscuro */
.content .about-hp-subtitle {
    color: rgba(255, 255, 255, 0.75);
}

.hero-title {
    color: #e0e0e0;
}

/* Overlay gradient */
.home .frontpage::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background: linear-gradient(to bottom,
        rgba(0, 0, 0, 0.70) 0%,
        rgba(0, 0, 0, 0.45) 50%,
        rgba(0, 0, 0, 0.30) 100%);
    z-index: 1;
}

/* Slideshow */
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    will-change: opacity;
}

.hero-slide.active {
    opacity: 1;
}

/* Hero content */
.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    min-height: 100dvh;
    padding-left: 10%;
    padding-right: 10%;
    padding-top: 80px;
    padding-bottom: 300px;
    position: relative;
    z-index: 10;
    text-align: center;
    text-shadow: none;
}

#contentsum1 {
    padding-top: 16px;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: none;
    color: rgba(255, 255, 255, 0.75);
}

/* Responsive */
@media (max-width: 850px) {
    .frontpage .content {
        padding-left: 5%;
        padding-right: 5%;
    }
}

@media (max-width: 650px) {
    .frontpage .content {
        padding: 20px;
        min-height: 100vh;
        min-height: 100dvh;
        height: auto;
        transform: translateY(-30px);
    }

    #contentsum1 {
        margin-bottom: 20px;
    }
}
