.metodos-pago-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.pago-item {
    text-align: center;
}

.pago-item img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid #ddd;
    padding: 5px;
    background: #fff;
    transition: transform 0.2s;
}

.pago-item img:hover {
    transform: scale(1.05);
}

.pago-item span {
    display: block;
    margin-top: 8px;
    font-weight: 600;
    font-size: 14px;
}

.metodos-pago-box {
    margin-bottom: 20px;
}

.titulo-metodos {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 16px;
}

.metodos-pago-imagenes {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.metodos-pago-imagenes img {
    width: 90px;
    height: auto;
    border-radius: 5px;
    border: 1px solid #ddd;
    padding: 5px;
    background: #fff;
}

.info-importante {
    padding: 10px 15px;
    background: #fff3cd;
    border-left: 4px solid #ffca2c;
    border-radius: 5px;
    font-size: 14px;
}

.modal-terminos-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Contenedor del modal */
.modal-terminos {
    background: #fff;
    width: 70%;
    max-width: 900px;
    max-height: 85vh;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
}

/* Header */
.modal-terminos-header {
    padding: 18px;
    background: #fff;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-terminos-header h2 {
    font-size: 22px;
    margin: 0;
    font-weight: 700;
}

.modal-terminos-header .cerrarModal {
    cursor: pointer;
    font-size: 26px;
    font-weight: bold;
}

/* Cuerpo con scroll */
.modal-terminos-body {
    padding: 20px;
    overflow-y: auto;
    max-height: 70vh;
    font-size: 16px;
    line-height: 1.5;
}


/* Animación */
@keyframes aparecer {
    from {
        transform: scale(0.7);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}