/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-purple: #0E455A;
    --primary-pink: #1B7992;
    --gradient-primary: linear-gradient(135deg, #0E455A 0%, #1B7992 100%);
    --gradient-hero: linear-gradient(135deg, #FFFFFF 0%, #1B7992 100%);
    --text-dark: #1F2937;
    --text-gray: #6B7280;
    --text-light: #9CA3AF;
    --white: #FFFFFF;
    --light-bg: #F8FAFC;
    --border-light: #E5E7EB;
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
    --shadow-hover: 0 20px 40px rgba(0,0,0,0.15);
    --border-radius: 10px;
    --border-radius-lg: 15px;
    --transition: all 0.3s ease;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --warning-color: #F59E0B;
    --indigo-color: #6366F1;
    --success-color: #10B981;
    --danger-color: #EF4444;
    
    /* Variables corregidas/agregadas */
    --primary-color: var(--primary-purple);
    --secondary-color: var(--primary-pink);
    --text-secondary: var(--text-gray);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Loading Spinner */
.loading-spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-purple);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Header */
header {
    background: var(--white);
    padding: 15px 0;
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 45px;
    z-index: 1002;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-purple);
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
}

.logo-image {
    height: 40px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    transition: var(--transition);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo-image {
        height: 35px;
        max-width: 120px;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 30px;
        max-width: 100px;
    }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-purple);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.auth-buttons {
    display: flex;
    gap: 15px;
}

.mobile-menu {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-purple);
    cursor: pointer;
    transition: var(--transition);
    z-index: 1003; /* Asegurar que esté por encima de todo */
    position: relative;
}

.mobile-menu:hover {
    transform: scale(1.1);
}

.mobile-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow);
    display: none;
    animation: slideDown 0.3s ease;
    z-index: 1001; /* Asegurar que el menú desplegable sea visible */
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-nav ul {
    list-style: none;
    padding: 20px;
}

.mobile-nav ul li {
    margin-bottom: 15px;
}

.mobile-nav ul li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    display: block;
    padding: 10px 0;
    transition: var(--transition);
}

.mobile-nav ul li a:hover {
    color: var(--primary-purple);
    padding-left: 10px;
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border: 2px solid transparent; /* CAMBIO: de 'border: none;' a 'border: 2px solid transparent;' */
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-family);
}

.btn-outline {
    background: #0E455A; /* CAMBIO: de 'transparent' a '#0E455A' */
    border: 2px solid #0E455A; /* CAMBIO: de 'var(--primary-purple)' a '#0E455A' */
    color: var(--white); /* CAMBIO: de 'var(--primary-purple)' a 'var(--white)' */
}

.btn-outline:hover {
    background: #0A3A47; /* CAMBIO: versión más oscura para hover */
    border-color: #0A3A47;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    background: linear-gradient(135deg, #1B7992 0%, #DB2777 100%);
}

/* WhatsApp Button */
.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    border: 2px solid #25D366;
    position: relative;
    overflow: hidden;
}

.btn-whatsapp:hover {
    background: #128C7E;
    border-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp i {
    font-size: 16px;
    margin-right: 8px;
}

/* Efecto de pulso para el botón de WhatsApp */
.btn-whatsapp::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-whatsapp:hover::before {
    width: 300px;
    height: 300px;
}

/* Hero Section */
.hero {
    background: var(--gradient-hero);
    padding: 120px 0 60px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" style="stop-color:rgb(168,85,247);stop-opacity:0.1"/><stop offset="100%" style="stop-color:rgb(168,85,247);stop-opacity:0"/></radialGradient></defs><circle cx="200" cy="300" r="150" fill="url(%23a)"/><circle cx="800" cy="200" r="100" fill="url(%23a)"/><circle cx="600" cy="700" r="200" fill="url(%23a)"/></svg>');
    z-index: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.video-btn i {
    margin-right: 5px;
}

/* Hero Image Section - Actualizada */
.hero-image {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.student-main-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    z-index: 1;
}

.student-card {
    background: var(--white);
    padding: 15px 20px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    position: absolute;
    animation: float 3s ease-in-out infinite;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 2;
    min-width: 140px;
}

.student-card strong {
    color: var(--primary-purple);
    font-size: 18px;
    font-weight: 700;
}

.card-1 {
    top: 50px;
    right: 50px;
    animation-delay: 0s;
    text-align: center;
}

.card-2 {
    top: 180px;
    right: 20px;
    animation-delay: 1s;
    text-align: center;
}

.card-3 {
    bottom: 80px;
    right: 60px;
    animation-delay: 2s;
    padding: 20px;
}

/* Nuevos estilos para los avatares en la tarjeta 2 */
.student-avatars {
    display: flex;
    gap: -5px;
    justify-content: center;
    margin-top: 8px;
}

.avatar-mini {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -5px;
}

.avatar-mini:nth-child(1) { background: #EC4899; }
.avatar-mini:nth-child(2) { background: #8B5CF6; }
.avatar-mini:nth-child(3) { background: #06B6D4; }
.avatar-mini:nth-child(4) { background: #10B981; }

/* Estilos para la tarjeta 3 (clase de UI) */
.class-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.class-icon {
    font-size: 20px;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #A855F7 0%, #EC4899 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.class-details strong {
    font-size: 14px;
    color: var(--text-dark);
}

.class-details small {
    color: var(--text-gray);
    font-size: 12px;
}

.join-btn {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.join-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(168, 85, 247, 0.4);
}

/* Mejorar la animación de flotación */
@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    50% { 
        transform: translateY(-15px) rotate(1deg); 
    }
}

/* News Ticker - Efecto Infinito */
.news-ticker {
    background: var(--gradient-primary);
    padding: 15px 0;
    overflow: hidden;
    position: relative;
    border-top: 3px solid rgba(255, 255, 255, 0.2);
    border-bottom: 3px solid rgba(255, 255, 255, 0.2);
}

.ticker-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-content {
    display: inline-block;
    animation: scroll-infinite 30s linear infinite;
    white-space: nowrap;
}

.ticker-item {
    display: inline-block;
    margin-right: 80px;
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    opacity: 0.9;
    transition: var(--transition);
}

.ticker-link {
    color: var(--white);
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.ticker-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    text-decoration: none;
    color: var(--white);
}

/* Animación infinita mejorada */
@keyframes scroll-infinite {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Efecto de pausa al hover */
.news-ticker:hover .ticker-content {
    animation-play-state: paused;
}

/* Partners */
.partners {
    background: var(--gradient-primary);
    padding: 40px 0;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.partners-logos span {
    color: var(--white);
    font-size: 18px;
    font-weight: 500;
    opacity: 0.8;
    transition: var(--transition);
}

.partners-logos span:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Search Section */
.search-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.search-box {
    text-align: center;
    margin-bottom: 60px;
}

.search-box h2 {
    font-size: clamp(28px, 4vw, 36px);
    color: var(--text-dark);
    margin-bottom: 30px;
    font-weight: 700;
}

.search-input-container {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    gap: 15px;
    position: relative;
}

.search-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid var(--border-light);
    border-radius: var(--border-radius);
    font-size: 16px;
    transition: var(--transition);
    font-family: var(--font-family);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(107, 70, 193, 0.1);
}

.btn-search {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 15px 30px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-family);
}

.btn-search:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Benefits */
.benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.benefits-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.student-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
    transition: var(--transition);
    cursor: pointer;
}

.avatar-1 { background: linear-gradient(135deg, #EC4899 0%, #A855F7 100%); }
.avatar-2 { background: linear-gradient(135deg, #F59E0B 0%, #EF4444 100%); }
.avatar-3 { background: linear-gradient(135deg, #10B981 0%, #059669 100%); }
.avatar-4 { background: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%); }

.student-avatar:hover {
    transform: scale(1.05) rotate(5deg);
    box-shadow: var(--shadow-hover);
}

.benefits-content h2 {
    font-size: clamp(28px, 4vw, 36px);
    color: var(--text-dark);
    margin-bottom: 40px;
    font-weight: 700;
}

.benefits-content h2 span {
    color: var(--primary-purple);
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.benefit-item:hover {
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateX(10px);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
    font-size: 20px;
}

.icon-1 { background: var(--primary-purple); }
.icon-2 { background: var(--primary-pink); }
.icon-3 { background: #6366F1; }
.icon-4 { background: #EF4444; }

.benefit-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.benefit-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Sección de Cursos */
.courses-section {
    padding: 100px 0; /* Aumentado de 80px a 100px */
    background: var(--light-bg);
}

.courses-section h2 {
    text-align: center;
    font-size: clamp(28px, 4vw, 36px);
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.courses-section p {
    text-align: center;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

/* Popular Courses */
.popular-courses {
    background: var(--gradient-primary);
    padding: 80px 0;
    text-align: center;
}

.popular-courses h2 {
    font-size: clamp(28px, 4vw, 36px);
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
}

.popular-courses p {
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

/* Consolidando estilos de courses-grid */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 30px;
    align-items: stretch; /* AÑADIR esta línea */
}

.course-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-light);
    display: flex; /* AÑADIR esta línea */
    flex-direction: column; /* AÑADIR esta línea */
    height: 100%; /* AÑADIR esta línea */
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.course-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 25px 20px; 
    position: relative;
    min-height: 70px; /
}

.course-header h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    padding-right: 80px;
    line-height: 1.3; 
}

.course-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    backdrop-filter: blur(10px);
}
.course-image-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    background: var(--light-bg);
}

.course-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
    display: block;
}

.course-image:hover {
    transform: scale(1.05);
}

/* Fallback para cuando no hay imagen */
.course-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(168,85,247,0.1) 0%, rgba(236,72,153,0.1) 100%);
    z-index: 1;
}

.course-image-container::after {
    content: '📚';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    opacity: 0.3;
    z-index: 2;
    pointer-events: none;
}

/* Ocultar el ícono cuando hay imagen */
.course-image-container:has(.course-image[src]:not([src=""])):after {
    display: none;
}
.course-badge.new {
    background: #F98D1A;
}

.course-badge.hot {
    background: #EF4444;
}

.course-image {
    height: 200px;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--text-gray);
    position: relative;
    overflow: hidden;
}

.course-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(168,85,247,0.1) 0%, rgba(236,72,153,0.1) 100%);
}

.course-content {
    padding: 20px;
    text-align: left;
}

.course-details {
    padding: 25px;
    flex: 1; /* AÑADIR esta línea */
    display: flex; /* AÑADIR esta línea */
    flex-direction: column; /* AÑADIR esta línea */
}

.course-details p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.course-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
    justify-items: center; /* Centra los elementos horizontalmente */
    align-items: center;   /* Centra los elementos verticalmente */
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding: 15px 12px;
    background: var(--light-bg);
    border-radius: var(--border-radius);
    width: 100%;
    min-height: 80px;
    justify-content: center;
}

.info-item i {
    color: var(--primary-purple);
    font-size: 20px;
    width: auto;
    margin-bottom: 5px;
}

.info-item span {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
}

.course-pricing {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
    padding: 15px;
    background: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 100%);
    border-radius: var(--border-radius);
}

.price-item {
    text-align: center;
}

.price-label {
    display: block;
    font-size: 12px;
    color: var(--text-gray);
    margin-bottom: 5px;
}

.price-value {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-purple);
}

.course-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: auto; /* AÑADIR esta línea */
}

.course-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--primary-purple);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    margin-bottom: 15px;
    font-weight: 500;
}

.course-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
    line-height: 1.3;
}

.course-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: var(--text-gray);
    font-size: 14px;
}

.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--border-light);
}

.course-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
}

.instructor {
    display: flex;
    align-items: center;
    gap: 10px;
}

.instructor-avatar {
    width: 30px;
    height: 30px;
    background: var(--primary-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
}

.instructor span {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 500;
}

.btn-pdf {
    background: #6B7280;
    color: var(--white);
    border: none;
    padding: 12px 16px;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
}

.btn-pdf:hover {
    background: #4B5563;
    transform: translateY(-2px);
}

.btn-enroll {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 12px 16px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
}

.btn-enroll:hover {
    background: linear-gradient(135deg, #1B7992 0%, #DB2777 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.load-more-container {
    margin-top: 50px;
}

/* Modal de Matrícula */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    border-radius: var(--border-radius-lg);
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-hover);
}

.modal-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.modal-header h3 {
    margin: 0;
    font-size: 20px;
}

.close {
    color: var(--white);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.close:hover {
    opacity: 0.7;
}

.modal-body {
    padding: 25px;
}

.course-selected {
    background: var(--light-bg);
    padding: 15px;
    border-radius: var(--border-radius);
    margin-bottom: 25px;
    text-align: center;
}

.course-selected h4 {
    margin: 0 0 10px 0;
    color: var(--primary-purple);
    font-size: 18px;
}

.selected-prices {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.selected-prices span {
    color: var(--text-gray);
    font-size: 14px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-light);
    border-radius: var(--border-radius);
    font-family: var(--font-family);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(107, 70, 193, 0.1);
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
}

.btn-cancel {
    background: #6B7280;
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.btn-cancel:hover {
    background: #4B5563;
}

.btn-submit {
    background: #25D366;
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.btn-submit:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

/* Become Instructor */
.become-instructor {
    padding: 80px 0;
    background: var(--light-bg);
}

.instructor-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.instructor-text h2 {
    font-size: clamp(28px, 4vw, 36px);
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.instructor-text h2 span {
    color: var(--primary-purple);
}

.instructor-text p {
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.6;
}

.instructor-text h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-weight: 600;
}

.perks-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 40px;
}

.perk-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
    padding: 10px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.perk-item:hover {
    background: var(--white);
    box-shadow: var(--shadow);
    color: var(--text-dark);
}

.perk-bullet {
    width: 8px;
    height: 8px;
    background: var(--primary-purple);
    border-radius: 50%;
    flex-shrink: 0;
}

.instructor-image {
    text-align: center;
}

.instructor-avatar-large {
    width: 200px;
    height: 200px;
    background: var(--gradient-primary);
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 48px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.instructor-avatar-large::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: rotate(45deg) translateX(-100%); }
    50% { transform: rotate(45deg) translateX(100%); }
    100% { transform: rotate(45deg) translateX(100%); }
}

.instructor-avatar-large:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}

/* Testimonials */
.testimonials {
    background: var(--gradient-primary);
    padding: 80px 0;
    text-align: center;
}

.testimonials h2 {
    font-size: clamp(28px, 4vw, 36px);
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
}

.testimonials p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    text-align: left;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    flex-shrink: 0;
}

.testimonial-info h4 {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.testimonial-info p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
}

.stars {
    color: #F59E0B;
    margin-bottom: 15px;
    font-size: 14px;
}

.testimonial-text {
    color: var(--text-gray);
    line-height: 1.6;
    font-style: italic;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    color: var(--white);
}

.pagination-btn {
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.3);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.pagination-btn:hover {
    background: var(--white);
    color: var(--primary-purple);
    transform: scale(1.1);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-btn:disabled:hover {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    transform: none;
}

#testimonialCounter {
    font-weight: 600;
    margin: 0 10px;
}

/* Newsletter */
.newsletter {
    background: var(--gradient-primary);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="b" cx="50%" cy="50%"><stop offset="0%" style="stop-color:rgb(255,255,255);stop-opacity:0.1"/><stop offset="100%" style="stop-color:rgb(255,255,255);stop-opacity:0"/></radialGradient></defs><circle cx="100" cy="200" r="150" fill="url(%23b)"/><circle cx="900" cy="800" r="200" fill="url(%23b)"/></svg>');
    z-index: 0;
}

.newsletter-box {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 50px;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.newsletter-box h2 {
    font-size: 28px;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 700;
}

.newsletter-box p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-family: var(--font-family);
    transition: var(--transition);
}

.newsletter-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

.btn-subscribe {
    background: var(--white);
    color: var(--primary-purple);
    padding: 15px 25px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-family);
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-subscribe:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    background: #f8f9ff;
}

/* Estilos para la sección Quiénes Somos */
.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23e2e8f0" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.about-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
}

.about-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.about-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Sección de introducción */
.about-intro {
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-text h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 600;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.intro-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.team-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.intro-image:hover .team-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 30px;
    color: white;
}

.overlay-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.overlay-content i {
    font-size: 1.5rem;
}

.overlay-content span {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Contenedor principal institucional */
.institutional-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

/* Fila superior - Misión y Visión */
.top-cards-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

/* Fila inferior - Valores */
.bottom-card-row {
    display: flex;
    justify-content: center;
}

/* Tarjetas institucionales */
.institutional-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.institutional-card.full-width {
    width: 100%;
    max-width: 800px;
}

.institutional-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.institutional-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Iconos de las tarjetas */
.card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 1.8rem;
}

/* Contenido de las tarjetas */
.card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.card-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
    text-align: justify;
    hyphens: auto;
}

/* Lista de valores */
.values-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    text-align: left;
}

.values-list li {
    padding: 15px;
    background: #f8fafc;
    border-radius: 10px;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.6;
    padding-left: 45px;
}

.values-list li::before {
    content: '✓';
    position: absolute;
    left: 15px;
    top: 15px;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.values-list strong {
    color: var(--primary-color);
}

/* Características diferenciales */
.differential-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    min-width: 20px;
}

.feature-item:hover i {
    color: white;
}

.feature-item span {
    font-size: 0.95rem;
    font-weight: 500;
}

/* Estadísticas */
.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.stat-item {
    background: white;
    padding: 40px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #0E455A 0%, #1B7992 100%);
    padding: 60px 0 30px;
    color: var(--white);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-section ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-brand p {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--white);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--white);
    color: var(--primary-purple);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
    text-align: center;
    color: rgba(255,255,255,0.6);
}

.footer-bottom a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--white);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
    z-index: 1000;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.back-to-top.show {
    display: flex;
    animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-content {
        gap: 40px;
    }
    
    .benefits {
        gap: 40px;
    }
    
    .instructor-content {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .auth-buttons {
        display: none;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .student-main-image {
        max-width: 80%;
        max-height: 300px;
    }
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 200px;
        justify-content: center;
    }

    .hero-image {
        height: 400px;
        margin-top: 40px;
        position: relative;
    }
    
    .student-card {
        position: absolute;
        margin: 0;
        display: block;
        transform: scale(0.8); /* Hacer las tarjetas más pequeñas */
    }
    
    .card-1 {
        top: 20px;
        right: 10px;
    }
    
    .card-2 {
        top: 120px;
        left: 10px;
    }
    
    .card-3 {
        bottom: 20px;
        right: 10px;
    }

    .benefits {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .benefits-image {
        order: -1;
        justify-items: center;
    }

    .instructor-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .perks-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        text-align: left;
    }

    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }

    .search-input-container {
        flex-direction: column;
    }

    .partners-logos {
        gap: 30px;
        font-size: 14px;
    }
    .course-image-container {
        height: 180px;
    }
    
    .course-image-container::after {
        font-size: 36px;
    }
    
    /* Responsive para información de cursos centrada */
    .course-info {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .info-item {
        padding: 12px 10px;
        min-height: 70px;
    }
    
    .info-item i {
        font-size: 18px;
    }
    
    .info-item span {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .course-image-container {
        height: 160px;
    }
    
    .course-image-container::after {
        font-size: 32px;
    }
    .courses-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .student-avatar {
        width: 120px;
        height: 120px;
        font-size: 24px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .btn-whatsapp {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .btn-whatsapp i {
        font-size: 14px;
        margin-right: 6px;
    }

    .ticker-item {
        margin-right: 60px;
        font-size: 14px;
    }
    
    .ticker-link {
        padding: 6px 12px;
        font-size: 14px;
    }
    
    .ticker-content {
        animation-duration: 25s;
    }
    .top-cards-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .institutional-card {
        padding: 30px 20px;
    }
    
    .card-content h3 {
        font-size: 1.3rem;
    }
    
    .card-content p {
        font-size: 0.9rem;
        text-align: center;
    }
    
    .values-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .course-info {
        gap: 10px;
    }
    
    .info-item {
        padding: 10px 8px;
        min-height: 65px;
    }
    
    .info-item i {
        font-size: 16px;
    }
    
    .info-item span {
        font-size: 12px;
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
    .institutional-container {
        gap: 20px;
    }
    
    .institutional-card {
        padding: 25px 15px;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .card-content h3 {
        font-size: 1.2rem;
    }
    
    .values-list li {
        padding: 12px;
        padding-left: 35px;
        font-size: 0.9rem;
    }
    .course-info {
        grid-template-columns: 1fr;
    }
    
    .course-pricing {
        grid-template-columns: 1fr;
    }
    
    .course-actions {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        margin: 2% auto;
        width: 95%;
    }
    
    .form-actions {
        flex-direction: column;
    }

    /* About section responsive */
    .about-section {
        padding: 60px 0;
    }
    
    .about-header h2 {
        font-size: 2.5rem;
    }
    
    .intro-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .intro-text h3 {
        font-size: 1.8rem;
    }
    
    .institutional-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .institutional-card {
        padding: 30px 20px;
        text-align: center; /* NUEVO: Centrar en móviles */
    }
    .institutional-card {
        padding: 25px 15px;
    }
    
    .card-content h3 {
        font-size: 1.3rem;
    }
    
    .card-content p {
        font-size: 0.9rem;
    }
    .card-content p {
        text-align: center; /* NUEVO: Centrar texto en móviles */
    }
    .differential-features {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 90px 0 40px;
    }

    .newsletter-box {
        padding: 30px 20px;
        margin: 0 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image {
        height: 250px; /* Reducir altura en pantallas muy pequeñas */
    }

    .student-card {
        transform: scale(0.7); /* Hacer las tarjetas aún más pequeñas */
        padding: 10px 15px;
    }
    
    .card-1 {
        top: 10px;
        right: 5px;
    }
    
    .card-2 {
        top: 80px;
        left: 5px;
    }
    
    .card-3 {
        bottom: 10px;
        right: 5px;
    }

    .benefits-image {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .student-avatar {
        width: 100px;
        height: 100px;
        font-size: 20px;
    }

    .ticker-item {
        margin-right: 40px;
        font-size: 13px;
    }
    
    .ticker-link {
        padding: 5px 10px;
        font-size: 13px;
    }
    
    .ticker-content {
        animation-duration: 20s;
    }

    .about-header h2 {
        font-size: 2rem;
    }
    
    .intro-text h3 {
        font-size: 1.5rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
}

/* Print Styles */
@media print {
    .mobile-menu,
    .back-to-top,
    .loading-spinner,
    .newsletter,
    header {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .hero {
        padding: 20pt 0;
        background: none !important;
    }
    
    .btn {
        border: 1pt solid #000;
        background: none !important;
        color: #000 !important;
    }
}

/* Barra Superior */
.top-bar {
    background: #0E455A;
    color: white;
    font-size: 14px;
    font-weight: 500;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1001;
    height: 45px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    box-sizing: border-box;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.top-bar-links {
    display: flex;
    gap: 30px;
}

.top-bar-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    padding: 5px 0;
    position: relative;
}

.top-bar-links a:hover {
    opacity: 0.8;
    transform: translateY(-1px);
}

.top-bar-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
}

.top-bar-links a:hover::after {
    width: 100%;
}

.top-bar-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.top-bar-contact i {
    font-size: 12px;
    margin-right: 5px;
}

/* Ajustar el header principal */
header {
    top: 45px;
}

/* Ajustar el hero section */
.hero {
    background: var(--gradient-hero);
    padding: 140px 0 60px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}


/* Responsive para móviles */
@media (max-width: 768px) {
    .top-bar {
        height: auto;
        min-height: 60px;
        padding: 10px 15px;
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        width: 100%;
    }
    
    .top-bar-links {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
        order: 2;
    }
    
    .top-bar-right {
        flex-direction: row;
        gap: 15px;
        align-items: center;
        justify-content: center;
        order: 1;
    }
    
    .social-icons {
        gap: 10px;
        padding-left: 10px;
        border-left: 1px solid rgba(255, 255, 255, 0.3);
        margin-left: 10px;
    }
    
    .top-bar-links a {
        font-size: 12px;
        padding: 3px 6px;
    }
    
    .top-bar-contact {
        font-size: 12px;
    }
    
    .top-bar-contact a {
        font-size: 12px;
        padding: 4px 8px;
    }
    
    .social-icons a {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
    
    /* Ajustar header para móvil */
    header {
        top: 70px; /* Aumentado para dar espacio a la top-bar expandida */
    }
    
    /* Ajustar hero para móvil */
    .hero {
        padding-top: 160px; /* Aumentado para compensar ambas barras */
    }
    
    /* Asegurar que el menú móvil sea visible */
    .mobile-menu {
        display: block;
        z-index: 1003;
        position: relative;
    }
    
    .mobile-nav {
        z-index: 1002;
        top: 100%;
    }
}

@media (max-width: 480px) {
    .top-bar {
        min-height: 75px;
        padding: 8px 10px;
    }
    
    .top-bar-content {
        gap: 8px;
    }
    
    .top-bar-links {
        gap: 12px;
    }
    
    .top-bar-links a {
        font-size: 11px;
        padding: 2px 4px;
    }
    
    .top-bar-contact {
        font-size: 11px;
    }
    
    .top-bar-contact a {
        font-size: 11px;
        padding: 3px 6px;
    }
    
    .social-icons {
        gap: 8px;
        padding-left: 8px;
        margin-left: 8px;
    }
    
    .social-icons a {
        width: 26px;
        height: 26px;
        font-size: 13px;
    }
    
    /* Ajustar header para móvil pequeño */
    header {
        top: 85px;
    }
    
    /* Ajustar hero para móvil pequeño */
    .hero {
        padding-top: 175px;
    }
}

/* Breakpoint adicional para tablets */
@media (max-width: 1024px) and (min-width: 769px) {
    .top-bar {
        padding: 0 30px;
    }
    
    .top-bar-links {
        gap: 25px;
    }
    
    .social-icons {
        gap: 10px;
    }
}

/* Estilos para redes sociales en barra superior */
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-contact a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
}

.top-bar-contact a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    color: white;
}

.top-bar-contact a:active {
    transform: translateY(0);
    background: rgba(255, 255, 255, 0.3);
}

.social-icons {
    display: flex;
    gap: 12px;
    align-items: center;
    padding-left: 15px;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.social-icons a {
    color: white;
    font-size: 16px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Colores específicos para cada red social al hover */
.social-icons a:hover .fa-facebook-f {
    color: #1877F2;
}

.social-icons a:hover .fa-instagram {
    color: #E4405F;
}

.social-icons a:hover .fa-linkedin-in {
    color: #0A66C2;
}

.social-icons a:hover .fa-youtube {
    color: #FF0000;
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .top-bar-right {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
    
    .social-icons {
        gap: 10px;
        padding-left: 0;
        border-left: none;
        padding-top: 8px;
        border-top: 1px solid rgba(255, 255, 255, 0.3);
    }
    
    .social-icons a {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .social-icons {
        gap: 8px;
    }
    
    .social-icons a {
        width: 26px;
        height: 26px;
        font-size: 13px;
    }
}

/* Contenedor principal para los dos cuadros */
.courses-header-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: stretch; /* Cambiar de 'start' a 'stretch' */
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 30px;
}

/* Cuadro de información de oferta académica */
.courses-info-box {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    height: 100%; /* Cambiar min-height por height: 100% */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.courses-info-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.courses-info-box h2 {
    font-size: clamp(24px, 3vw, 32px);
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
    text-align: left;
}

.courses-info-box p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

/* Actualizar estilos del cuadro de búsqueda */
.search-box {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    height: 100%; /* Cambiar min-height por height: 100% */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.search-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.search-box h2 {
    font-size: clamp(20px, 2.5vw, 28px);
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
    text-align: left;
}

/* Responsive para tablets */
@media (max-width: 1024px) {
    .courses-header-container {
        gap: 30px;
        padding: 0 25px; /* AÑADIR esta línea */
    }
    
    .courses-grid { /* AÑADIR todo este bloque */
        gap: 30px;
        padding: 0 25px;
    }
    
    .courses-info-box,
    .search-box {
        padding: 30px;
    }
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .courses-section { /* AÑADIR este bloque */
        padding: 80px 0;
    }
    
    .courses-header-container {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 50px;
        padding: 0 20px; /* AÑADIR esta línea */
    }
    
    .courses-grid { /* AÑADIR todo este bloque */
        gap: 25px;
        margin-top: 50px;
        padding: 0 20px;
    }
    
    .courses-info-box,
    .search-box {
        padding: 25px;
    }
    
    .courses-info-box h2,
    .search-box h2 {
        text-align: center;
    }
    
    .courses-info-box p {
        text-align: center;
    }
}

/* Responsive para móviles pequeños */
@media (max-width: 480px) {
    .courses-header-container {
        padding: 0 15px;
    }
    
    .courses-grid {
        padding: 0 15px;
    }
    
    .courses-info-box,
    .search-box {
        padding: 20px;
    }
}

/* Contenedor para título con ícono */
.title-with-icon {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

/* Ícono de graduación circular parpadeante */
.graduation-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-pink) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(107, 70, 193, 0.3);
    animation: graduationPulse 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

/* Efecto de brillo interno */
.graduation-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(45deg);
    animation: shine 3s linear infinite;
}

/* Animación de pulso para el ícono */
@keyframes graduationPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(107, 70, 193, 0.3);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 6px 25px rgba(107, 70, 193, 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(107, 70, 193, 0.3);
    }
}

/* Animación de brillo */
@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* Efecto hover para el ícono */
.graduation-icon:hover {
    transform: scale(1.15) rotate(10deg);
    animation-play-state: paused;
    cursor: pointer;
}

/* Responsive para tablets */
@media (max-width: 1024px) {
    .graduation-icon {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }
    
    .title-with-icon {
        gap: 12px;
    }
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .title-with-icon {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        text-align: center;
    }
    
    .graduation-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

/* Responsive para móviles pequeños */
@media (max-width: 480px) {
    .graduation-icon {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    .title-with-icon {
        gap: 8px;
    }
}

/* Banner Instructor */
.instructor-banner {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    /* Aquí puedes cambiar la imagen de fondo */
    background-image: url('../images/instructor-banner-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(27, 121, 146, 0.8) 0%, rgba(14, 69, 153, 0.6) 100%);
    z-index: 1;
}

.instructor-banner .container {
    position: relative;
    z-index: 2;
}

.banner-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.banner-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 400;
    font-style: italic;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.banner-subtitle {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.banner-description {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.6;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    opacity: 0.95;
}

.btn-banner {
    display: inline-block;
    padding: 15px 40px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-shadow: none;
}

.btn-banner:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .instructor-banner {
        min-height: 400px;
        background-attachment: scroll;
    }
    
    .banner-content {
        padding: 40px 15px;
    }
    
    .banner-description br {
        display: none;
    }
}

@media (max-width: 480px) {
    .instructor-banner {
        min-height: 350px;
    }
    
    .banner-content {
        padding: 30px 10px;
    }
    
    .btn-banner {
        padding: 12px 30px;
        font-size: 16px;
    }
}
/* Sección Más información */
.more-info-section {
    padding: 80px 0;
    background: #1a1a1a;
    color: white;
}

.more-info-section .section-title {
    text-align: center;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 60px;
    color: white;
}

.info-cards-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card {
    border-radius: 20px;
    padding: 40px;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.contact-card {
    background: white;
    color: #333;
}

.scholarship-card {
    background: linear-gradient(135deg, #F98D1A 0%, #F98D1A 100%);
    color: white;
}

.card-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-title {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.card-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.card-subtitle {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 30px;
}

.card-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: auto;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    letter-spacing: 0.5px;
}

.btn-dark {
    background: #333;
    color: white;
}

.btn-dark:hover {
    background: #555;
    transform: translateY(-2px);
}

.btn-orange {
    background: #1B7992;
    color: white;
}

.btn-orange:hover {
    background: #1B7992;
    transform: translateY(-2px);
}

.btn-call {
    background: #333;
    color: white;
    width: 100%;
    margin-top: 20px;
}

.btn-call:hover {
    background: #555;
    transform: translateY(-2px);
}

/* Formulario de Becas */
.scholarship-form {
    margin-top: auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: rgb(14, 69, 90);
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input::placeholder {
    color: rgba(5, 5, 5, 0.7);
}

.form-group input:focus {
    border-bottom-color: white;
}

.form-group input:valid {
    border-bottom-color: rgba(14, 69, 90, 0.8);
}

/* Responsive Design */
@media (max-width: 768px) {
    .info-cards-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .info-card {
        padding: 30px 20px;
        min-height: 400px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .card-buttons {
        gap: 12px;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .more-info-section {
        padding: 60px 0;
    }
    
    .info-card {
        padding: 25px 15px;
        min-height: 350px;
    }
    
    .more-info-section .section-title {
        margin-bottom: 40px;
    }
}

/* Banner Slider */
.banner-slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin-bottom: 80px;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.slide-text {
    max-width: 600px;
    padding: 0 20px;
    animation: slideInUp 1s ease-out;
}

.slide.active .slide-text {
    animation: slideInUp 1s ease-out;
}

.slide-text h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slide-text p {
    font-size: clamp(16px, 2.5vw, 20px);
    margin-bottom: 30px;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.btn-cta {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 15px 30px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(14, 69, 90, 0.3);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(168, 85, 247, 0.4);
    text-decoration: none;
    color: white;
}

/* Controles de navegación */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(119, 166, 86, 0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    z-index: 10;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

.slider-btn i {
    font-size: 18px;
}

/* Indicadores */
.slider-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background: white;
    transform: scale(1.2);
}

/* Animaciones */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .banner-slider {
        height: 400px;
        margin-bottom: 60px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
    }
    
    .slider-btn.prev {
        left: 10px;
    }
    
    .slider-btn.next {
        right: 10px;
    }
    
    .slide-text {
        padding: 0 15px;
    }
    
    .btn-cta {
        padding: 12px 24px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .banner-slider {
        height: 300px;
        margin-bottom: 40px;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
    }
    
    .slider-btn i {
        font-size: 14px;
    }
}