/* Espaciado para el contenido HERO */
        
         .hero-container {
            width: 100%;
            min-height: 0;
            position: relative;
        }

        .hero-slide {
            position: relative;
            width: 100%;
            min-height: 0;
            display: none;
            background-size: 90%;
            background-position: center 12%;
            background-repeat: no-repeat;
                 
        }

        .hero-slide.active {
            display: block;
            animation: fadeIn 0.8s ease-in-out;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(108, 222, 245, 0.85) 0%, rgba(1, 147, 134, 0.75) 50%, rgba(76, 196, 194, 0.65) 100%);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 30px;
            height: 70vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
        
        }

        .hero-tag {
            font-family: 'Raleway', sans-serif;
            font-size: 24px;
            font-weight: 600;
            color: #F8B523;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 30px;
            animation: slideInLeft 1s ease-out 0.3s both;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .hero-title {
            font-family: 'Raleway', sans-serif;
            font-size: 64px;
            font-weight: 800;
            color: #ffffff;
            line-height: 1.2;
            margin-bottom: 50px;
            max-width: 1400px;
            animation: slideInLeft 1s ease-out 0.5s both;
        }

        .hero-description {
            font-family: 'Poppins', sans-serif;
            font-size: 20px;
            font-weight: 400;
            color: #ffffff;
            line-height: 1.6;
            margin-bottom: 100px;
            max-width: 650px;
            animation: slideInLeft 1s ease-out 0.7s both;
        }

        .hero-cta {
            display: inline-block;
            padding: 18px 45px;
            background-color: #F8B523;
            color: #023A45;
            font-family: 'Raleway', sans-serif;
            font-size: 18px;
            font-weight: 700;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(248, 181, 35, 0.3);
            animation: slideInLeft 1s ease-out 0.9s both;
        }

        .hero-cta:hover {
            background-color: #ffffff;
            color: #023A45;
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(248, 181, 35, 0.5);
        }

        .hero-navigation {
            position: absolute;
            bottom: 50px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 3;
            display: flex;
            gap: 15px;
        }

        .nav-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .nav-dot.active {
            background-color: #F8B523;
            width: 40px;
            border-radius: 6px;
        }

        .hero-arrows {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            z-index: 3;
            display: flex;
            justify-content: space-between;
            padding: 0 30px;
            pointer-events: none;
        }

        .arrow {
            width: 50px;
            height: 50px;
            background-color: rgba(248, 181, 35, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            pointer-events: all;
        }

        .arrow:hover {
            background-color: #F8B523;
            transform: scale(1.1);
        }

        .arrow svg {
            width: 24px;
            height: 24px;
            fill: #023A45;
        }

        /* CELULAR */
        @media (max-width: 575.98px) {
            .hero-content {
                padding: 0 10px;
                align-items: center;
                text-align: center;
               height: 70vh;
            }

            /*.hero-tag {
                font-size: 11px;
                letter-spacing: 1.5px;
                margin-bottom: 10px;
            }
            */
            .hero-title {
                font-size: 24px;
                margin-bottom: 160px;
            }

            .hero-description {
                font-size: 16px;
                margin-bottom: 60px;
            }

            .hero-cta {
                padding: 15px 35px;
                font-size: 16px;
                margin-bottom: 5cap;
            }

            .hero-navigation {
                bottom: 30px;
            }

            .arrow {
                width: 40px;
                height: 40px;
                margin-bottom: 150px;
            }

            .arrow svg {
                width: 20px;
                height: 20px;
            }
        }

        /* TABLET */
        @media (min-width: 576px) and (max-width: 991.98px) {
            .hero-content {
                padding: 0 10px;
                
            }

            .hero-tag {
                font-size: 12px;
            }

            .hero-title {
                font-size: 48px;
                margin-bottom: 420px;
            }

            .hero-description {
                font-size: 18px;
                margin-bottom: 90px;
                
            }

            .hero-cta {
                padding: 16px 40px;
                font-size: 17px;
            }
        }

        /* DESKTOP */
        @media (min-width: 992px) and (max-width: 1199.98px) {
            .hero-title {
                font-size: 56px;
            }

            .hero-description {
                font-size: 19px;
            }
        }

        /* EXTRA LARGE DEVICES */
        @media (min-width: 1200px) {
            .hero-content {
                padding: 0 50px;
            }
        }