/* ---------------------------------------------------------
   ADHESIONES – Estilo exclusivo
--------------------------------------------------------- */

body {
    background: #000;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

/* Contenedor principal */
.adhesiones-contenedor {
    max-width: 1200px;
    margin: 150px auto 0 auto; /* margen superior añadido */
    padding: 40px 20px;
    line-height: 1.7;
    font-size: 20px;
    color: #f0f0f0;
}

/* Título principal */
.adhesiones-titulo {
    font-size: 40px;
    color: #ffd27f;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

/* Introducción */
.adhesiones-intro {
    font-size: 20px;
    text-align: justify;
    margin-bottom: 50px;
    color: #e6e6e6;
}

/* CONTENEDOR DE BLOQUES */
.adhesiones-bloques {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    margin-top: 50px;
}

/* BLOQUE INDIVIDUAL */
.bloque-adhesion {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #ffb85c;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 0 12px rgba(0,0,0,0.4);
}

/* TÍTULO DEL BLOQUE */
.bloque-titulo {
    font-size: 28px;
    color: #ffd27f;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

/* DESCRIPCIÓN */
.bloque-descripcion {
    font-size: 18px;
    color: #e6e6e6;
    line-height: 1.5;
}

/* HOVER */
.bloque-adhesion:hover {
    background: rgba(255, 255, 255, 0.10);
    transform: translateY(-5px);
    border-color: #ffcf7a;
}

/* =========================================
   CONTADORES DE ADHESIONES
   ========================================= */

.adhesiones-resumen {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;

    max-width: 1200px;
    margin: 10px auto 45px;
}


/* CAJAS */

.adhesion-contador {
    min-height: 125px;
    padding: 20px 15px;

    background: #151515;

    border: 1px solid #444;
    border-radius: 12px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
}


/* TÍTULO */

.contador-titulo {
    color: #f8f7f6;
    font-size: 19px;
    line-height: 1.25;
    margin-bottom: 8px;
}


/* NÚMERO */

.adhesion-contador strong {
    color: #e98400;
    font-size: 34px;
    font-weight: bold;
}


/* TOTAL */

.adhesion-contador-total {
    border: 2px solid #e98400;
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 900px) {

    .adhesiones-resumen {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 50px;
    }

}


/* =========================================
   MÓVIL
   ========================================= */

@media (max-width: 600px) {

    .adhesiones-resumen {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-top: 50px;
    }

    .adhesion-contador {
        min-height: 105px;
        padding: 15px 8px;
    }

    .contador-titulo {
        font-size: 15px;
    }

    .adhesion-contador strong {
        font-size: 28px;
    }

}

/* RESPONSIVE */
@media (max-width: 900px) {
    .adhesiones-bloques {
        flex-direction: column;
    }

    .bloque-adhesion {
        margin-bottom: 25px;
    }
}

@media (max-width: 600px) {
    .adhesiones-contenedor {
        font-size: 17px;
    }

    .bloque-adhesion {
        padding: 20px;
    }
}
