/* ==========================================================
   INTRODUCCIÓN - TRANSPARENCIA PROACTIVA VIOLETA
   Micrositio Mujeres
========================================================== */

.intro-mujeres {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #fdfafd 50%,
            #faf5fb 100%
        );
}


/* ==========================================================
   DECORACIÓN DE FONDO
========================================================== */

.intro-mujeres__decoracion {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;

    background: #9b3ca5;

    opacity: 0.08;

    filter: blur(1px);

    animation: introMujeresDecoracion 8s ease-in-out infinite;
}


.intro-mujeres__decoracion--uno {
    width: 300px;
    height: 300px;

    top: -170px;
    right: -90px;
}


.intro-mujeres__decoracion--dos {
    width: 190px;
    height: 190px;

    bottom: -110px;
    left: -60px;

    animation-delay: -3s;
}


/* ==========================================================
   TARJETA PRINCIPAL
========================================================== */

.intro-mujeres__tarjeta {
    position: relative;
    z-index: 2;

    max-width: 1150px;
    margin: 0 auto;

    padding: 45px 50px 50px;

    background: rgba(255, 255, 255, 0.97);

    border: 1px solid rgba(151, 55, 161, 0.12);

    border-radius: 20px;

    box-shadow:
        0 18px 45px rgba(76, 42, 82, 0.10),
        0 4px 12px rgba(76, 42, 82, 0.05);

    animation: introMujeresFlotar 6s ease-in-out infinite;
}


/* Línea violeta superior */

.intro-mujeres__tarjeta::before {
    content: "";

    position: absolute;

    top: 0;
    left: 10%;
    right: 10%;

    height: 4px;

    border-radius: 0 0 5px 5px;

    background:
        linear-gradient(
            90deg,
            transparent 0%,
            #a34aa9 20%,
            #8e2d97 50%,
            #a34aa9 80%,
            transparent 100%
        );
}


/* ==========================================================
   ENCABEZADO
========================================================== */

.intro-mujeres__encabezado {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 20px;

    margin-bottom: 38px;
}


.intro-mujeres__titulo {
    flex-shrink: 0;

    max-width: 800px;

    margin: 0;

    color: #9941a2;

    text-align: center;

    font-family: "Montserrat", sans-serif;

    font-size: 20px;
    font-weight: 400;

    line-height: 1.6;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.intro-mujeres__titulo strong {
    font-weight: 600;
}


/* Líneas laterales del título */

.intro-mujeres__linea {
    flex: 1;

    max-width: 110px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #a34aa9
        );
}


.intro-mujeres__linea:last-child {
    background:
        linear-gradient(
            90deg,
            #a34aa9,
            transparent
        );
}


/* ==========================================================
   CONTENIDO
========================================================== */

.intro-mujeres__contenido {
    display: flex;
    flex-direction: column;

    gap: 18px;
}


/* ==========================================================
   BLOQUES
========================================================== */

.intro-mujeres__bloque {
    position: relative;

    display: flex;
    align-items: flex-start;

    gap: 22px;

    padding: 24px 28px;

    background: #ffffff;

    border: 1px solid #f0e5f1;

    border-radius: 14px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease,
        background-color 0.3s ease;
}


/* Línea lateral */

.intro-mujeres__bloque::before {
    content: "";

    position: absolute;

    left: 0;
    top: 18%;
    bottom: 18%;

    width: 3px;

    border-radius: 0 4px 4px 0;

    background: #a24aa8;

    opacity: 0;

    transform: scaleY(0.5);

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}


/* Hover flotante */

.intro-mujeres__bloque:hover {
    transform: translateY(-5px);

    border-color: rgba(155, 60, 165, 0.25);

    background: #fffefe;

    box-shadow:
        0 12px 25px rgba(83, 49, 89, 0.09);
}


.intro-mujeres__bloque:hover::before {
    opacity: 1;

    transform: scaleY(1);
}


/* ==========================================================
   ICONOS
========================================================== */

.intro-mujeres__icono {
    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 54px;
    height: 54px;

    margin-top: 2px;

    color: #973c9f;

    background:
        linear-gradient(
            135deg,
            #fcf5fd,
            #f3e5f5
        );

    border: 1px solid #ead2ed;

    border-radius: 50%;

    font-size: 19px;

    transition:
        transform 0.3s ease,
        background-color 0.3s ease;
}


.intro-mujeres__bloque:hover .intro-mujeres__icono {
    transform: translateY(-2px) scale(1.04);
}


/* ==========================================================
   TEXTO
========================================================== */

.intro-mujeres__texto {
    flex: 1;
}


.intro-mujeres__texto h3 {
    margin: 0 0 8px;

    color: #8d3695;

    font-family: "Montserrat", sans-serif;

    font-size: 16px;
    font-weight: 600;

    letter-spacing: 0.3px;
}


.intro-mujeres__texto p {
    margin: 0;

    color: #666666;

    font-family: "Open Sans", sans-serif;

    font-size: 15px;

    line-height: 1.9;
}


/* ==========================================================
   ANIMACIONES
========================================================== */

@keyframes introMujeresFlotar {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }

}


@keyframes introMujeresDecoracion {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(12px) scale(1.03);
    }

}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 991px) {

    .intro-mujeres {
        padding: 55px 0 65px;
    }


    .intro-mujeres__tarjeta {
        padding: 40px 35px;
    }


    .intro-mujeres__titulo {
        font-size: 18px;

        letter-spacing: 1.5px;
    }


    .intro-mujeres__linea {
        max-width: 70px;
    }

}


/* ==========================================================
   MÓVILES
========================================================== */

@media (max-width: 767px) {

    .intro-mujeres {
        padding: 35px 0 45px;
    }


    .intro-mujeres__tarjeta {
        padding: 32px 20px;

        border-radius: 15px;
    }


    .intro-mujeres__encabezado {
        margin-bottom: 28px;

        gap: 10px;
    }


    .intro-mujeres__titulo {
        font-size: 17px;

        line-height: 1.6;

        letter-spacing: 1px;
    }


    .intro-mujeres__linea {
        display: none;
    }


    .intro-mujeres__bloque {
        gap: 16px;

        padding: 21px 20px;
    }


    .intro-mujeres__icono {
        width: 46px;
        height: 46px;

        font-size: 17px;
    }


    .intro-mujeres__texto h3 {
        font-size: 15px;
    }


    .intro-mujeres__texto p {
        font-size: 14px;

        line-height: 1.8;
    }

}


/* ==========================================================
   MÓVILES PEQUEÑOS
========================================================== */

@media (max-width: 480px) {

    .intro-mujeres__tarjeta {
        padding: 28px 15px;
    }


    .intro-mujeres__titulo {
        font-size: 16px;
    }


    .intro-mujeres__bloque {
        flex-direction: column;

        padding: 20px;
    }


    .intro-mujeres__icono {
        margin-bottom: 2px;
    }


    .intro-mujeres__texto p {
        text-align: left !important;
    }

}


/* ==========================================================
   ACCESIBILIDAD - REDUCIR MOVIMIENTO
========================================================== */

@media (prefers-reduced-motion: reduce) {

    .intro-mujeres__tarjeta,
    .intro-mujeres__decoracion {
        animation: none;
    }


    .intro-mujeres__bloque,
    .intro-mujeres__icono,
    .intro-mujeres__bloque::before {
        transition: none;
    }


    .intro-mujeres__bloque:hover {
        transform: none;
    }


    .intro-mujeres__bloque:hover .intro-mujeres__icono {
        transform: none;
    }

}