/* =========================================
   ALIANZAS SECTION POP-ART REDESIGN
   Target: .home-alianzas
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Bangers&family=Fredoka+One&display=swap');

/* 1. SECCIÓN PRINCIPAL (.home-alianzas) */
.home-alianzas {
    background-color: #fcf8f5 !important;
    /* Cream Paper */
    position: relative;
    padding-top: 6rem !important;
    padding-bottom: 8rem !important;
    overflow: hidden !important;
    border-bottom: none !important;
}

/* 2. CAPA 1: TEXTURA PAPEL (::before) */
.home-alianzas::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.1;
    background-image: radial-gradient(#111 1px, transparent 1px);
    background-size: 12px 12px;
    pointer-events: none;
}

/* 3. CAPA 2: MACROFORMAS VISIBLES (::after) */
.home-alianzas::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.6;
    /* Visible */
    pointer-events: none;

    background-image:
        /* Círculo Amarillo (Izquierda) */
        radial-gradient(circle at 10% 20%, rgba(241, 196, 15, 0.5) 0%, rgba(241, 196, 15, 0.5) 20%, transparent 21%),

        /* Círculo Azul (Derecha) */
        radial-gradient(circle at 90% 80%, rgba(18, 127, 229, 0.4) 0%, rgba(18, 127, 229, 0.4) 25%, transparent 26%),

        /* Círculo Rojo Pequeño (Centro/Arriba) */
        radial-gradient(circle at 60% 10%, #ED1A24 0%, #ED1A24 5%, transparent 6%),

        /* Línea Curva (Ellipse) */
        radial-gradient(ellipse at 50% 100%, transparent 40%, rgba(0, 0, 0, 0.05) 41%, rgba(0, 0, 0, 0.05) 45%, transparent 46%);
}

/* 4. ELEMENTOS INTERNOS (UI) */

/* Título Sección */
.home-alianzas h2 {
    font-family: 'Bangers', cursive !important;
    font-size: 4rem !important;
    color: #1a1a1a !important;
    text-shadow: 4px 4px 0 #fff, 6px 6px 0 #127FE5 !important;
    /* Sombra Azul */
    position: relative;
    z-index: 10;
    transform: rotate(-1deg);
}

/* Contenedor Título */
.home-alianzas .inline-block.bg-pop-white {
    background-color: #fff !important;
    border: 4px solid #111 !important;
    box-shadow: 8px 8px 0 0 #111 !important;
    transform: rotate(-1deg) !important;
}

/* TARJETAS (LOGOS) */
.home-alianzas .grid>div {
    background-color: #ffffff !important;
    border: 3px solid #111 !important;
    box-shadow: 6px 6px 0 0 #111 !important;
    padding: 2rem !important;
    position: relative;
    z-index: 10;
    /* Encima de macroformas */
    transition: all 0.2s ease !important;
}

.home-alianzas .grid>div:hover {
    transform: translateY(-5px) !important;
    box-shadow: 10px 10px 0 0 #F39314 !important;
    /* Sombra Naranja */
    border-color: #111 !important;
}

/* Contenedor Imágenes */
.home-alianzas .h-32.border-b-4 {
    border-bottom: 3px solid #1a1a1a !important;
    margin-bottom: 1.5rem !important;
}

/* Títulos Cards */
.home-alianzas h3 {
    font-family: 'Luckiest Guy', cursive !important;
    font-size: 1.8rem !important;
    color: #111 !important;
    margin-bottom: 1rem !important;
    text-transform: uppercase;
}

/* Textos Cards */
.home-alianzas p {
    font-family: 'Fredoka One', cursive !important;
    font-size: 1rem !important;
    color: #444 !important;
    line-height: 1.4 !important;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .home-alianzas h2 {
        font-size: 2.5rem !important;
    }
}