/* ==================================
   ESTILOS PARA MÉTODOS DE PAGO
   Agrega estos estilos a tu archivo assets/css/style.css
   ================================== */

/* Selector de métodos de pago */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
}

.payment-option {
    cursor: pointer;
    display: block;
}

.payment-option input[type="radio"] {
    display: none;
}

.payment-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    background: white;
    transition: all 0.3s ease;
}

.payment-option input[type="radio"]:checked + .payment-card {
    border-color: #4CAF50;
    background: #f0f9f0;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.2);
}

.payment-option:hover .payment-card {
    border-color: #4CAF50;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.payment-icon {
    font-size: 32px;
    min-width: 40px;
    text-align: center;
}

.payment-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.payment-info strong {
    font-size: 16px;
    color: #333;
}

.payment-info span {
    font-size: 13px;
    color: #666;
}

.payment-notice {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 12px 15px;
    border-radius: 5px;
    margin: 15px 0;
}

.payment-notice p {
    margin: 0;
    font-size: 14px;
    color: #856404;
}

/* Indicador de método seleccionado en el botón */
.btn-submit {
    width: 100%;
    padding: 15px;
    background: #2196F3;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #287CBF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.btn-submit:active {
    transform: translateY(0);
}

/* Ajustes responsive */
@media (max-width: 768px) {
    .payment-card {
        padding: 12px;
        gap: 10px;
    }
    
    .payment-icon {
        font-size: 24px;
        min-width: 30px;
    }
    
    .payment-info strong {
        font-size: 14px;
    }
    
    .payment-info span {
        font-size: 12px;
    }
}

/* Badge de seguridad Wompi */
.wompi-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px;
    background: #f5f5f5;
    border-radius: 5px;
    margin-top: 10px;
    font-size: 12px;
    color: #666;
}

.wompi-security svg {
    color: #4CAF50;
}
