.container-pagos {
    margin-bottom: 95px;
}

.subtitle {
    color: white;
}

.card {
    border-radius: 15px;
    transition: none;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
.card-hover:hover {
    transform: none;
}

.card-header {
    border-radius: 15px 15px 0 0 !important;
    font-weight: 600;
}

.card-body .small {
    font-size: 0.875rem;
}

.card-body .row > .col-4 {
    text-align: left;
}

.fw-semibold {
    font-weight: 600;
}

.form-control-lg {
    border-radius: 10px;
    border: 2px solid #e9ecef;
    transition: border-color 0.3s ease;
}

.form-control-lg:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.btn-lg {
    border-radius: 10px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

i[class*="fa-"] {
    color: #0d6efd;
}

.icon-btn {
    color: white;
}

.bg-primary i[class*="fa-"],
.bg-success i[class*="fa-"],
.bg-info i[class*="fa-"],
.bg-danger i[class*="fa-"] {
    color: white !important;
}

.alert {
    border-radius: 10px;
}

.badge {
    font-size: 0.9em;
}

.form-label {
    color: #495057;
    margin-bottom: 0.8rem;
}

.form-text {
    color: #6c757d;
}

.text-muted {
    color: #6c757d !important;
}

h3, h4, h5, h6 {
    color: #212529;
}

input:disabled {
    background-color: #e9ecef;
    cursor: not-allowed;
}

.text-help {
    font-size: 13px;
    color: black;
    opacity: 0.6;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.btn:disabled:hover {
    transform: none !important;
}

#processingContainer .card {
    border: 2px solid #e3f2fd;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

#processingContainer .spinner-border {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { 
        transform: rotate(0deg); 
    }
    100% { 
        transform: rotate(360deg); 
    }
}

.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(10px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.payment-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border-color: #28a745;
}

.payment-error {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    border-color: #dc3545;
}

@media (max-width: 768px) {
    .container-pagos {
        margin-bottom: 60px;
    }
    
    .card-body .row > .col-4 {
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .btn-lg {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

.btn:focus,
.form-control:focus {
    outline: 2px solid #0d6efd;
    outline-offset: 2px;
}

.spinner-border {
    border-width: 0.2em;
}

i[class*="fa-"].fa-3x {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

* {
    transition: all 0.2s ease-in-out;
}

#mensajeInicial i[class*="fa-"] {
    opacity: 0.7;
}

#loading .spinner-border {
    animation: spin 1.5s linear infinite;
}

.modal-body .text-help {
    line-height: 1.6;
}
.card-hover:hover {
    transform: none !important;
}
