
        :root {
            --primary-color: #5d2f77;
            --secondary-color: #0070a8;
            --accent-color: #665ba6;
            --text-dark: #2C2C2C;
            --text-light: #6B6B6B;
            --bg-light: #FEFEFE;
            --bg-section: #F9F7F4;
        }

        * {
            scroll-behavior: smooth;
        }

        body {
            font-family: "Michroma", sans-serif;
            font-weight: 100;
            font-style: normal;
            overflow-x: hidden;
        }

        .font-display {
            font-family: "Michroma", serif;
        }

        .logo {
            width: 70px;
            height: auto;
        }
        
        .hero-bg {
            background: linear-gradient(135deg, rgba(81, 68, 204, 0.8), rgba(43, 2, 97, 0.685));
            position: relative;
            overflow: hidden;
        }

        .hero-bg::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 1000 1000"><defs><pattern id="grain" width="80" height="80" patternUnits="userSpaceOnUse"><circle cx="5" cy="10" r="0.8" fill="%23ffffff" opacity="0.2"/><circle cx="15" cy="25" r="3" fill="%23ffffff" opacity="0.2"/><circle cx="25" cy="40" r="0.8" fill="%23ffffff" opacity="0.2"/><circle cx="35" cy="55" r="2" fill="%23ffffff" opacity="0.2"/><circle cx="45" cy="70" r="0.8" fill="%23ffffff" opacity="0.2"/><circle cx="55" cy="15" r="1" fill="%23ffffff" opacity="0.5"/><circle cx="65" cy="30" r="0.8" fill="%23ffffff" opacity="0.2"/><circle cx="75" cy="45" r="0.8" fill="%23ffffff" opacity="0.2"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');

            animation: grain-move 5s linear infinite;
        }

        @keyframes grain-move {
            0% { transform: translate(0, 0); }
            100% { transform: translate(-100px, -100px); }
        }

        .floating {
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        .slide-up {
            animation: slideUp 1s ease-out forwards;
            opacity: 0;
            transform: translateY(50px);
        }

        @keyframes slideUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .card-hover {
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .card-hover:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 25px 50px rgba(139, 115, 85, 0.3);
        }

        .parallax {
            transform: translateZ(0);
            will-change: transform;
        }

       
        
        /* .btn-primary {
            background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -50%;
            width: 50%;
            height: 50%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }

        .btn-primary:hover::before {
            left: 100%;
        } */

        .testimonial-card {
            background: linear-gradient(135deg, #ffffff, #f8f6f3);
            border-left: 4px solid var(--accent-color);
            transition: all 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateX(10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }

        .form-input {
            transition: all 0.3s ease;
            border-bottom: 2px solid transparent;
        }

        .form-input:focus {
            border-bottom-color: var(--accent-color);
            transform: translateY(-2px);
        }

        .slider-container {
            position: relative;
            overflow: hidden;
        }

        .slider-track {
            display: flex;
            transition: transform 0.5s ease;
        }

        .slider-item {
            min-width: 100%;
            position: relative;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .pulse-hover:hover {
            animation: pulse 1s infinite;
        }

        .text-gradient {
            background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-divider {
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
            margin: 4rem 0;
        }

        @media (max-width: 768px) {
            .hero-bg {
                min-height: 100vh;
            }
            
            .card-hover:hover {
                transform: none;
            }
        }

        /* Estilos generales del botón */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background-color: #25D366;
            color: #FFF;
            border-radius: 50%;
            text-align: center;
            font-size: 30px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            z-index: 100;
            display: flex;
            justify-content: center;
            align-items: center;
            text-decoration: none;
            transition: all 0.3s ease;
            /* animation: float 3s ease-in-out infinite; */
        }
        
        /* Animación de flotación */
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(90px); }
            100% { transform: translateY(0px); }
        }
        
        /* Estilos para el mensaje emergente */
        .whatsapp-message {
            position: fixed;
            bottom: 100px;
            right: 30px;
            background-color: #075E54;
            color: white;
            padding: 10px 15px;
            border-radius: 10px;
            font-size: 14px;
            max-width: 200px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            opacity: 0;
            transition: opacity 0.5s ease;
            z-index: 99;
        }
        
        .whatsapp-message:after {
            content: '';
            position: absolute;
            bottom: -10px;
            right: 20px;
            border-width: 10px 10px 0;
            border-style: solid;
            border-color: #075E54 transparent;
        }
        
        /* Efecto hover para el botón */
        .whatsapp-float:hover {
            background-color: #128C7E;
            transform: scale(1.1);
            animation: none;
        }
        
        /* Responsive para pantallas pequeñas */
        @media (max-width: 768px) {
            .whatsapp-float {
                width: 50px;
                height: 50px;
                font-size: 25px;
                bottom: 20px;
                right: 20px;
            }
            
            .whatsapp-message {
                bottom: 80px;
                right: 20px;
                max-width: 160px;
                font-size: 12px;
            }
        }

       