
/*

.hero-dlc {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 70vh;
    min-height: 70vh;
    position: relative;
    display: flex;
    align-items: center;
    padding-block: 0;
    color: white;
}

/* Hero content *
.hero-dlc .hero-content {
    max-width: 700px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-dlc h1{
    font-size: var(--fs-64);
    color: white;
}

.hero-dlc p{
    font-size: var(--fs-18);
    color: white;
    line-height: 1.6;
}

/* Breadcrumbs *
.hero-dlc .breadcrumbs {
    color: white;
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.85;
}



/* Responsive *
@media (max-width: 768px) {
    .hero-dlc {
        height: 65vh;
        text-align: center;
    }

    .hero-dlc .hero-content {
        margin-inline: auto;
    }
}

*/



/* hero-dlc.css */
.hero-dlc {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: auto;
    min-height: 70vh;
    position: relative;
    display: flex;
    align-items: flex-start;
    padding-block: 60px;
    color: white;
}

/* Contenedor principal que llega hasta abajo */
.hero-content-wrapper {
    width: 100%;
    position: relative;
    min-height: calc(70vh - 120px);
    display: flex;
    align-items: flex-end;
}

/* Estilos para CON fondo */
.hero-content-background {
    border-radius: 0 250px 250px 0;
    /*padding: 40px;*/
    position: relative;
    /*margin-left: calc(-50vw + 50%);*/
    margin-left: calc(-50vw + 35%);
    margin-right: 0;
    /*padding-left: calc(50vw - 50% + 40px);*/
    padding-left: calc(50vw - 35%);
    min-height: calc(70vh - 120px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    margin-bottom: -60px;
    padding-bottom: 0px;
    opacity: 0.8;
}

/* Estilos para SIN fondo */
.hero-content-sin-fondo {
    border-radius: 0 50px 0 0;
    padding: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
    margin-bottom: 0;
    padding-bottom: 40px;
    min-height: calc(70vh - 120px);
}

/* Pseudo-elemento para asegurar que cubra toda la altura */
.hero-content-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: inherit;
    border-radius: inherit;
    z-index: -1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    z-index: 2;
    margin-bottom: 0;
}

#breadcrumbs a {
    color: inherit;
    text-decoration: none;
}

#breadcrumbs .breadcrumb_last {
    opacity: 0.8;
}

.hero-dlc p {
    font-size: var(--fs-18);
    color: white;
    line-height: 1.6;
    margin: 0;
}

.hero-dlc h1 {
    font-size: var(--fs-64);
    color: white;
    margin: 0;
}

/* Botón scroll */
.scroll-down-btn {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 2rem;
    text-decoration: none;
    animation: bounce 2s infinite;
    z-index: 10;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Descripción para móvil - oculta en desktop */
.descripcion-movil {
    display: none;
}

/* Scroll button */
.hero-dlc .scroll-down-btn {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    font-size: 32px;
    color: white;
    text-decoration: none;
    padding: 0px 12px 0px 12px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    transition: 0.3s;
    width: 50px;
    height: 50px;
}

.hero-dlc .scroll-down-btn:hover {
    transform: translateX(-50%) translateY(4px);
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-dlc {
        padding-block: 40px;
        min-height: 60vh;
        align-items: flex-start;
    }
    
    .hero-content-wrapper {
        min-height: calc(70vh - 80px);
    }
    
    .hero-content-background {
        border-radius: 0 50% 50% 0;
        padding: 30px 30px;
        /*margin-left: -20px;
        padding-left: 30px;
        /*margin-right: -20px;*/
        margin-left: calc(-50vw + 50%);
        padding-left: calc(50vw - 50% + 10px);
        justify-content: flex-end;
        min-height: calc(50vh - 80px);
        margin-bottom: 0px;
        padding-bottom: 20px;
        opacity: 0.8;
    }
    
    .hero-content-sin-fondo {
        border-radius: 0 30px 0 0;
        /*padding: 30px 20px;*/
        padding: 30px 0px;
        padding-bottom: 40px;
        min-height: calc(60vh - 80px);
    }
    
    .hero-content-background::before {
        bottom: -40px;
    }
    
    .hero-dlc h1 {
        font-size: var(--fs-40) !important;
    }
    
    /* En móvil, siempre 100% de ancho */
    .hero-content-background .hero-content,
    .hero-content-sin-fondo .hero-content {
        max-width: 100% !important;
        width: 100% !important;
    }
}