body {
    background: #000;
    color: #f0f0f0;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.adhesiones-personales-contenedor {
    max-width: 1200px;
    padding: 0px 20px;
}

.adhesiones-titulo {
    font-size: 40px;
    color: #ffd27f;
    text-align: center;
    margin-bottom: 30px;
}

.adhesiones-intro {
    font-size: 20px;
    text-align: center;
    margin-bottom: 50px;
    color: #e6e6e6;
}

/* Contenedor de nombres */
#lista-nombres {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Cada nombre */
.nombre-item {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #ffb85c;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    font-size: 18px;
    color: #ffd27f;
    transition: transform 0.3s ease;
}

.nombre-item:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.1);
}

.botones {
    text-align: center;
    margin: 20px 0 10px 0;
}

.boton-firma {
    display: inline-block;
    background: #ffb85c;
    color: #000;
    padding: 12px 25px;
    border-radius: 8px;
    margin-top: 100px;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s ease;
}

.boton-firma:hover {
    background: #ffd27f;
    transform: translateY(-3px);
}


/* Responsive */
@media (max-width: 900px) {
    #lista-nombres {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    #lista-nombres {
        grid-template-columns: 1fr;
    }
}
