* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, #f0f5f8 0%, #e8f0f4 100%);
            color: #1e2f3a;
            overflow-x: hidden;
            scroll-behavior: smooth;
            position: relative;
        }
    /*-----------------------------------------------------  
            
     /* CONTENEDOR DE HOJAS CAYENDO - MÁS TRANSPARENTES Y MENOS FRECUENCIA */
        .leaves-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 99999;
            overflow: hidden;
        }
        
        .leaf {
            position: absolute;
            top: -50px;
            pointer-events: none;
            opacity: 0;
            animation: fallLeaf linear infinite;
            will-change: transform;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        /* Mayor transparencia - hojas más sutiles y elegantes */
        .leaf i {
            font-size: inherit;
            display: block;
            filter: drop-shadow(0 1px 2px rgba(0,0,0,0.08));
            opacity: 0.55;
        }
        
        /* Colores de hojas basados en la paleta corporativa */
        .leaf.color-verde-1 i {
            color: #385723;
        }
        .leaf.color-verde-2 i {
            color: #4a7a2e;
        }
        .leaf.color-verde-3 i {
            color: #5a9a35;
        }
        .leaf.color-azul-1 i {
            color: #102d37;
        }
        .leaf.color-azul-2 i {
            color: #1a4a5a;
        }
        .leaf.color-azul-3 i {
            color: #2c6e7a;
        }
        .leaf.color-dorado i {
            color: #c4a24a;
        }
        
        @keyframes fallLeaf {
            0% {
                transform: translateY(-50px) rotate(0deg) translateX(0);
                opacity: 0;
            }
            10% {
                opacity: 0.5;
            }
            30% {
                opacity: 0.65;
            }
            70% {
                opacity: 0.6;
            }
            90% {
                opacity: 0.4;
            }
            100% {
                transform: translateY(110vh) rotate(720deg) translateX(80px);
                opacity: 0;
            }
        }
        
        /* Variantes de animación */
        .leaf.slow {
            animation-duration: 14s;
        }
        
        .leaf.medium {
            animation-duration: 9s;
        }
        
        .leaf.fast {
            animation-duration: 6s;
        }
        
        /* Variantes de oscilación horizontal */
        .leaf.swing-left {
            animation-timing-function: cubic-bezier(0.4, 0.0, 0.6, 1.0);
        }
        
        .leaf.swing-right {
            animation-timing-function: cubic-bezier(0.4, 0.0, 0.6, 1.0);
        }

        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #d9e4e8;
        }
        ::-webkit-scrollbar-thumb {
            background: #2c7a6e;
            border-radius: 10px;
        }

        
      /*-----------------------------------------------------  
        
        
        
        

        /* CONTENEDOR DE PARTÍCULAS SUTILES - SIEMPRE EN FRENTE */
        .particles-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 99999;
            overflow: hidden;
        }
        
        .particle {
            position: absolute;
            bottom: -30px;
            border-radius: 50%;
            opacity: 0;
            animation: floatParticle linear infinite;
            pointer-events: none;
            will-change: transform;
        }
        
        /* Colores sutiles basados en la paleta corporativa */
        .particle.color-1 {
            background: rgba(16, 45, 55, 0.35);
            box-shadow: 0 0 8px rgba(16, 45, 55, 0.25);
        }
        
        .particle.color-2 {
            background: rgba(56, 87, 35, 0.35);
            box-shadow: 0 0 8px rgba(56, 87, 35, 0.25);
        }
        
        .particle.color-3 {
            background: rgba(44, 156, 138, 0.3);
            box-shadow: 0 0 8px rgba(44, 156, 138, 0.2);
        }
        
        @keyframes floatParticle {
            0% {
                transform: translateY(0) translateX(0) scale(1);
                opacity: 0;
            }
            10% {
                opacity: 0.5;
            }
            30% {
                opacity: 0.7;
            }
            70% {
                opacity: 0.6;
            }
            90% {
                opacity: 0.3;
            }
            100% {
                transform: translateY(-120vh) translateX(40px) scale(1.5);
                opacity: 0;
            }
        }
        
        .particle.slow {
            animation-duration: 15s;
        }
        
        .particle.medium {
            animation-duration: 10s;
        }
        
        .particle.fast {
            animation-duration: 7s;
        }

        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #d9e4e8;
        }
        ::-webkit-scrollbar-thumb {
            background: #2c7a6e;
            border-radius: 10px;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1.8rem;
        }

        section {
            padding: 4.5rem 0;
        }

        h1, h2, h3 {
            font-weight: 700;
            letter-spacing: -0.02em;
        }

        h2 {
            font-size: 2.2rem;
            margin-bottom: 1.8rem;
            position: relative;
            display: inline-block;
            color: #1e5a5f;
        }
        h2:after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 0;
            width: 70px;
            height: 4px;
            background: #2c9c8a;
            border-radius: 4px;
        }

        /* BOTONES  0*/
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 0.8rem 1.8rem;
            border-radius: 40px;
            font-weight: 600;
            transition: all 0.25s ease;
            text-decoration: none;
            border: none;
            cursor: pointer;
            font-size: 0.95rem;
        }
        .btn-primary {
            background: linear-gradient(115deg, #2c7a6e, #1e5a5f);
            color: white;
            box-shadow: 0 4px 12px rgba(44,122,110,0.3);
        }
        .btn-primary:hover {
            background: linear-gradient(115deg, #1e5a5f, #154a4e);
            transform: translateY(-3px);
        }
        .btn-wa {
            background: linear-gradient(95deg, #25D366, #128C7E);
            color: white;
        }
        .btn-wa:hover {
            background: #128C7E;
            transform: scale(1.02);
        }
        .btn-wa-nav {
            background: linear-gradient(95deg, #25D366, #128C7E);
            color: white !important;
            padding: 0.5rem 1.2rem;
            border-radius: 40px;
            font-weight: 600;
            transition: all 0.25s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn-wa-nav:hover {
            background: #128C7E;
            transform: scale(1.02);
            color: white !important;
        }
        .btn-download {
            background: linear-gradient(115deg, #2c7a6e, #1e5a5f);
            color: white;
            box-shadow: 0 4px 12px rgba(44,122,110,0.3);
        }
        .btn-download:hover {
            background: linear-gradient(115deg, #1e5a5f, #154a4e);
            transform: translateY(-3px);
        }

        /* NAVBAR */
        .navbar {
            background: rgba(255, 255, 255, 0.96);
            backdrop-filter: blur(12px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.03);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.9rem 1.8rem;
            max-width: 1400px;
            margin: 0 auto;
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 800;
            font-size: 1.6rem;
            color: #1a5c60;
            text-decoration: none;
        }
        .logo-img {
            height: 55px;
            width: auto;
            display: block;
            object-fit: contain;
        }
        .logo-text {
            background: linear-gradient(135deg, #1e5a5f, #144c50);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            font-weight: 800;
            font-size: 1.4rem;
        }
        .nav-links {
            display: flex;
            gap: 2rem;
            align-items: center;
        }
        .nav-links a {
            text-decoration: none;
            color: #2a5a60;
            font-weight: 500;
            transition: color 0.2s;
        }
        .nav-links a:hover {
            color: #1e9e8a;
        }
        .menu-icon {
            display: none;
            font-size: 1.6rem;
            cursor: pointer;
            color: #1e5a5f;
        }

        /* HERO CON CARRUSEL DE FONDO - TEXTO BLANCO */
        .hero {
            position: relative;
            min-height: 85vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        
        .hero-background-carousel {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }
        .hero-background-carousel .carousel-container {
            width: 100%;
            height: 100%;
            position: relative;
        }
        .hero-background-carousel .carousel-slides {
            display: flex;
            width: 100%;
            height: 100%;
            transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        .hero-background-carousel .carousel-slide {
            min-width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;
        }
        .hero-background-carousel .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(4px);
            color: white;
            border: none;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.2rem;
            z-index: 15;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
        }
        .hero-background-carousel .carousel-btn:hover {
            background: #2c9c8a;
            transform: translateY(-50%) scale(1.05);
        }
        .hero-background-carousel .btn-prev { left: 20px; }
        .hero-background-carousel .btn-next { right: 20px; }
        .hero-background-carousel .carousel-dots {
            position: absolute;
            bottom: 20px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 12px;
            z-index: 15;
        }
        .hero-background-carousel .dot {
            width: 10px;
            height: 10px;
            background: rgba(255, 255, 255, 0.6);
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.2s;
        }
        .hero-background-carousel .dot.active {
            background: #2c9c8a;
            width: 24px;
            border-radius: 8px;
        }
        
        .hero-content-wrapper {
            position: relative;
            z-index: 2;
            width: 100%;
            text-align: center;
            padding: 4rem 2rem;
        }
        .hero-content-inner {
            max-width: 800px;
            margin: 0 auto;
        }
        .hero-logo {
            height: 120px;
            width: auto;
            object-fit: contain;
            margin-bottom: 1.5rem;
            filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
        }
        .hero-badge {
            background: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(4px);
            display: inline-block;
            padding: 0.3rem 1rem;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            color: white;
            margin-bottom: 1rem;
        }
        .hero-content-inner h1 {
            font-size: 3.2rem;
            line-height: 1.2;
            margin-bottom: 1.2rem;
            color: white;
            text-shadow: 0 2px 8px rgba(0,0,0,0.5);
        }
        .hero-content-inner p {
            font-size: 1.1rem;
            color: white;
            margin-bottom: 2rem;
            max-width: 90%;
            margin-left: auto;
            margin-right: auto;
            text-shadow: 0 1px 4px rgba(0,0,0,0.4);
        }
        .hero-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
        }

        /* SERVICIOS */
        .servicios-section {
            background: #ffffff;
            position: relative;
            z-index: 1;
        }
        
        /* lista de iconos https://www.w3schools.com/icons/icons_reference.asp#gsc.tab=0*/
        
        
        .servicios-section2 {
            background: #ffffff;
            position: relative;
            z-index: 1;
            
        }

       .services-grid2 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
            gap: 2rem;
            margin-top: 1.5rem;
        }
        
        .service-card2 {
            background: #d9f0ec;
            border-radius: 8rem 1.8rem 9rem 1.8rem;
            padding: 2rem 1.5rem;
            transition: all 0.3s;
            border: 1px solid #cde3ec;
            box-shadow: 0 6px 14px rgba(0, 0, 0, 0.03);
        }
        .service-card2:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 32px -10px rgba(30, 90, 90, 0.15);
            border-color: #2c9c8a;
            background: #cde8e2;
        }
        
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
            gap: 2rem;
            margin-top: 1.5rem;
        }
        
        .service-card {
            background: #d9f0ec;
            border-radius: 1.8rem;
            padding: 2rem 1.5rem;
            transition: all 0.3s;
            border: 1px solid #cde3ec;
            box-shadow: 0 6px 14px rgba(0, 0, 0, 0.03);
        }
        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 32px -10px rgba(30, 90, 90, 0.15);
            border-color: #2c9c8a;
            background: #cde8e2;
        }
        
        
        .service-icon {
            font-size: 2.5rem;
            background: linear-gradient(125deg, #2c9c8a, #1e7a6e);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            margin-bottom: 1.2rem;
        }
        
        .service-icon2 {
            font-size: 4rem;
            text-align: center;
            background: linear-gradient(125deg, #2c9c8a, #1e7a6e);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            margin-bottom: 1.2rem;
        }
        
        
        .service-card h3 {
            font-size: 1.6rem;
            margin-bottom: 1rem;
            color: #1a5c60;
        }
        .service-list {
            list-style: none;
            margin-top: 1rem;
        }
        .service-list li {
            padding: 0.4rem 0;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
            color: #2a4a50;
        }
        .service-list li i {
            color: #2c7a6e;
        }

        /* Clientes */
        .clients {
            text-align: center;
            background: #f5fafd;
            position: relative;
            z-index: 1;
        }
        .client-logos {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            margin-top: 2rem;
        }
        .client-item {
            background: white;
            padding: 0.8rem 1.8rem;
            border-radius: 60px;
            font-weight: 600;
            color: #1e5a5f;
            border: 1px solid #cde3ec;
        }
        .clients img {
            max-width: 100%;
            height: auto;
            margin-bottom: 1rem;
        }

        /* Contacto */
        .contact-section {
            background: linear-gradient(115deg, #164f54, #0f3e42);
            color: #f0f9fc;
            position: relative;
            z-index: 1;
        }
        .contact-flex {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
        }
        .contact-info h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: #e3f5f0;
        }
        .contact-details p {
            margin: 0.6rem 0;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .whatsapp-float {
            position: fixed;
            bottom: 28px;
            right: 28px;
            background: #25D366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            box-shadow: 0 6px 16px rgba(0,0,0,0.2);
            z-index: 10000;
            text-decoration: none;
        }
        .whatsapp-float:hover {
            transform: scale(1.08);
            background: #128C7E;
        }
        
        /* Footer */
        footer {
            background: #0b3135;
            color: #c2dfe6;
            padding: 2rem 0;
            text-align: center;
            font-size: 0.85rem;
            position: relative;
            z-index: 1;
        }
        .footer-text {
            margin-top: 0.5rem;
        }

        @media (max-width: 850px) {
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #ffffff;
                position: absolute;
                top: 70px;
                left: 0;
                padding: 1.5rem;
                gap: 1rem;
                border-bottom: 2px solid #9fcdd4;
                box-shadow: 0 12px 24px rgba(0,0,0,0.1);
                z-index: 1001;
            }
            .nav-links.active { display: flex; }
            .menu-icon { display: block; }
            .hero-content-inner h1 { font-size: 2rem; }
            .hero-logo { height: 80px; }
            .hero-content-wrapper { padding: 2rem 1rem; }
            .hero { min-height: 70vh; }
            .leaf i { font-size: 18px; }
        }