/* =========================================================
   categoria_detalle.css – Página de detalle de categoría
   Banco de Experiencias – ANH Portal
   ========================================================= */

/* ── Banner Superior (Texto sobrepuesto al espacio blanco de la imagen) ───── */
.catdet-banner-container {
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
}

.catdet-banner-img {
    grid-area: 1 / 1 / 2 / 2;
    align-self: start;
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;

    /* Aplica la máscara SVG para forzar el recorte en la esquina inferior derecha */
    -webkit-mask-image: url("forma_banner.e7e0247467f6.svg");
    mask-image: url("forma_banner.e7e0247467f6.svg");
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

.catdet-banner-text-overlay {
    grid-area: 1 / 1 / 2 / 2;
    justify-self: end;
    align-self: stretch;
    width: 50%;
    margin-top: 18%;
    /* Inicia donde empieza la curva (aprox. 18% del ancho) */
    padding-left: 2rem;
    padding-right: 2rem;
    box-sizing: border-box;
    z-index: 2;
    /* Centra el título verticalmente dentro del área del overlay */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.catdet-banner-titulo {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem !important;
    font-weight: 900;
    color: #002B46 !important;
    letter-spacing: -1.5px;
    margin-bottom: 3rem;
    text-shadow: 3px 5px 8px rgba(15, 44, 69, 0.25);
}

/* ── Sección Azul (Fondo Sólido) ────────── */
.catdet-blue-seccion {
    position: relative;
    z-index: 2;
    background-color: #0f2c45;
    padding: 90px 0;

    /* Técnica para fondo full-width sin causar scroll horizontal en Windows */
    box-shadow: 0 0 0 100vmax #0f2c45;
    clip-path: inset(0 -100vmax);

    margin-bottom: 0;
}

.catdet-descripcion-texto {
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: 500;
    text-align: left;
}

.catdet-descripcion-texto br {
    content: "";
    margin: 15px 0;
    display: block;
}

/* ── Imagen Blob ────────────────────────────────── */
.catdet-img-blob {
    max-width: 450px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto;

    /* Máscara de forma para darle el estilo orgánico del mockup */
    -webkit-mask-image: url("forma_imagen.c7f861849499.svg");
    mask-image: url("forma_imagen.c7f861849499.svg");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    transform: scale(1.1);
}

/* ── Lista de Experiencias ──────────────────────── */
.catdet-experiencias-lista {
    margin-top: 40px;
}

.catdet-exp-item {
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.5;
}

.catdet-exp-num {
    font-weight: 500;
}

.catdet-exp-titulo {
    font-weight: 500;
}

.catdet-exp-sep {
    color: #ffffff;
    margin: 0 5px;
    font-weight: 400;
}

.catdet-exp-link,
.catdet-exp-link:visited {
    color: #ffffff !important;
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.catdet-exp-link:hover {
    color: #f0c030;
    text-decoration: none;
}

.catdet-sin-experiencias-msg {
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    font-size: 1rem;
}

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 1199px) {
    .catdet-banner-titulo {
        font-size: 3.2rem !important;
    }
}

@media (max-width: 991.98px) {
    .catdet-banner-text-overlay {
        width: 50%;
        margin-top: 18%;
        padding-left: 1.5rem;
        padding-right: 1rem;
        text-align: left;
    }

    .catdet-banner-titulo {
        font-size: 2rem !important;
    }

    .catdet-blue-seccion {
        padding: 70px 0;
        margin-top: 20px;
    }

    .catdet-img-blob {
        max-width: 350px;
        margin-top: 40px;
    }
}

@media (max-width: 767.98px) {
    .catdet-banner-text-overlay {
        padding-left: 0.75rem;
        padding-right: 0.5rem;
    }

    /* Ajustes de tamaño de letras para móviles */
    h1,
    .catdet-banner-titulo {
        font-size: 22px !important;
        text-align: left !important;
    }

    h2 {
        font-size: 18px !important;
        text-align: left !important;
    }

    h3 {
        font-size: 16px !important;
        text-align: left !important;
    }

    h4 {
        font-size: 14px !important;
        text-align: left !important;
    }

    p,
    .catdet-descripcion-texto,
    .catdet-exp-item,
    .catdet-sin-experiencias-msg {
        font-size: 16px !important;
        text-align: left !important;
    }
}

@media (max-width: 576px) {
    .catdet-banner-text-overlay {
        padding-left: 0.5rem;
        padding-right: 0.25rem;
        margin-top: 17%;
    }
}

/* ── Imagen Representativa 2 (Sin máscara) ──────── */
.catdet-img-representative-2 {
    max-width: 100%;
    margin: 0 auto;
}