 .container-html{
            font-size: 16px;
        }

        .body-banner {
            margin: 0;
            margin-top: 100px;
            font-family: sans-serif;
            overflow-x: hidden;
            color: #fff;
        }

        .loader {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: #fff;
            z-index: 4;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .loader-circles {
            height: 100px;
            width: 100px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .grey,
        .black {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            z-index: 5;
            background: #ccc;
            position: absolute;
        }

        .grey {
            border: 1px solid #ccc;
        }

        .black {
            z-index: 6;
            background: #333;
        }

        nav {
            
            position: fixed;
            top: 0;
            left: 0;
            width: calc(100% - 100px);
            z-index: 3;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-weight: 700;
            padding: 0 3rem;
        }

        ul,
        li {
            list-style-type: none;
            display: inline-block;
        }

        ul {
            padding-left: 0px;
        }

        li {
            margin: 8px 16px;
        }

        .nav-link {
            position: relative;
            text-decoration: none;
            color: #fff;
        }

        .nav-link:before {
            content: "";
            position: absolute;
            height: 2px;
            background: #fff;
            bottom: -4px;
            right: 0;
            width: 0%;
            transition: 0.3s cubic-bezier(0.47, 0, 0.745, 0.715);
        }

        .nav-link:hover:before {
            left: 0;
            width: 100%;
        }

        /* HERO */
        .hero {
            height: 100%;
            width: 100%;
            position: relative;
            overflow: hidden;
        }

        .hero:after {
            content: "";
            position: absolute;
            top: 50%;
            left: 0;
            height: 50%;
            width: 100%;
            background: linear-gradient(180deg,
                    transparent 0%,
                    rgba(255, 255, 255, 1) 100%);
            z-index: 2;
        }

        .hero-text {
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            z-index: 2;
        }

        .hero-title,
        .hero-sub {
            color: #fff;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
        }

        .hero-title {
            font-size: 6.25rem;
            margin-block-end: 16px;
        }

        .hero-sub {
            font-size: 2rem;
            margin-block-start: 16px;
        }

        .bg {
            position: relative;
            width: 100%;
            max-width: 100vw;
            z-index: 0;
        }

        .person {
            position: absolute;
            top: 0;
            left: 0;
            bottom: 4px;
            width: 100%;
            max-width: 100vw;
            z-index: 1;
        }

        .snow {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            max-width: 100vw;
            z-index: 2;
        }

        #mouse-icon {
            width: 40px;
            position: absolute;
            bottom: 20%;
            left: 50%;
            z-index: 3;
            transform: translate(-50%, 0);
        }

        /* MEDIA QUERIES */
        @media screen and (max-width: 1191px) {
            .hero-title {
                font-size: 5rem;
            }

            #mouse-icon {
                bottom: 14%;
            }
        }

        @media screen and (max-width: 891px) {
            .hero-title {
                font-size: 4.5rem;
            }

            #mouse-icon {
                bottom: 12%;
                width: 30px;
            }
        }

        @media screen and (max-width: 768px) {
            .hero-title {
                font-size: 3.5rem;
            }

            #mouse-icon {
                bottom: 10%;
            }
        }

        @media screen and (max-width: 575px) {
            .hero-title {
                font-size: 3rem;
            }

            #mouse-icon {
                width: 20px;
            }
        }

        /*  PANEL */
        .panel {
            height: 100vh;
            display: flex;
            align-items: center;
        }

        .container {
            max-width: 1170px;
            margin: 3rem auto;
            display: grid;
            grid-template-areas:
                "image text text"
                "image text text";
            grid-gap: 0px 100px;
        }

        .grid-item:nth-child(1) {
            grid-area: image;
        }

        .grid-item:nth-child(2) {
            grid-area: text;
        }

        .panel-text {
            font-size: 1.5rem;
            margin-block-start: 0;
            color: #333;
        }

        .panel-image {
            width: 100%;
            max-width: 160px;
            object-fit: cover;
        }

        .btn {
            position: relative;
            background: #333;
            color: #fff;
            font-size: 1.125rem;
            padding: 12px 16px;
            border: none;
            cursor: pointer;
            border-radius: 0px;
            overflow: hidden;
        }

        /* MEDIA QUERIES */
        @media screen and (max-width: 1191px) {
            .container {
                width: auto;
                margin: 3rem 2rem;
                grid-gap: 35px;
            }
        }

        @media screen and (max-width: 891px) {
            .panel-text {
                font-size: 1.25rem;
            }
        }

        @media screen and (max-width: 768px) {
            .container {
                grid-template-areas:
                    "image"
                    "text";
            }

            .panel-image {
                margin: 0px;
            }
        }

        @media screen and (max-width: 575px) {
            .container {
                margin: 0rem 2rem;
            }

            .panel-text {
                font-size: 1rem;
            }

            .btn {
                font-size: 1rem;
            }
        }
        
        /* GALERRY */
 /* Estilos de la galería */
.gallery-section {
    background: #fff;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
    display: flex;
    align-items: center;
}

.gallery-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 2rem;
}

.gallery-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.gallery {
    width: 100%;
    position: relative;
    overflow: hidden;
    opacity: 0;
}

.gallery-track {
    display: flex;
    gap: 2rem;
    position: relative;
    left: 0;
    width: fit-content;
}

.gallery-item {
    flex: 0 0 auto;
    width: 400px; /* Tamaño fijo para desktop */
    height: 400px; /* Altura fija igual al ancho */
    position: relative;
}

.gallery-item-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 
        0 4px 6px rgba(0,0,0,0.03),
        0 8px 15px rgba(0,0,0,0.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-controls {
    position: absolute;
    bottom: 2rem;
    right: 4rem;
    display: flex;
    gap: 1rem;
    opacity: 0;
    z-index: 3;
}

.gallery-prev,
.gallery-next {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    font-size: 24px;
}

.gallery-prev:hover,
.gallery-next:hover {
    background: #fff;
    transform: translateY(-2px);
}

/* Media Queries */
@media screen and (max-width: 1200px) {
    .gallery-item {
        width: 300px; /* Tamaño fijo más pequeño para tablets */
        height: 300px;
    }
    
    .gallery-track {
        gap: 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    .gallery-section {
        padding: 1rem 0;
    }

    .gallery-container {
        padding: 0 1rem;
    }

    .gallery-track {
        gap: 1rem;
    }

    .gallery-item {
        width: 280px; /* Tamaño fijo para móvil */
        height: 280px;
    }

    .gallery-controls {
        bottom: 1rem;
        right: 1rem;
    }

    .gallery-prev,
    .gallery-next {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

@media screen and (max-width: 480px) {
    .gallery-item {
        width: 260px; /* Tamaño más pequeño para móviles pequeños */
        height: 260px;
    }
}
