@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --primary: #00d4ff;
    --primary-dark: #0099cc;
    --dark-bg: #0a0a1a;
    --card-bg: rgba(18, 18, 40, 0.7);
    --card-border: rgba(255, 255, 255, 0.08);
    --text-primary: #ffffff;
    --text-secondary: #a0a0c0;
    --text-muted: #6b6b8d;
    --success: #10b981;
    --whatsapp: #25D366;
    --whatsapp-dark: #128C7E;
    --whatsapp-bg: #075E54;
    --gradient-1: linear-gradient(135deg, #00d4ff 0%, #3b82f6 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark-bg);
    color: var(--text-secondary);
    overflow-x: hidden;
}

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

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(100%); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideOutRight {
    from { opacity: 1; transform: translateX(0); }
    to { opacity: 0; transform: translateX(100%); }
}

@keyframes slideInUp {
    from { opacity: 0; transform: translateY(100%); }
    to { opacity: 1; transform: translateY(0); }
}

/* ANIMACIÓN DEL LOGO - LETRA POR LETRA */
@keyframes letterAppear {
    0% {
        opacity: 0;
        transform: translateY(20px) rotate(5deg);
        filter: blur(5px);
    }
    20% {
        opacity: 0.3;
        transform: translateY(10px) rotate(2deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotate(0deg);
        filter: blur(0);
    }
}

.navbar-brand {
    display: inline-flex;
    gap: 2px;
    font-size: 1.5rem;
    font-weight: 800;
    background: transparent;
    -webkit-background-clip: unset;
    background-clip: unset;
    color: transparent !important;
    letter-spacing: -0.5px;
}

.logo-letter {
    display: inline-block;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: 0;
    animation: letterAppear 0.5s ease forwards;
}

.logo-letter:nth-child(1) { animation-delay: 0.0s; }
.logo-letter:nth-child(2) { animation-delay: 0.1s; }
.logo-letter:nth-child(3) { animation-delay: 0.2s; }
.logo-letter:nth-child(4) { animation-delay: 0.3s; }
.logo-letter:nth-child(5) { animation-delay: 0.4s; }
.logo-letter:nth-child(6) { animation-delay: 0.5s; }
.logo-letter:nth-child(7) { animation-delay: 0.6s; }

.footer-title {
    display: inline-flex;
    gap: 2px;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.footer-logo-letter {
    display: inline-block;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: 0;
    animation: letterAppear 0.5s ease forwards;
}

.footer-logo-letter:nth-child(1) { animation-delay: 0.0s; }
.footer-logo-letter:nth-child(2) { animation-delay: 0.1s; }
.footer-logo-letter:nth-child(3) { animation-delay: 0.2s; }
.footer-logo-letter:nth-child(4) { animation-delay: 0.3s; }
.footer-logo-letter:nth-child(5) { animation-delay: 0.4s; }
.footer-logo-letter:nth-child(6) { animation-delay: 0.5s; }
.footer-logo-letter:nth-child(7) { animation-delay: 0.6s; }

.logo-letter:hover, .footer-logo-letter:hover {
    transform: scale(1.1);
    transition: transform 0.2s ease;
    cursor: pointer;
}

/* NAVBAR */
.navbar {
    background: rgba(10, 10, 26, 0.95) !important;
    backdrop-filter: blur(20px);
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-link {
    font-weight: 500;
    font-size: 0.9rem;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    color: var(--text-secondary) !important;
}

.nav-link:hover { color: var(--primary) !important; transform: translateY(-2px); }

.btn-login-nav {
    background: rgba(0, 212, 255, 0.1);
    border-radius: 50px !important;
    padding: 0.4rem 1.2rem !important;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.btn-login-nav:hover { background: var(--primary); color: #000 !important; }

/* Language Switcher */
.language-switch {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    padding: 3px;
    display: flex;
    gap: 3px;
    margin-right: 1rem;
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 5px 12px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn.active {
    background: var(--gradient-1);
    color: #000;
}

.lang-btn:hover:not(.active) {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

/* HERO con video de fondo */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(1.1) contrast(0.9) saturate(1.1);
    opacity: 0.7;
    transform: scale(1.02);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(10, 10, 26, 0.8) 0%, 
        rgba(10, 10, 26, 0.6) 50%,
        rgba(0, 212, 255, 0.05) 100%);
    z-index: 1;
}

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

.hero-badge {
    display: inline-block;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 212, 255, 0.4);
    border-radius: 50px;
    padding: 0.3rem 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 1.2rem;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-primary);
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 90%;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.6;
}

/* Buttons */
.btn {
    border-radius: 50px;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--gradient-1);
    border: none;
    color: #000;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.3);
}

.btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    transform: translateY(-3px);
}

/* Section Headers */
.section-badge {
    display: inline-block;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50px;
    padding: 0.25rem 0.8rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.8rem;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: clamp(1.6rem, 4vw, 2rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 0.9rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Feature Cards */
.features { padding: 4rem 0; }

.feature-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 1.5rem 1.2rem;
    transition: all 0.4s ease;
    height: 100%;
    animation: fadeInUp 0.5s ease backwards;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-icon i { font-size: 1.4rem; color: #000; }

.feature-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Steps Section */
.steps-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 212, 255, 0.03) 100%);
}

.steps-wrapper { overflow-x: auto; padding: 1rem 0; }
.steps-container { display: flex; align-items: center; justify-content: center; gap: 0; min-width: min-content; }

.step-item {
    background: rgba(18, 18, 40, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.2rem;
    min-width: 170px;
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeInUp 0.5s ease backwards;
}

.step-item:hover {
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-4px);
    background: rgba(18, 18, 40, 0.8);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.8rem;
    font-weight: 800;
    font-size: 1.1rem;
    color: #000;
}

.step-content h5 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
}

.step-content p {
    font-size: 0.7rem;
    color: var(--text-secondary);
    margin: 0;
}

.step-arrow { margin: 0 0.5rem; }
.step-arrow i { font-size: 1rem; color: var(--text-muted); }

/* Plans Section */
.planes { padding: 4rem 0; }

.plan-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 1.5rem 1.2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    height: 100%;
    animation: fadeInUp 0.5s ease backwards;
    overflow: visible;
}

.plan-card:nth-child(1) { animation-delay: 0.1s; }
.plan-card:nth-child(2) { animation-delay: 0.2s; }
.plan-card:nth-child(3) { animation-delay: 0.3s; }
.plan-card:nth-child(4) { animation-delay: 0.4s; }

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.08), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.plan-card:hover::before { left: 100%; }
.plan-card:hover { transform: translateY(-8px) scale(1.02); border-color: rgba(0, 212, 255, 0.4); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4); }
.plan-card.popular { border: 2px solid var(--primary); transform: scale(1.02); }
.plan-card.popular:hover { transform: translateY(-8px) scale(1.04); }

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-1);
    color: #000;
    padding: 5px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    white-space: nowrap;
    animation: pulse 2s infinite;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    letter-spacing: 0.5px;
    border: 1px solid rgba(255,255,255,0.3);
}

.plan-card.popular { padding-top: 1.5rem; }

.badge-demo {
    display: inline-block;
    background: var(--success);
    color: #000;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 700;
    margin-top: 0.3rem;
}

.plan-header h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 1rem 0;
    transition: all 0.3s ease;
}

.plan-card:hover .price { transform: scale(1.03); color: var(--primary); }
.price span { font-size: 0.8rem; font-weight: 400; color: var(--text-muted); }

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.plan-features li {
    padding: 0.4rem 0;
    color: var(--text-secondary);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.plan-card:hover .plan-features li { transform: translateX(4px); }
.plan-features li i { color: var(--primary); font-size: 0.75rem; transition: all 0.3s ease; }
.plan-card:hover .plan-features li i { transform: scale(1.15); color: #00ffaa; }

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    border-radius: 50px;
    padding: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline:hover { border-color: var(--primary); background: rgba(0, 212, 255, 0.1); }

/* Horario */
.schedule-card {
    background: rgba(18, 18, 40, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 16px;
    padding: 0.8rem 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    width: auto;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.schedule-card:hover { border-color: var(--primary); background: rgba(18, 18, 40, 0.8); }
.schedule-icon { font-size: 1.5rem; color: var(--primary); }
.schedule-info { text-align: left; }
.schedule-title { font-size: 0.8rem; font-weight: 600; color: var(--text-primary); margin: 0 0 0.2rem 0; }
.schedule-hours { font-size: 0.75rem; color: var(--text-secondary); margin: 0; font-weight: 500; }
.schedule-timezone { font-size: 0.65rem; color: var(--text-muted); margin: 0.2rem 0 0 0; }

/* FOOTER */
footer {
    background: rgba(5, 5, 15, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 2rem;
}

.footer-description { font-size: 0.75rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 0.8rem; }
.social-links { display: flex; gap: 0.8rem; }
.social-links a {
    width: 30px; height: 30px; background: rgba(255, 255, 255, 0.05);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: var(--text-secondary); transition: all 0.3s ease;
}
.social-links a:hover { background: var(--primary); color: #000; transform: translateY(-2px); }
.footer-heading { font-size: 0.85rem; font-weight: 600; color: var(--text-primary); margin-bottom: 0.8rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.4rem; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.75rem; transition: all 0.3s ease; }
.footer-links a:hover { color: var(--primary); padding-left: 4px; }
.footer-divider { border-color: rgba(255, 255, 255, 0.05); margin: 1rem 0; }
.copyright { color: var(--text-muted); font-size: 0.7rem; margin: 0; }

/* COOKIE BANNER */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 26, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    padding: 0.8rem 0;
    z-index: 1100;
    animation: slideInUp 0.4s ease;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.cookie-text { display: flex; align-items: center; gap: 0.8rem; flex: 1; }
.cookie-text i { font-size: 1.4rem; color: var(--primary); }
.cookie-text strong { color: var(--text-primary); font-size: 0.8rem; display: block; }
.cookie-text p { color: var(--text-muted); font-size: 0.7rem; margin: 0; }
.cookie-buttons { display: flex; gap: 0.5rem; }
.cookie-buttons .btn-sm { padding: 0.3rem 0.8rem; font-size: 0.7rem; }

/* Cookie Settings */
.cookie-option { padding: 0.8rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
.cookie-option:last-child { border-bottom: none; }
.cookie-option-header { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 0.3rem; }
.cookie-option p { font-size: 0.7rem; color: var(--text-muted); margin: 0 0 0 2.5rem; }

.switch {
    position: relative;
    display: inline-block;
    width: 42px;
    height: 20px;
}

.switch input { opacity: 0; width: 0; height: 0; }
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
}
.slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
}
input:checked + .slider { background-color: var(--primary); }
input:checked + .slider:before { transform: translateX(22px); }
input:disabled + .slider { opacity: 0.5; cursor: not-allowed; }
.slider.round { border-radius: 34px; }
.slider.round:before { border-radius: 50%; }

/* WHATSAPP */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    background-color: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    animation: float 2s ease-in-out infinite;
    cursor: pointer;
}

.whatsapp-float:hover { background-color: var(--whatsapp-dark); transform: scale(1.1); }
.whatsapp-tooltip {
    position: absolute;
    right: 60px;
    background: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; visibility: visible; transform: translateX(-8px); }

/* WhatsApp Chat Modal */
.whatsapp-chat-modal {
    position: fixed;
    bottom: 85px;
    right: 25px;
    width: 340px;
    max-width: calc(100vw - 40px);
    background: white;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    z-index: 999;
    display: none;
    animation: slideInRight 0.3s ease forwards;
    overflow: hidden;
}
.whatsapp-chat-modal.active { display: block; }
.whatsapp-chat-modal.closing { animation: slideOutRight 0.3s ease forwards; }
.whatsapp-chat-container { display: flex; flex-direction: column; height: 450px; max-height: 70vh; }
.whatsapp-chat-header {
    background: var(--whatsapp-bg);
    color: white;
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.whatsapp-chat-header-info { display: flex; align-items: center; gap: 10px; }
.whatsapp-avatar {
    width: 38px; height: 38px; background: var(--whatsapp);
    border-radius: 50%; display: flex; align-items: center;
    justify-content: center; font-size: 1.4rem;
}
.whatsapp-chat-header-info h4 { margin: 0; font-size: 0.9rem; }
.whatsapp-chat-header-info p { margin: 0; font-size: 0.65rem; opacity: 0.8; }
.whatsapp-chat-close { background: none; border: none; color: white; cursor: pointer; }
.whatsapp-chat-body {
    flex: 1;
    background: #E5DDD5;
    padding: 15px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.whatsapp-message { display: flex; justify-content: flex-start; }
.whatsapp-message.received .message-content {
    background: white;
    border-radius: 8px 8px 8px 0;
    padding: 8px 12px;
    max-width: 80%;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}
.whatsapp-message.received .message-content p { margin: 0 0 3px 0; font-size: 0.8rem; }
.whatsapp-message.received .message-content small { font-size: 0.6rem; color: #666; }
.whatsapp-chat-footer { background: #f0f0f0; padding: 10px 12px; }
.whatsapp-chat-footer form { display: flex; gap: 8px; align-items: center; }
.whatsapp-chat-footer input {
    flex: 1; padding: 8px 12px; border: none;
    border-radius: 20px; font-size: 0.8rem; outline: none;
}
.whatsapp-chat-footer button {
    background: var(--whatsapp); border: none; width: 34px; height: 34px;
    border-radius: 50%; color: white; cursor: pointer;
}
.whatsapp-charter { font-size: 0.6rem; text-align: center; margin-top: 6px; color: #888; }

/* Modal General */
.modal-content {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--card-border);
    border-radius: 24px;
}
.modal-title { font-size: 1.2rem; color: var(--text-primary); font-weight: 600; }
.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    color: var(--text-primary);
}
.form-control:focus { background: rgba(255, 255, 255, 0.08); border-color: var(--primary); box-shadow: none; }
.form-control::placeholder { color: var(--text-muted); }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark-bg); }
::-webkit-scrollbar-thumb { background: var(--primary-dark); border-radius: 3px; }

/* Responsive */
@media (max-width: 1200px) {
    .steps-container { justify-content: flex-start; padding: 0 1rem; }
    .step-item { min-width: 160px; }
}
@media (max-width: 768px) {
    .steps-container { flex-direction: column; gap: 0.8rem; }
    .step-arrow { transform: rotate(90deg); margin: 0; }
    .step-item { width: 100%; max-width: 260px; }
    .hero-subtitle { max-width: 100%; }
    .language-switch { margin-right: 0; }
    .lang-btn { padding: 3px 8px; font-size: 0.7rem; }
    .whatsapp-chat-modal { width: 300px; bottom: 75px; right: 10px; }
    .cookie-content { flex-direction: column; text-align: center; }
    .cookie-text { flex-direction: column; text-align: center; }
    .cookie-buttons { justify-content: center; }
    .schedule-card { flex-direction: column; text-align: center; padding: 0.8rem; gap: 0.4rem; width: 100%; }
    .schedule-info { text-align: center; }
}
@media (max-width: 992px) {
    .plan-card.popular { transform: scale(1); }
}

/* CORRECCIÓN PARA EL FORMULARIO DE CONTACTO - VISIBILIDAD DEL TEXTO */
.modal-body .form-control,
.modal-body input,
.modal-body textarea,
.modal-body select {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.modal-body .form-control:focus,
.modal-body input:focus,
.modal-body textarea:focus,
.modal-body select:focus {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: var(--primary) !important;
    color: #ffffff !important;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.2);
}

.modal-body .form-control::placeholder,
.modal-body input::placeholder,
.modal-body textarea::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

.modal-body select option {
    background: #1a1a2e;
    color: #ffffff;
}

/* Asegurar que el texto sea visible mientras se escribe */
.modal-body input:active,
.modal-body input:focus,
.modal-body textarea:active,
.modal-body textarea:focus {
    color: #ffffff !important;
    caret-color: var(--primary);
}

/* Estilo para el texto seleccionado */
.modal-body .form-control::selection,
.modal-body input::selection,
.modal-body textarea::selection {
    background: rgba(0, 212, 255, 0.3);
    color: #ffffff;
}

/* Estilos específicos para el select de países */
#contactPaisCodigo {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    color: var(--text-primary);
    cursor: pointer;
}

#contactPaisCodigo option {
    background: #1a1a2e;
    color: #fff;
    padding: 10px;
}

#contactPaisCodigo optgroup {
    background: #0a0a1a;
    color: #00d4ff;
    font-weight: 600;
    font-size: 0.75rem;
}

#contactPaisCodigo optgroup option {
    padding-left: 20px;
    color: #a0a0c0;
}

#contactTelefono {
    width: 60% !important;
}

/* Ajuste responsive para el select de países */
@media (max-width: 576px) {
    .position-relative {
        width: 45% !important;
    }
    #contactTelefono {
        width: 55% !important;
    }
}