/* Contenedor flexible para ponerlos en línea */
.contenedor-botones {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* Estilo general del botón */
.btn-cuadro {
    width: 123px;
    height: 123px;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
}

.btn-cuadro .icono {
    font-size: 28px;
    margin-bottom: 8px;
}

.btn-cuadro:hover {
    opacity: 0.95;
}

/* Colores reutilizables */
.bg-primario {
    background-color: #9E2343;
}

.bg-pdf {
    background-color: #691B32;
}
