   
        :root {
            --primary-color: #6a11cb;
            --secondary-color: #2575fc;
            --background-color: #1a1a2e;
            --text-color: #f0f0f0;
            --accent-color: #e94560;
            --card-bg: #21213f;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--background-color);
            color: var(--text-color);
            line-height: 1.6;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        h1, h2, h3 {
            font-weight: 700;
            line-height: 1.2;
        }

        h2 {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 60px;
            color: var(--text-color);
        }

        a {
            text-decoration: none;
            color: var(--text-color);
            transition: color 0.3s;
        }

        a:hover {
            color: var(--accent-color);
        }

        .btn {
            display: inline-block;
            padding: 12px 25px;
            border-radius: 50px;
            font-weight: 600;
            transition: transform 0.3s, background-color 0.3s;
        }

        .btn:hover {
            transform: translateY(-5px);
        }

        .btn-primary {
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            color: #fff;
            border: none;
        }

        .btn-secondary {
            background-color: transparent;
            color: var(--text-color);
            border: 2px solid var(--text-color);
        }
        
        /* HEADER */
        .header {
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            z-index: 100;
            padding: 20px 0;
            transition: background-color 0.4s ease, box-shadow 0.4s ease;
        }

        .header.scrolled {
            background-color: rgba(26, 26, 46, 0.9);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            backdrop-filter: blur(5px);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            background: -webkit-linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .nav-links {
            list-style: none;
            display: flex;
            gap: 40px;
        }

        .nav-link a {
            font-weight: 600;
            position: relative;
        }

        .nav-link a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            bottom: -5px;
            left: 0;
            transition: width 0.3s;
        }

        .nav-link a:hover::after {
            width: 100%;
        }

        .nav-link.active a::after {
            width: 100%;
        }

        .nav-button {
            margin-left: 20px;
        }
.mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-color);
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
            z-index: 101;
            transition: color 0.3s;
        }

        .mobile-menu-toggle:hover {
            color: var(--primary-color);
        }

        .mobile-menu-toggle i {
            pointer-events: none;
        }
        
        .language-selector {
            position: relative;
            margin-left: 20px;
        }

        .language-button {
            background-color: transparent;
            color: var(--text-color);
            border: 2px solid var(--text-color);
            padding: 8px 15px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            transition: background-color 0.3s, color 0.3s;
        }
        
        .language-button:hover {
            background-color: var(--primary-color);
            color: #fff;
        }

        .language-dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            background-color: var(--card-bg);
            border-radius: 5px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            list-style: none;
            padding: 10px 0;
            margin-top: 10px;
            min-width: 120px;
            display: none;
            flex-direction: column;
            gap: 5px;
        }

        .language-selector.active .language-dropdown {
            display: flex;
        }

        .language-dropdown li a {
            padding: 8px 20px;
            display: block;
            color: var(--text-color);
            font-weight: 500;
            transition: background-color 0.3s;
        }
        
        .language-dropdown li a:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        /* HERO */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background-image: url('https://images.unsplash.com/photo-1549692520-acc6669f6e1f?q=80&w=2940&auto=format&fit=crop');
            background-size: cover;
            background-position: center;
            position: relative;
            padding: 20px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(26, 26, 46, 0.8);
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            background: -webkit-linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1.2;
        }

        .hero-content h1 span {
            color: var(--text-color);
            -webkit-text-fill-color: var(--text-color);
            font-weight: 700;
        }

        .hero-content p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto 30px;
        }

        .hero-badges {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }

        .badge {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
        }

        /* SERVICES */
        .services {
            padding: 80px 0;
            background-color: #f8f8f8;
            color: #333;
        }
        
        .services h2 {
            color: #333;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background-color: #fff;
            padding: 40px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }

        .service-card:hover {
            transform: translateY(-10px);
        }

        .service-icon {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        .service-card .price {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--accent-color);
            margin-bottom: 15px;
        }

        .service-card ul {
            list-style: none;
            text-align: left;
            margin-top: 20px;
        }

        .service-card li {
            margin-bottom: 10px;
        }

        .service-card li i {
            color: var(--secondary-color);
            margin-right: 10px;
        }

        /* PROCESS */
        .process {
            padding: 80px 0;
            background-color: var(--background-color);
        }

        .process h2 {
            color: var(--text-color);
        }

        .process-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            text-align: center;
        }

        .process-step {
            background-color: var(--card-bg);
            padding: 30px;
            border-radius: 10px;
            border-top: 5px solid var(--primary-color);
            transition: transform 0.3s;
        }

        .process-step:hover {
            transform: translateY(-10px);
        }

        .process-step .step-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .process-step h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        .process-step p {
            color: #ccc;
        }
        
        /* SOLICITUD */
        .solicitud {
            padding: 80px 0;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            color: #fff;
            text-align: center;
        }
        
        .solicitud h2 {
            color: #fff;
        }

        .solicitud-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .solicitud p {
            font-size: 1.1rem;
            margin-bottom: 40px;
        }
		
		@media (max-width: 768px) {
	        .solicitud h2,P {
	            padding-left: 20px;
				padding-right: 20px;
	        }
		}

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 5px;
            text-align: left;
        }

        .form-group input, .form-group textarea {
            width: 100%;
            padding: 15px;
            border: none;
            border-radius: 8px;
            background-color: rgba(255, 255, 255, 0.2);
            color: #fff;
            font-size: 1rem;
            transition: background-color 0.3s;
        }

        .form-group input::placeholder, .form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }

        .form-group input:focus, .form-group textarea:focus {
            outline: none;
            background-color: rgba(255, 255, 255, 0.3);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 150px;
        }

        .solicitud button {
            width: 100%;
            border: none;
            padding: 15px;
            font-size: 1.1rem;
            cursor: pointer;
            background-color: var(--accent-color);
            color: #fff;
            border-radius: 8px;
            font-weight: 600;
            transition: background-color 0.3s;
        }

        .solicitud button:hover {
            background-color: #c9354f;
        }
        
        /* ABOUT */
        .about {
            padding: 80px 0;
            background-color: var(--background-color);
            color: var(--text-color);
        }

        .about-container {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .about-content {
            flex: 1;
            padding:20px;
             
        }

        .about-content h2 {
            text-align: center;
            margin-bottom: 30px;
            
        }

        .about-content p {
              max-width: 800px;
              margin-left: auto;
              margin-right:auto;
            margin-bottom: 20px;
            line-height: 1.8;
            color: #ccc;
            text-align: center;
        }

        .about-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 40px;
            max-width: 800px;
              margin-left: auto;
              margin-right:auto;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            background: -webkit-linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: block;
        }

        .stat-label {
            font-size: 1rem;
            color: #999;
            display: block;
        }

        .about-visual {
            flex: 1;
            padding: 40px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 10px;
            text-align: center;
            color: #fff;
            margin-left:20px;
            margin-right:20px;
            margin-top:20px;
        }

        .about-visual h3 {
            font-size: 2rem;
            margin-bottom: 15px;
        }

        /* TESTIMONIOS */
        .testimonios {
            padding: 80px 0;
            background-color: #f7f7f7;
            color: #333;
        }

        .testimonios .title {
            font-size: 2.5rem;
            color: #333;
            text-align: center;
            margin-bottom: 50px;
        }
        
        .testimonios-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            justify-content: center;
        }

        .testimonio-card {
            background-color: #fff;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .testimonio-card:hover {
            transform: translateY(-10px);
        }

        .testimonio-card p {
            font-size: 1.1rem;
            color: #555;
            font-style: italic;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .author-info {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .author-photo {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin-right: 15px;
            object-fit: cover;
        }

        .author-details {
            text-align: left;
        }

        .author-name {
            display: block;
            font-size: 1rem;
            font-weight: bold;
            color: #333;
        }

        .author-title {
            font-size: 0.9rem;
            color: #777;
        }

        /* FOOTER */
        .footer {
            background-color: #111;
            color: #ccc;
            padding: 60px 0 20px;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section {
            flex: 1;
            min-width: 200px;
        }

        .footer-section h4 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: #fff;
        }

        .footer-section p {
            font-size: 0.9rem;
            line-height: 1.8;
            color: #aaa;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #aaa;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--primary-color);
        }

        .footer-bottom {
            text-align: center;
            border-top: 1px solid #333;
            padding-top: 20px;
            font-size: 0.9rem;
        }

        .footer-bottom p {
            margin: 5px 0;
            color: #777;
        }

        /* MEDIA QUERIES */
        @media (max-width: 768px) {
            /* Mostrar botón hamburguesa */
            .mobile-menu-toggle {
                display: block;
            }

            /* Menú lateral deslizable */
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                max-width: 300px;
                height: 100vh;
                background: var(--card-bg);
                flex-direction: column;
                justify-content: flex-start;
                padding: 100px 30px 30px;
                gap: 20px;
                transition: right 0.4s ease;
                z-index: 100;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
                overflow-y: auto;
            }

            .nav-links.active {
                right: 0;
            }

            /* Overlay oscuro cuando el menú está abierto */
            
            .nav-links.active::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

/* Ajustes adicionales para móvil */
            
            /* Ajustar header en móvil */
            .header {
                padding: 15px 0;
            }
            
            .nav-container {
                gap: 15px;
                flex-wrap: nowrap;
            }
            
            .logo {
                font-size: 1.3rem;
                flex-shrink: 0;
            }
            
            /* Espaciado automático para empujar los botones a la derecha */
            nav {
                margin-left: auto;
                display: flex;
                align-items: center;
                gap: 10px;
            }
            
            /* Botón de solicitud más pequeño en móvil */
            .nav-button {
                padding: 8px 15px;
                font-size: 0.9rem;
                white-space: nowrap;
               
            }
            
            /* Ocultar selector de idioma en móvil (ya está en el menú) */
            .language-selector {
               // display: none;
            }

            /* HERO - Más espacio arriba */
            .hero {
                padding-top: 100px;
                min-height: 90vh;
            }

            .hero-content h1 {
                font-size: 2rem;
                margin-bottom: 15px;
                line-height: 1.3;
            }
            
            .hero-content p {
                font-size: 1rem;
                margin-bottom: 20px;
            }

            .hero-badges {
                flex-direction: row;
                gap: 10px;
                margin-bottom: 25px;
            }
            
            .badge {
                font-size: 0.8rem;
                padding: 6px 12px;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 15px;
            }
            
            .hero-buttons .btn {
                width: 100%;
                max-width: 300px;
            }

            .nav-link {
                width: 100%;
                text-align: center;
                padding: 15px 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .nav-link:last-child {
                border-bottom: none;
            }

            .nav-link a {
                font-size: 1.1rem;
                display: block;
            }

            /* Botón de solicitud en el menú móvil */
            .nav-button {
                margin: 20px 0 0 0;
                text-align: center;
                display: none;
                width: 100%;
            }

            /* Selector de idioma en móvil */
            .language-selector {
                margin: 20px auto 0;
                width: 100%;
            }

            .language-button {
                width: 100%;
            }

            .hero-content h1 {
                font-size: 2rem;
            }

            .hero-badges {
                flex-direction: column;
                gap: 10px;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 15px;
            }

            .about-container {
                flex-direction: column;
                text-align: center;
            }

            .about-content h2 {
                text-align: center;
            }

            .about-stats {
                grid-template-columns: 1fr;
            }

            .footer-content {
                flex-direction: column;
                text-align: center;
            }
        }
        
        /* FAQ Section */
        .faq {
            padding: 80px 20px;
            background: #f8f8f8;
        }

        .faq .section-title {
            text-align: center;
            font-size: 2rem;
            margin-bottom: 50px;
            color: #333;
        }

        .faq-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .faq-item {
            background: #fff;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.06);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .faq-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 16px rgba(0,0,0,0.12);
        }

        .faq-item h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: #2575fc;
        }

        .faq-item p {
            color: #555;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        @media (max-width: 768px) {
            .faq-grid {
                grid-template-columns: 1fr;
            }
        }
.testimony-link {
            text-align: center;
            margin-top: 30px;
        }

        .testimony-link .btn-primary {
            padding: 10px 20px;
            font-size: 1rem;
            border-radius: 50px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }/* ==================== CHATBOT ==================== */
#chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
    font-family: 'Poppins', sans-serif;
}

.chatbot-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(106, 17, 203, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(106, 17, 203, 0.6);
}

.chatbot-button.pulse {
    animation: chatbot-pulse 2s infinite;
}

@keyframes chatbot-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(106, 17, 203, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(106, 17, 203, 0.8); }
}

.chatbot-window {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 380px;
    height: 550px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.chatbot-window.active {
    display: flex;
    animation: chatbot-open 0.3s ease;
}

@keyframes chatbot-open {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.chatbot-header {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.chatbot-close-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.chatbot-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.chatbot-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chatbot-messages::-webkit-scrollbar {
    width: 6px;
}

.chatbot-messages::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.chatbot-message {
    display: flex;
    gap: 10px;
    animation: message-in 0.3s ease;
}

@keyframes message-in {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.message-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
}

.message-content {
    max-width: 75%;
}

.message-content p {
    margin: 0;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.5;
}

.bot-message .message-content p {
    background: white;
    color: #333;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-bottom-left-radius: 4px;
}

.user-message {
    flex-direction: row-reverse;
}

.user-message .message-avatar {
    background: #e94560;
}

.user-message .message-content {
    display: flex;
    justify-content: flex-end;
}

.user-message .message-content p {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: white;
    border-bottom-right-radius: 4px;
}

.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 12px 16px;
    background: white;
    border-radius: 12px;
    width: fit-content;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #aaa;
    animation: typing-dot 1.4s infinite;
}

.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing-dot {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.7; }
    30% { transform: translateY(-10px); opacity: 1; }
}

.chatbot-input-form {
    display: flex;
    gap: 10px;
    padding: 15px 20px;
    background: white;
    border-top: 1px solid #e0e0e0;
}

.chatbot-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
}

.chatbot-input:focus {
    border-color: #6a11cb;
}

.chatbot-send-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}

.chatbot-send-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(106, 17, 203, 0.3);
}

.chatbot-send-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .chatbot-window {
        width: calc(100vw - 30px);
        height: calc(100vh - 150px);
        bottom: 80px;
        right: 15px;
    }
    
    .chatbot-button {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
}
/* Tu CSS existente... */
        }
    }

    /* ========== BANNER DE COOKIES ========== */
    .cookie-banner {
        position: fixed;
        bottom: 0;
        /* ... resto del CSS de cookies ... */
    }
/* ========== VALIDACIÓN DE FORMULARIO ========== */

@media (max-width: 768px) {
	
	form {
	    padding: 20px;
	}
	
}

.form-group {
    position: relative;
}

.input-wrapper {
    position: relative;
}

.validation-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.form-group.validating .validation-icon.loading {
    opacity: 1;
    color: #f59e0b;
    animation: spin 1s linear infinite;
}

.form-group.valid .validation-icon.success {
    opacity: 1;
    color: #10b981;
}

.form-group.invalid .validation-icon.error {
    opacity: 1;
    color: #ef4444;
}

@keyframes spin {
    from { transform: translateY(-50%) rotate(0deg); }
    to { transform: translateY(-50%) rotate(360deg); }
}

.form-group.valid input,
.form-group.valid textarea {
    border-color: #10b981;
    background-color: #f0fdf4;
}

.form-group.invalid input,
.form-group.invalid textarea {
    border-color: #ef4444;
    background-color: #fef2f2;
}

.feedback-message {
    display: none;
    margin-top: 8px;
    font-size: 0.85rem;
    padding: 8px 12px;
    border-radius: 6px;
}

.feedback-message.show {
    display: flex;
    align-items: center;
    gap: 8px;
}

.feedback-message.error {
    background-color: #fee2e2;
    color: #ef4444;
    border-left: 3px solid #ef4444;
}

.feedback-message.success {
    background-color: #f0fdf4;
    color: #10b981;
    border-left: 3px solid #10b981;
}

.char-counter {
    display: block;
    text-align: right;
    font-size: 0.8rem;
    color: #999;
    margin-top: 5px;
}

.char-counter.warning {
    color: #f59e0b;
    font-weight: 600;
}

.char-counter.error {
    color: #ef4444;
    font-weight: 600;
}
/* ========== MEJORAS DE ACCESIBILIDAD ========== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Focus visible para teclado */
*:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* Mejor contraste en hover */
a:focus,
button:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}
/* ========== DARK MODE TOGGLE ========== */

/* Variables para tema claro (ya las tienes, las extendemos) */
:root {
    --primary-color: #6a11cb;
    --secondary-color: #2575fc;
    --background-color: #1a1a2e;
    --text-color: #f0f0f0;
    --accent-color: #e94560;
    --card-bg: #21213f;
    
    /* Nuevas variables para temas */
    --services-bg: #f8f8f8;
    --services-text: #333;
    --services-card-bg: #fff;
    --testimonios-bg: #f7f7f7;
    --faq-bg: #f8f8f8;
    --faq-card-bg: #fff;
    --faq-text: #333;
}

/* Variables para tema claro */
[data-theme="light"] {
    --background-color: #ffffff;
    --text-color: #1a1a2e;
    --card-bg: #f5f5f5;
    --services-bg: #f8f8f8;
    --services-text: #333;
    --services-card-bg: #fff;
    --testimonios-bg: #f7f7f7;
    --faq-bg: #f8f8f8;
    --faq-card-bg: #fff;
    --faq-text: #333;
}

/* Variables para tema oscuro */
[data-theme="dark"] {
    --background-color: #0f0f1e;
    --text-color: #f0f0f0;
    --card-bg: #1a1a2e;
    --services-bg: #1a1a2e;
    --services-text: #f0f0f0;
    --services-card-bg: #21213f;
    --testimonios-bg: #1a1a2e;
    --faq-bg: #0f0f1e;
    --faq-card-bg: #21213f;
    --faq-text: #f0f0f0;
}

/* Botón de Dark Mode */
.theme-toggle {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(106, 17, 203, 0.4);
    transition: all 0.3s ease;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 6px 20px rgba(106, 17, 203, 0.6);
}

.theme-toggle i {
    transition: transform 0.5s ease;
}

.theme-toggle:active i {
    transform: rotate(360deg);
}

/* Transición suave entre temas */
body,
.services,
.testimonios,
.faq,
.service-card,
.testimonio-card,
.faq-item,
.process-step,
.about {
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Ajustes de secciones para tema oscuro */
[data-theme="dark"] .services {
    background-color: var(--services-bg);
    color: var(--services-text);
}

[data-theme="dark"] .services h2 {
    color: var(--text-color);
}

[data-theme="dark"] .service-card {
    background-color: var(--services-card-bg);
    color: var(--text-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .service-card h3 {
    color: var(--text-color);
}

[data-theme="dark"] .service-card p {
    color: #e5e7eb;
}

[data-theme="dark"] .testimonios {
    background-color: var(--testimonios-bg);
}

[data-theme="dark"] .testimonios .title {
    color: var(--text-color);
}

[data-theme="dark"] .testimonio-card {
    background-color: var(--services-card-bg);
    color: var(--text-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .testimonio-card p {
    color: #e5e7eb;
}

[data-theme="dark"] .author-name {
    color: var(--text-color);
}

[data-theme="dark"] .author-title {
    color: #d1d5db;
}

[data-theme="dark"] .faq {
    background-color: var(--faq-bg);
}

[data-theme="dark"] .faq .section-title {
    color: var(--text-color);
}

[data-theme="dark"] .faq-item {
    background-color: var(--faq-card-bg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .faq-item h3 {
    color: var(--secondary-color);
}

[data-theme="dark"] .faq-item p {
    color: #e5e7eb;
}
/* NUEVO - Mejora general de contraste en dark mode */
[data-theme="dark"] .about-content p,
[data-theme="dark"] .process-step p {
    color: #d1d5db;
}

/* Responsive */
@media (max-width: 768px) {
    .theme-toggle {
        bottom: 160px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    
    
}
/* ========== TOAST NOTIFICATIONS ========== */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10001;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast {
    background: white;
    color: #333;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    max-width: 400px;
    pointer-events: all;
    transform: translateX(400px);
    opacity: 0;
    animation: slideIn 0.4s ease forwards;
    position: relative;
    overflow: hidden;
}

@keyframes slideIn {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.toast.hiding {
    animation: slideOut 0.4s ease forwards;
}

@keyframes slideOut {
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

/* Tipos de toast */
.toast.success {
    border-left: 4px solid #10b981;
}

.toast.error {
    border-left: 4px solid #ef4444;
}

.toast.warning {
    border-left: 4px solid #f59e0b;
}

.toast.info {
    border-left: 4px solid #3b82f6;
}

/* Iconos */
.toast-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.toast.success .toast-icon {
    color: #10b981;
}

.toast.error .toast-icon {
    color: #ef4444;
}

.toast.warning .toast-icon {
    color: #f59e0b;
}

.toast.info .toast-icon {
    color: #3b82f6;
}

/* Contenido */
.toast-content {
    flex: 1;
}

.toast-title {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 4px;
    color: #1a1a2e;
}

.toast-message {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

/* Botón cerrar */
.toast-close {
    background: none;
    border: none;
    color: #999;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s;
    flex-shrink: 0;
}

.toast-close:hover {
    background: #f3f4f6;
    color: #333;
}

/* Barra de progreso */
.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: currentColor;
    opacity: 0.3;
    width: 100%;
    transform-origin: left;
}

.toast.success .toast-progress {
    background: #10b981;
}

.toast.error .toast-progress {
    background: #ef4444;
}

.toast.warning .toast-progress {
    background: #f59e0b;
}

.toast.info .toast-progress {
    background: #3b82f6;
}

/* Animación de la barra */
@keyframes progress {
    from {
        transform: scaleX(1);
    }
    to {
        transform: scaleX(0);
    }
}

/* Dark mode */
[data-theme="dark"] .toast {
    background: #1a1a2e;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .toast-title {
    color: #f0f0f0;
}

[data-theme="dark"] .toast-message {
    color: #ccc;
}

[data-theme="dark"] .toast-close {
    color: #999;
}

[data-theme="dark"] .toast-close:hover {
    background: #2a2a3e;
    color: #f0f0f0;
}

@media (max-width: 768px) {
    .toast-container {
        top: auto; /* CAMBIADO */
        bottom: 90px; /* Por encima del chatbot */
        right: 10px;
        left: 10px;
        max-height: calc(100vh - 200px); /* Evita overflow */
        overflow-y: auto;
    }

    .toast {
        min-width: auto;
        max-width: none;
        margin-bottom: 10px; /* NUEVO - Espacio entre toasts */
    }
}



a:hover {
    transform: scale(1.05);
}

/* Hover específico para WhatsApp */
a[href*="wa.me"]:hover {
    background-color: #1ebe5d;
}

/* Hover específico para Instagram */
a[href*="instagram.com"]:hover {
    background: linear-gradient(135deg, #a042c2 0%, #ff2e2e 50%, #ffc157 100%);
    box-shadow: 0 6px 20px rgba(131, 58, 180, 0.6);
}
                    @media (max-width: 480px) {
    a[href*="wa.me"],
    a[href*="instagram.com"],
    a[href*="mail.google.com"] {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    a[href*="wa.me"] img,
    a[href*="instagram.com"] img,
    a[href*="mail.google.com"] img {
        width: 22px;
        height: 22px;
    }
}
