/* ============================================
   DISEÑO MINIMALISTA Y PROFESIONAL
   CEBA Internacional Mi Perú
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
    /* Colores minimalistas */
    --primary-color: #2563eb;
    --secondary-color: #64748b;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --info-color: #06b6d4;
    --dark-color: #0f172a;
    --light-color: #f8fafc;
    --white-color: #ffffff;
    --border-color: #e2e8f0;
    
    /* Gradientes suaves */
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    --gradient-success: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --gradient-warning: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    
    /* Tipografía */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Tamaños de texto */
    --text-xs: 12px;
    --text-sm: 14px;
    --text-base: 16px;
    --text-lg: 18px;
    --text-xl: 20px;
    --text-2xl: 24px;
    --text-3xl: 30px;
    --text-4xl: 36px;
    --text-5xl: 48px;
    
    /* Sombras minimalistas */
    --shadow-sm: 0 1px 2px 0 rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1);
    
    /* Espaciado */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-2xl: 64px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.6;
    overflow-x: hidden;
    color: var(--dark-color);
    background: var(--white-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Tipografía limpia */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-color);
    margin-bottom: var(--space-md);
}

h1 { font-size: var(--text-5xl); letter-spacing: -0.02em; }
h2 { font-size: var(--text-4xl); letter-spacing: -0.01em; }
h3 { font-size: var(--text-3xl); }
h4 { font-size: var(--text-2xl); }
h5 { font-size: var(--text-xl); }
h6 { font-size: var(--text-lg); }

p {
    margin-bottom: var(--space-sm);
    color: var(--secondary-color);
    line-height: 1.7;
}

/* OFERTA FLOTANTE MINIMALISTA */
.oferta-flotante {
    position: fixed;
    top: 50%;
    right: -200px;
    transform: translateY(-50%);
    z-index: 1000;
    transition: right 0.5s ease;
    animation: slideIn 2s ease 3s forwards;
}

@keyframes slideIn {
    to { right: 20px; }
}

.oferta-content {
    background: var(--white-color);
    color: var(--dark-color);
    padding: 20px;
    border-radius: 16px 0 0 16px;
    box-shadow: var(--shadow-xl);
    text-align: center;
    min-width: 180px;
    border: 2px solid var(--primary-color);
}

.oferta-badge {
    background: var(--primary-color);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: var(--text-xs);
    font-weight: 700;
    margin-bottom: 12px;
    display: inline-block;
}

.precio-antes {
    text-decoration: line-through;
    font-size: var(--text-sm);
    color: var(--secondary-color);
    display: block;
}

.precio-ahora {
    font-size: var(--text-3xl);
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    margin: 8px 0;
}

.oferta-ahorro {
    font-size: var(--text-xs);
    background: #dbeafe;
    color: var(--primary-color);
    padding: 4px 10px;
    border-radius: 12px;
    margin-top: 8px;
    font-weight: 600;
}

/* BANNER DE URGENCIA MINIMALISTA */
.banner-urgencia {
    background: var(--primary-color) !important;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.banner-urgencia h6 {
    font-size: var(--text-base);
    font-weight: 600;
}

#countdown-urgencia {
    font-family: var(--font-heading);
    font-weight: 700;
    background: rgba(255,255,255,0.2);
    padding: 4px 12px;
    border-radius: 8px;
    display: inline-block;
}

/* HEADER MINIMALISTA */
header {
    background: var(--white-color) !important;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

header .text-white {
    color: var(--dark-color) !important;
}

header .text-warning {
    color: var(--primary-color) !important;
}

.bg-gradient-primary {
    background: var(--white-color) !important;
}

/* HERO SECTION NUEVO */
.hero-section-new {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
}

.min-vh-75 {
    min-height: 75vh;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.badges-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.badge-hero {
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.hero-title {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.2;
}

/* PRECIO HERO */
.precio-hero {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    color: #333;
}

.precio-container {
    text-align: center;
    margin-bottom: 20px;
}

.precio-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
}

.precio-amount {
    font-size: 4rem;
    font-weight: 900;
    color: var(--success-color);
    line-height: 1;
}

.precio-period {
    font-size: 18px;
    color: var(--secondary-color);
}

.precio-beneficios {
    display: grid;
    gap: 8px;
}

.beneficio-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.beneficio-item i {
    color: var(--success-color);
    font-size: 18px;
}

/* OFERTA ESPECIAL */
.oferta-especial {
    background: var(--gradient-warning);
    border-radius: 15px;
    padding: 20px;
    color: white;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.oferta-header {
    font-size: 18px;
    margin-bottom: 10px;
}

.oferta-precios {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.precio-tachado {
    text-decoration: line-through;
    opacity: 0.8;
}

.precio-oferta {
    font-size: 24px;
    font-weight: bold;
}

/* BOTONES CTA */
.btn-cta {
    background: var(--gradient-success);
    border: none;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    color: white;
}

.btn-whatsapp {
    background: #25d366;
    border: none;
    color: white;
    font-weight: 600;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
    color: white;
}

/* TESTIMONIOS RÁPIDOS */
.testimonios-rapidos {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.testimonio-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.2);
    padding: 10px 15px;
    border-radius: 25px;
    color: white;
    font-size: 14px;
}

.testimonio-avatar {
    font-size: 24px;
}

/* HERO IMAGE */
.hero-image {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-item {
    position: absolute;
    background: rgba(255,255,255,0.95);
    padding: 10px 15px;
    border-radius: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    animation: float 3s ease-in-out infinite;
}

.floating-item.item-1 {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.floating-item.item-2 {
    top: 60%;
    left: 10%;
    animation-delay: 1s;
}

.floating-item.item-3 {
    bottom: 20%;
    right: 20%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.main-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

/* SCROLL INDICATOR */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
}

.scroll-text {
    font-size: 14px;
    margin-bottom: 10px;
}

/* BENEFICIOS SECTION */
.beneficios-section {
    position: relative;
}

.beneficio-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.beneficio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.beneficio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.beneficio-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.beneficio-card h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.beneficio-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-warning);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

/* PLANES SECTION - TODOS LOS PLANES */
.planes-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 60px 0;
}

.plan-card {
    background: white;
    border-radius: 20px;
    overflow: visible;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    margin-bottom: 30px;
    z-index: 1;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    z-index: 10;
}

.plan-destacado {
    border: 3px solid var(--success-color);
    z-index: 5;
}

/* Asegurar que las columnas no se solapen */
.planes-section .row {
    margin-left: -15px;
    margin-right: -15px;
}

.planes-section .col-lg-4,
.planes-section .col-md-6 {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 30px;
}

.plan-ribbon {
    position: absolute;
    top: 15px;
    right: -35px;
    background: var(--info-color);
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 12px;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.plan-ribbon.bg-warning {
    background: var(--warning-color);
    color: #333;
}

.plan-ribbon.bg-success {
    background: var(--success-color);
}

.plan-badge-popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-danger);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 10;
}

.plan-header {
    padding: 40px 20px 30px;
    text-align: center;
    color: white;
    position: relative;
}

.bg-gradient-info {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.bg-gradient-warning {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.bg-gradient-success {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.plan-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.plan-title {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 5px;
}

.plan-subtitle {
    font-size: 1rem;
    opacity: 0.9;
}

.plan-body {
    padding: 30px 20px;
    flex-grow: 1;
}

.plan-precio-box {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    margin-bottom: 25px;
}

.precio-destacado {
    background: linear-gradient(135deg, #fff5e6 0%, #e6f9f5 100%);
    border: 2px solid var(--success-color);
}

.precio-label {
    font-size: 14px;
    color: var(--secondary-color);
    font-weight: 600;
}

.precio-valor {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin: 10px 0;
}

.precio-simbolo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.precio-numero {
    font-size: 3rem;
    font-weight: 900;
    color: var(--success-color);
    line-height: 1;
}

.precio-periodo {
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.precio-ahorro {
    font-size: 13px;
    color: var(--success-color);
    font-weight: 700;
    margin-top: 5px;
}

.plan-caracteristicas {
    margin-bottom: 20px;
}

.caracteristica-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
}

.caracteristica-item i {
    font-size: 18px;
}

.plan-beneficios {
    margin-bottom: 20px;
}

.plan-beneficios .beneficio-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
}

.plan-beneficios .beneficio-item i {
    color: var(--success-color);
    font-size: 16px;
    margin-top: 2px;
}

.plan-ideal {
    background: #e7f3ff;
    padding: 12px;
    border-radius: 10px;
    font-size: 14px;
    text-align: center;
    border-left: 4px solid var(--primary-color);
}

.plan-ideal-destacado {
    background: #e6f9f5;
    border-left-color: var(--success-color);
}

.plan-footer {
    padding: 20px;
    background: #f8f9fa;
    text-align: center;
}

.btn-plan {
    width: 100%;
    padding: 15px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    border: none;
    color: white;
    transition: all 0.3s ease;
    font-size: 15px;
}

.btn-plan:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    color: white;
}

.btn-plan.btn-info {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.btn-plan.btn-warning {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.btn-plan.btn-success {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.plan-oferta-footer {
    margin-top: 10px;
    font-size: 13px;
}

/* COMPARACIÓN DE PLANES */
.comparacion-planes {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.comparacion-planes table {
    margin-bottom: 0;
}

.comparacion-planes th {
    font-weight: 700;
    padding: 15px;
}

.comparacion-planes td {
    padding: 12px;
    vertical-align: middle;
}

/* MÉTODOS DE PAGO */
.metodos-pago {
    display: grid;
    gap: 20px;
}

.metodo-pago {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.metodo-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.metodo-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.metodo-icon.bg-purple {
    background: var(--purple-color);
}

.metodo-icon.bg-green {
    background: var(--green-color);
}

.metodo-icon.bg-blue {
    background: var(--info-color);
}

.metodo-info h4 {
    margin: 0 0 5px 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.metodo-info p {
    margin: 0;
    opacity: 0.9;
}

.metodo-numero {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.instrucciones-pago {
    margin-top: 40px;
}

.instruccion-card {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    height: 100%;
}

.instruccion-card h5 {
    margin-bottom: 20px;
    font-weight: 700;
}

.instruccion-card ol {
    padding-left: 20px;
}

.instruccion-card li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* FORMULARIO MEJORADO */
.form-control, .form-select {
    border-radius: 10px;
    border: 2px solid #e9ecef;
    padding: 12px 15px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
    transform: translateY(-2px);
}

.form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .precio-amount {
        font-size: 3rem;
    }
    
    .badges-container {
        justify-content: center;
    }
    
    .botones-accion {
        text-align: center;
    }
    
    .btn-cta, .btn-whatsapp {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .testimonios-rapidos {
        justify-content: center;
    }
    
    .floating-item {
        position: static;
        margin: 10px 0;
    }
    
    .metodo-pago {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .oferta-flotante {
        display: none;
    }
}

/* ANIMACIONES ADICIONALES */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% { transform: translate3d(0,0,0); }
    40%, 43% { transform: translate3d(0,-30px,0); }
    70% { transform: translate3d(0,-15px,0); }
    90% { transform: translate3d(0,-4px,0); }
}

.animate__pulse {
    animation: pulse 2s infinite;
}

/* UTILIDADES */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-custom {
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}



/* ============================================
   7. WHATSAPP FLOTANTE MINIMALISTA
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: #25d366;
    color: white;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: var(--shadow-xl);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.4);
    color: white;
}

.whatsapp-text {
    display: none;
}

/* RESPONSIVE MEJORADO */
@media (max-width: 992px) {
    .plan-destacado {
        transform: scale(1);
    }
    
    .plan-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .precio-amount {
        font-size: 2.5rem;
    }
    
    .badges-container {
        justify-content: center;
    }
    
    .badge-hero {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .botones-accion {
        text-align: center;
    }
    
    .btn-cta, .btn-whatsapp {
        width: 100%;
        margin-bottom: 10px;
        font-size: 14px;
        padding: 12px 20px;
    }
    
    .testimonios-rapidos {
        justify-content: center;
    }
    
    .floating-item {
        position: static;
        margin: 10px 0;
    }
    
    .metodo-pago {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .oferta-flotante {
        display: none;
    }
    
    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .whatsapp-float:hover {
        width: 50px;
        border-radius: 50%;
    }
    
    .whatsapp-text {
        display: none !important;
    }
    
    .plan-precio-box {
        padding: 15px;
    }
    
    .precio-numero {
        font-size: 2.5rem;
    }
    
    .plan-title {
        font-size: 1.5rem;
    }
    
    .caracteristica-item {
        font-size: 13px;
    }
    
    .comparacion-planes {
        padding: 15px;
    }
    
    .comparacion-planes table {
        font-size: 12px;
    }
    
    .comparacion-planes th,
    .comparacion-planes td {
        padding: 8px 5px;
    }
}

@media (max-width: 576px) {
    .hero-section-new {
        min-height: auto;
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .display-3 {
        font-size: 2rem !important;
    }
    
    .precio-hero {
        padding: 20px;
    }
    
    .oferta-especial {
        padding: 15px;
    }
    
    .beneficio-card {
        padding: 20px;
    }
    
    .beneficio-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .metodo-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .instruccion-card {
        padding: 15px;
    }
    
    .banner-urgencia h6 {
        font-size: 12px;
    }
    
    #countdown-urgencia {
        font-size: 14px !important;
    }
}

/* MEJORAS PARA TABLETS */
@media (min-width: 768px) and (max-width: 991px) {
    .plan-card {
        max-width: 400px;
        margin: 0 auto 20px;
    }
}

/* ANIMACIONES SUAVES PARA MÓVILES */
@media (prefers-reduced-motion: reduce) {
    .animate__animated {
        animation: none !important;
    }
    
    .whatsapp-float::before {
        animation: none;
    }
}


/* MENSAJE MOTIVACIONAL */
.mensaje-motivacional {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.mensaje-motivacional::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.caracteristicas-rapidas {
    display: grid;
    gap: 15px;
}

.caracteristica-item-motivacional {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255,255,255,0.1);
    padding: 15px 20px;
    border-radius: 50px;
    color: white;
    font-size: 18px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.caracteristica-item-motivacional:hover {
    background: rgba(255,255,255,0.2);
    transform: translateX(10px);
}

.caracteristica-item-motivacional i {
    font-size: 24px;
    color: #ffc107;
}

.tiempo-destacado {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 40px;
    display: inline-block;
    border: 3px solid rgba(255,255,255,0.3);
}

.tiempo-numero {
    font-size: 8rem;
    font-weight: 900;
    color: #ffc107;
    line-height: 1;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
}

.tiempo-texto {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-top: 10px;
}

.tiempo-descripcion {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-top: 10px;
}

/* VIDEO SECTION */
.video-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
}

.video-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.video-placeholder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 100px 40px;
    text-align: center;
    color: white;
}

.video-placeholder i {
    font-size: 5rem;
    opacity: 0.8;
}

.video-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* GALERÍA DE ESTUDIANTES */
.galeria-estudiantes {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.estudiante-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.estudiante-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.estudiante-foto {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.foto-placeholder {
    width: 120px;
    height: 120px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid rgba(255,255,255,0.5);
}

.foto-placeholder i {
    font-size: 4rem;
    color: white;
}

/* Para cuando agregues fotos reales */
.estudiante-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.estudiante-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ffc107;
    color: #333;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

.estudiante-info {
    padding: 20px;
    text-align: center;
}

.estudiante-info h5 {
    color: #667eea;
    font-weight: 700;
    margin-bottom: 5px;
}

.estudiante-info p {
    margin-bottom: 5px;
}

/* RESPONSIVE PARA NUEVAS SECCIONES */
@media (max-width: 768px) {
    .tiempo-numero {
        font-size: 5rem;
    }
    
    .tiempo-texto {
        font-size: 1.5rem;
    }
    
    .tiempo-destacado {
        padding: 30px;
    }
    
    .caracteristica-item-motivacional {
        font-size: 16px;
        padding: 12px 15px;
    }
    
    .video-container iframe,
    .video-placeholder {
        height: 300px;
    }
    
    .estudiante-foto {
        height: 180px;
    }
    
    .foto-placeholder {
        width: 100px;
        height: 100px;
    }
    
    .foto-placeholder i {
        font-size: 3rem;
    }
}

@media (max-width: 576px) {
    .mensaje-motivacional h2 {
        font-size: 2rem;
    }
    
    .mensaje-motivacional h3 {
        font-size: 1.5rem;
    }
    
    .tiempo-numero {
        font-size: 4rem;
    }
    
    .tiempo-texto {
        font-size: 1.2rem;
    }
    
    .caracteristica-item-motivacional {
        font-size: 14px;
    }
    
    .video-placeholder {
        padding: 60px 20px;
    }
    
    .video-placeholder i {
        font-size: 3rem;
    }
}

/* AJUSTES PARA EVITAR SOLAPAMIENTO */
.row.g-4 {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.5rem;
}

/* Asegurar espaciado correcto en todas las secciones */
section {
    position: relative;
    z-index: 1;
}

/* Mejorar el espaciado de las tarjetas de planes */
@media (min-width: 992px) {
    .plan-destacado {
        margin-top: -10px;
        margin-bottom: 10px;
    }
}

/* Prevenir overflow horizontal */
body {
    overflow-x: hidden;
}

.container {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}


/* ESTRATEGIA DE URGENCIA */
.urgencia-box {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 40px;
    border: 3px solid rgba(255,255,255,0.3);
}

.urgencia-badge {
    background: linear-gradient(135deg, #ff6b6b 0%, #feca57 100%);
    color: white;
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 900;
    display: inline-block;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
    box-shadow: 0 10px 30px rgba(255,107,107,0.5);
}

.precio-comparacion {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.precio-antes-box,
.precio-ahora-box {
    background: rgba(255,255,255,0.1);
    padding: 20px 30px;
    border-radius: 20px;
    min-width: 150px;
}

.precio-antes-box {
    border: 2px solid rgba(255,255,255,0.3);
}

.precio-ahora-box {
    border: 3px solid #ffc107;
    background: rgba(255,193,7,0.2);
    transform: scale(1.1);
}

.precio-antes-box .label,
.precio-ahora-box .label {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 5px;
}

.precio-antes-box .precio {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    text-decoration: line-through;
    opacity: 0.6;
}

.precio-ahora-box .precio {
    font-size: 3rem;
    font-weight: 900;
    color: #ffc107;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.flecha-descuento {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #ffc107;
}

.flecha-descuento i {
    font-size: 2rem;
    margin-bottom: 5px;
}

.flecha-descuento span {
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
}

.contador-urgencia {
    background: rgba(0,0,0,0.3);
    padding: 20px;
    border-radius: 15px;
}

.contador-label {
    color: white;
    font-size: 16px;
    margin-bottom: 10px;
}

#countdown-grande {
    font-size: 3rem;
    font-weight: 900;
    color: #ffc107;
    font-family: 'Courier New', monospace;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* ELIMINAR ESPACIOS EN BLANCO */
section {
    margin: 0;
    padding-top: 60px;
    padding-bottom: 60px;
}

section.py-4 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
}

section.py-5 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
}

/* Eliminar espacios entre secciones */
section + section {
    margin-top: 0;
}

/* Ajustar hero section */
.hero-section-new {
    padding-top: 80px;
    padding-bottom: 80px;
    margin-bottom: 0;
}

/* Ajustar mensaje motivacional */
.mensaje-motivacional {
    margin-top: 0;
    margin-bottom: 0;
}

/* GALERÍA CON IMÁGENES REALES */
.estudiante-foto img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* Efecto de carga para imágenes */
.estudiante-foto img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.estudiante-foto img.loaded,
.estudiante-foto img[loading="lazy"]:not([src=""]) {
    opacity: 1;
}

/* RESPONSIVE PARA URGENCIA */
@media (max-width: 768px) {
    .urgencia-box {
        padding: 25px;
    }
    
    .urgencia-badge {
        font-size: 14px;
        padding: 8px 20px;
    }
    
    .precio-comparacion {
        flex-direction: column;
        gap: 15px;
    }
    
    .flecha-descuento {
        transform: rotate(90deg);
    }
    
    .precio-antes-box .precio,
    .precio-ahora-box .precio {
        font-size: 2rem;
    }
    
    #countdown-grande {
        font-size: 2rem;
    }
    
    .precio-ahora-box {
        transform: scale(1);
    }
}

@media (max-width: 576px) {
    section {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    
    .urgencia-badge {
        font-size: 12px;
        padding: 6px 15px;
    }
    
    .precio-antes-box .precio,
    .precio-ahora-box .precio {
        font-size: 1.8rem;
    }
    
    #countdown-grande {
        font-size: 1.5rem;
    }
}

/* ANIMACIÓN DE PULSO MEJORADA */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(255,107,107,0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(255,107,107,0.7);
    }
}

/* MEJORAR VISIBILIDAD DEL CONTADOR */
#countdown-urgencia {
    background: rgba(0,0,0,0.3);
    padding: 5px 15px;
    border-radius: 10px;
    display: inline-block;
}


/* TESTIMONIOS */
.testimonios-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.testimonio-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 300px;
}

.testimonio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.testimonio-imagen {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonio-card:hover .testimonio-overlay {
    opacity: 1;
}

.testimonio-overlay i {
    font-size: 4rem;
    color: white;
}

.testimonio-card-texto {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonio-card-texto:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.testimonio-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.testimonio-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.testimonio-info h5 {
    margin: 0;
    color: #667eea;
    font-weight: 700;
}

.testimonio-estrellas {
    margin-bottom: 15px;
}

.testimonio-texto {
    flex-grow: 1;
    font-style: italic;
    color: #555;
    line-height: 1.6;
}

/* RESPONSIVE PARA TESTIMONIOS */
@media (max-width: 768px) {
    .testimonio-card {
        height: 250px;
    }
    
    .testimonio-card-texto {
        padding: 20px;
    }
    
    .testimonio-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}


/* ========================================
   TESTIMONIOS ELEGANTES
======================================== */
.testimonio-card-elegante {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    transition: all 0.4s ease;
    height: 100%;
}

.testimonio-card-elegante:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}

.testimonio-imagen-wrapper {
    position: relative;
    overflow: hidden;
    height: 350px;
}

.testimonio-imagen-elegante {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.testimonio-card-elegante:hover .testimonio-imagen-elegante {
    transform: scale(1.1);
}

.testimonio-overlay-elegante {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonio-card-elegante:hover .testimonio-overlay-elegante {
    opacity: 1;
}

.testimonio-badge-elegante {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.testimonio-footer-elegante {
    padding: 20px;
    text-align: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.testimonio-stars {
    margin-bottom: 10px;
}

.testimonio-stars i {
    font-size: 18px;
    margin: 0 2px;
}

.testimonio-quote {
    font-style: italic;
    color: #333;
    margin: 0;
    font-weight: 600;
}

/* ========================================
   GALERÍA SIMPLE Y ELEGANTE
======================================== */
.estudiante-card-simple {
    transition: all 0.3s ease;
}

.estudiante-foto-simple {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.estudiante-foto-simple:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.estudiante-foto-simple img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.estudiante-foto-simple:hover img {
    transform: scale(1.1);
}

.estudiante-badge-simple {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 2;
}

.estudiante-overlay-simple {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.estudiante-foto-simple:hover .estudiante-overlay-simple {
    transform: translateY(0);
}

/* ========================================
   VIDEOS CON REPRODUCCIÓN AUTOMÁTICA
======================================== */
.video-container-auto {
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
}

.video-container-auto:hover {
    box-shadow: 0 20px 45px rgba(0,0,0,0.6);
}

.video-container-auto video {
    display: block;
    width: 100%;
    border-radius: 15px 15px 0 0;
}

.video-info {
    padding: 15px;
    background: rgba(0,0,0,0.8);
}

/* ========================================
   ANIMACIONES SUAVES (SIN PARPADEO EXCESIVO)
======================================== */
.animate__pulse {
    animation: none !important; /* Quitar parpadeo */
}

.animate__heartBeat {
    animation-duration: 3s !important;
}

.animate__tada {
    animation-duration: 3s !important;
}

.animate__flash {
    animation: none !important; /* Quitar parpadeo */
}

/* WhatsApp flotante SIN animación */
.whatsapp-float {
    animation: none !important;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* ========================================
   MEJORAS RESPONSIVE
======================================== */
@media (max-width: 768px) {
    .testimonio-imagen-wrapper {
        height: 250px;
    }
    
    .estudiante-foto-simple img {
        height: 250px;
    }
    
    .video-container-auto video {
        height: 300px !important;
    }
}

@media (max-width: 576px) {
    .testimonio-imagen-wrapper {
        height: 200px;
    }
    
    .estudiante-foto-simple img {
        height: 200px;
    }
}


/* ========================================
   VIDEOS ELEGANTES LADO A LADO
======================================== */
.video-container-elegante {
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
}

.video-container-elegante:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.6);
}

.video-container-elegante video {
    display: block;
    width: 100%;
    border-radius: 15px 15px 0 0;
}

.video-info-elegante {
    padding: 15px;
    background: rgba(0,0,0,0.8);
}

.video-info-elegante h5 {
    margin: 0;
    font-size: 16px;
}


/* ========================================
   BANNER STICKY Y CORRECCIONES
======================================== */
.banner-urgencia {
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.oferta-flotante {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 999;
}

/* Videos clickeables */
.video-container-elegante {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-container-elegante:hover {
    transform: scale(1.02);
}

/* Eliminar espacios en blanco excesivos */
section {
    margin-bottom: 0 !important;
}

.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.py-4 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
}

/* Mejorar responsive */
@media (max-width: 768px) {
    .banner-urgencia {
        font-size: 0.9rem;
    }
    
    .oferta-flotante {
        right: 10px;
        font-size: 0.8rem;
    }
}


/* SECCIÓN DE PAGO DINÁMICA - DISEÑO ELEGANTE */
#metodo_pago_select {
    font-size: 1.05rem;
    font-weight: 500;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: white;
    cursor: pointer;
}

#metodo_pago_select:hover {
    border-color: #6366f1;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.15);
}

#metodo_pago_select:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
    outline: none;
}

#cuenta_pago_container {
    animation: slideInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    margin-top: 25px;
}

#cuenta_pago_container .card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
}

#cuenta_pago_container .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.18);
}

#cuenta_pago_container .card-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px 25px;
    border: none;
}

#cuenta_pago_container .card-header h6 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.5px;
}

#cuenta_pago_container .card-body {
    padding: 30px;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

#imagen_cuenta_container {
    position: relative;
    margin-bottom: 25px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

#imagen_cuenta {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.4s ease;
    border: none;
}

#imagen_cuenta:hover {
    transform: scale(1.03);
}

#imagen_cuenta_container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.05) 100%);
    pointer-events: none;
}

#instrucciones_pago .alert {
    margin-bottom: 0;
    border: none;
    border-radius: 15px;
    padding: 20px 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
}

#instrucciones_pago .alert-warning {
    background: linear-gradient(135deg, #fff3cd 0%, #ffe69c 100%);
    color: #856404;
}

#instrucciones_pago .alert-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
}

#instrucciones_pago .alert-info {
    background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
    color: #0c5460;
}

#instrucciones_pago .alert-primary {
    background: linear-gradient(135deg, #cfe2ff 0%, #b6d4fe 100%);
    color: #084298;
}

#instrucciones_pago h6 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

#instrucciones_pago ol {
    padding-left: 25px;
    margin-bottom: 0;
}

#instrucciones_pago ol li {
    margin-bottom: 12px;
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    padding-left: 5px;
}

#instrucciones_pago ol li::marker {
    font-weight: 700;
}

#instrucciones_pago ol li strong {
    color: inherit;
    font-weight: 700;
}

#voucher_container {
    animation: slideInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
    margin-top: 25px;
    padding: 30px;
    border-radius: 20px;
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 50%, #b1dfbb 100%);
    border: 3px dashed #28a745;
    position: relative;
    overflow: hidden;
}

#voucher_container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translate(-25%, -25%) rotate(0deg); }
    50% { transform: translate(-25%, -25%) rotate(180deg); }
}

#voucher_container label {
    color: #155724;
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}

#voucher_container label i {
    font-size: 1.3rem;
}

#voucher_container small {
    color: #155724;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

#voucher_pago_input {
    border: 3px solid #28a745;
    padding: 15px;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    position: relative;
    z-index: 1;
}

#voucher_pago_input:hover {
    border-color: #1e7e34;
    box-shadow: 0 5px 20px rgba(40, 167, 69, 0.2);
}

#voucher_pago_input:focus {
    border-color: #1e7e34;
    box-shadow: 0 0 0 4px rgba(40, 167, 69, 0.15);
    outline: none;
    transform: translateY(-2px);
}

/* Animaciones elegantes */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Efecto de pulso suave para el contenedor de voucher */
@keyframes softPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
    }
}

#voucher_container {
    animation: slideInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both, softPulse 2s infinite;
}

/* Responsive mejorado */
@media (max-width: 768px) {
    #cuenta_pago_container .card-body {
        padding: 20px;
    }
    
    #imagen_cuenta_container {
        margin-bottom: 20px;
    }
    
    #instrucciones_pago .alert {
        padding: 15px 20px;
    }
    
    #instrucciones_pago ol li {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }
    
    #voucher_container {
        padding: 20px;
        margin-top: 20px;
    }
    
    #voucher_container label {
        font-size: 1.05rem;
    }
    
    #voucher_pago_input {
        padding: 12px;
    }
}

/* Mejoras adicionales para el select de método de pago */
#metodo_pago_select option {
    padding: 12px;
    font-size: 1rem;
}

/* Estilo para el label del método de pago */
.form-label i.fa-credit-card {
    color: #6366f1;
    margin-right: 5px;
}


/* BUSCADOR RÁPIDO DE MATRÍCULA */
.bg-white.border-bottom {
    position: sticky;
    top: 0;
    z-index: 999;
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.bg-white.border-bottom h6 {
    font-weight: 600;
    font-size: 1.1rem;
}

.bg-white.border-bottom .form-control {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.bg-white.border-bottom .form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15);
}

.bg-white.border-bottom .btn {
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.bg-white.border-bottom .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.bg-white.border-bottom .btn-primary {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    border: none;
}

.bg-white.border-bottom .btn-success {
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
    border: none;
}

/* Responsive para buscador */
@media (max-width: 768px) {
    .bg-white.border-bottom {
        position: relative;
    }
    
    .bg-white.border-bottom h6 {
        font-size: 1rem;
        margin-bottom: 10px;
        text-align: center;
    }
    
    .bg-white.border-bottom .col-md-4,
    .bg-white.border-bottom .col-md-8 {
        text-align: center;
    }
    
    .bg-white.border-bottom .btn {
        margin-top: 5px;
    }
}
