﻿.acciones-botones {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 18px;
    flex-wrap: wrap;
}

    .acciones-botones .btn {
        min-width: 120px;
        height: 34px;
        border-radius: 10px;
        font-size: 13px;
        font-weight: 600;
        color: #fff;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
    }


    /*.acciones-botones .btn {
        min-width: 120px;*/ /* 👈 más angosto */
        /*height: 34px;*/ /* 👈 más bajo */
        /*border-radius: 10px;
        font-size: 13px;
        padding: 0 14px;*/ /* espacio interno */
    /*}*/


/* Colores */
.btn-magis {
    background: #f59e0b; /* naranja */
}

.btn-tele {
    background: #22c55e; /* verde */
}

.btn-xtream {
    background: #3b82f6; /* azul */
}

/*.btn-cerrar {
    background: #9ca3af;*/ /* gris */
/*}*/


.btn-cerrar {
    background: #ef4444; /* rojo elegante */
    color: #ffffff;
}
/* Hover */
.acciones-botones .btn:hover {
    filter: brightness(0.9);
}
