
        :root {
            --bg-white: #FFFFFF;
            --text-dark: #1A1D24;
            --accent: #2563EB;
            --accent-hover: #1D4ED8;
            --gradient: linear-gradient(135deg, #2563EB 0%, #7C3AED 100%);
            --card-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
            --hover-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
        }
        
        body {
            background-color: var(--bg-white);
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header moderno */
        header {
            padding: 20px 0;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(15px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            transition: all 0.4s ease;
        }
        
        .header-scrolled {
            padding: 15px 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .logo-icon {
            width: 45px;
            height: 45px;
            background: var(--gradient);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.4rem;
            color: white;
            box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
            animation: float 3s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }
        
        .logo-text {
            font-size: 1.9rem;
            font-weight: 800;
            background: var(--gradient);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        /* Hero Section con imagen */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
        }
        
        .hero-bg {
            position: absolute;
            top: 0;
            right: 0;
            width: 55%;
            height: 100%;
            background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), 
                        url('https://images.unsplash.com/photo-1555066931-4365d14bab8c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80') no-repeat center;
            background-size: cover;
            border-bottom-left-radius: 100px;
        }
        
        .hero-content {
            max-width: 600px;
            padding-top: 80px;
            position: relative;
            z-index: 2;
        }
        
        .hero h1 {
            font-size: 3.8rem;
            margin-bottom: 25px;
            font-weight: 800;
            line-height: 1.1;
            opacity: 0;
            animation: fadeInUp 1s ease 0.2s forwards;
        }
        
        .hero p {
            font-size: 1.3rem;
            margin-bottom: 40px;
            color: #64748B;
            opacity: 0;
            animation: fadeInUp 1s ease 0.5s forwards;
        }
        .highlight {
            background: var(--gradient);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 800;
        }
        
        
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 38px;
            background: var(--gradient);
            color: white;
            text-decoration: none;
            border-radius: 12px;
            font-weight: 600;
            transition: all 0.4s ease;
            box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
            opacity: 0;
            animation: fadeInUp 1s ease 0.8s forwards;
            position: relative;
            overflow: hidden;
        }
        
        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(37, 99, 235, 0.4);
        }
        
        .btn:after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transform: translateX(-100%);
        }
        
        .btn:hover:after {
            transform: translateX(100%);
            transition: transform 0.6s ease;
        }
        
        /* Servicios premium con imágenes */
        .services {
            padding: 120px 0;
            background: #f8fafc;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 70px;
            font-size: 2.5rem;
            font-weight: 700;
            opacity: 0;
            animation: fadeInUp 1s ease forwards;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background: white;
            border-radius: 20px;
            padding: 0;
            transition: all 0.4s ease;
            box-shadow: var(--card-shadow);
            border: 1px solid rgba(0, 0, 0, 0.03);
            overflow: hidden;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease forwards;
        }
        
        .service-card:nth-child(1) { animation-delay: 0.2s; }
        .service-card:nth-child(2) { animation-delay: 0.4s; }
        .service-card:nth-child(3) { animation-delay: 0.6s; }
        .service-card:nth-child(4) { animation-delay: 0.8s; }
        
        .service-card:hover {
            transform: translateY(-12px);
            box-shadow: var(--hover-shadow);
        }
        

        
        .service-content {
            padding: 30px;
        }
        
        .service-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 1.5rem;
            color: white;
            transition: all 0.3s ease;
        }
        
        .service-card:hover .service-icon {
            transform: scale(1.1) rotate(5deg);
        }
        
        .service-title {
            font-size: 1.5rem;
            margin-bottom: 15px;
            font-weight: 700;
        }
        
        .service-desc {
            color: #64748B;
            line-height: 1.7;
        }
        
        /* Misión, Visión y Valores */
        .mission-vision {
            padding: 120px 0;
            background: white;
            position: relative;
        }
        
        .mv-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1557804506-669a67965ba0?ixlib=rb-4.0.3&auto=format&fit=crop&w=1074&q=80') no-repeat center;
            background-size: cover;
            opacity: 0.05;
        }
        
        .mv-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 35px;
            position: relative;
            z-index: 2;
        }
        
        .mv-card {
            background: white;
            border-radius: 20px;
            padding: 45px 35px;
            box-shadow: var(--card-shadow);
            border: 1px solid rgba(0, 0, 0, 0.03);
            transition: all 0.4s ease;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease forwards;
        }
        
        .mv-card:nth-child(1) { animation-delay: 0.2s; }
        .mv-card:nth-child(2) { animation-delay: 0.4s; }
        .mv-card:nth-child(3) { animation-delay: 0.6s; }
        
        .mv-card:hover {
            transform: translateY(-12px);
            box-shadow: var(--hover-shadow);
        }
        
        .mv-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            font-size: 1.8rem;
            color: white;
        }
        
        .mv-title {
            font-size: 1.6rem;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .mv-desc {
            color: #64748B;
            line-height: 1.7;
        }
        
        /* Contacto elegante */
        .contact {
            padding: 120px 0;
            background: #f8fafc;
            position: relative;
        }
        
        .contact-bg {
            position: absolute;
            top: 0;
            right: 0;
            width: 40%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?ixlib=rb-4.0.3&auto=format&fit=crop&w=1074&q=80') no-repeat center;
            background-size: cover;
            border-top-left-radius: 100px;
        }
        
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            position: relative;
            z-index: 2;
        }
        
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            padding: 25px;
            background: white;
            border-radius: 16px;
            box-shadow: var(--card-shadow);
            transition: all 0.3s ease;
        }
        
        .contact-item:hover {
            transform: translateX(8px);
            box-shadow: var(--hover-shadow);
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: white;
        }
        
        .contact-form {
            background: white;
            border-radius: 20px;
            padding: 45px 40px;
            box-shadow: var(--card-shadow);
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
            color: #374151;
        }
        
        .form-control {
            width: 100%;
            padding: 16px 20px;
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            color: var(--text-dark);
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
            background: white;
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        /* Pestaña emergente de contacto */
        .contact-floating {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 999;
        }
        
        .contact-tab {
            background: var(--gradient);
            color: white;
            padding: 15px 20px;
            border-radius: 50px;
            box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .contact-tab:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(37, 99, 235, 0.5);
        }
        
        .contact-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1001;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .contact-modal.active {
            opacity: 1;
            visibility: visible;
        }
        
        .modal-content {
            background: white;
            border-radius: 20px;
            padding: 40px;
            max-width: 500px;
            width: 90%;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
            transform: translateY(30px);
            transition: all 0.3s ease;
        }
        
        .contact-modal.active .modal-content {
            transform: translateY(0);
        }
        
        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
        }
        
        .modal-title {
            font-size: 1.8rem;
            font-weight: 700;
        }
        
        .close-modal {
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #64748B;
            transition: color 0.3s ease;
        }
        
        .close-modal:hover {
            color: var(--text-dark);
        .promo-text {
            background: var(--gradient);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 700;
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
            font-size: 1.1rem;
        }
        
        /* Footer */
        footer {
            padding: 50px 0;
            text-align: center;
            background: var(--text-dark);
            color: white;
        }
        
        /* Animaciones */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .contact-container {
                grid-template-columns: 1fr;
            }
            
            .services-grid, .mv-grid {
                grid-template-columns: 1fr;
            }
            
            .hero-bg, .contact-bg {
                display: none;
            }
        }
