        html {
            height: auto;
        }

        body {
            margin: 0;
            background-color: #f3efbf;
            box-sizing: border-box;
            overflow-x: hidden;
        }

        body.layout {
            display: flex;
            flex-direction: column;
            min-height: 100dvh;
            font-family: 'Poppins', sans-serif;
            background-color: #f3efbf;
            color: #333;
        }

        main {
            flex: 1 0 auto;
            padding-top: 90px;
            min-height: calc(100dvh - 90px);
            display: flex;
            flex-direction: column;
        }

        h2 {
            color: #dcb763;
        }

        /* NAVBAR */

        .nav-bar {
            background-color: #332f24;
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            right: 0;
            z-index: 999;
            transition: background-color 0.3s ease;
            font-family: 'Poppins', sans-serif;
            box-sizing: border-box;
            margin: 0;
            padding: 0 !important;
        }

        #navbarCollapse .navbar-nav {
            background-color: #332f24;
        }

        .navbar-brand img {
            height: 50px;
            object-fit: contain;
            filter: drop-shadow(0 2px 3px #f1edbf);
        }

        .navbar-nav .nav-link {
            color: #fff;
            font-size: 1.1rem;
            font-weight: 500;
            margin-left: 25px;
            transition: color 0.3s ease;
        }

        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: #f7c35f;
        }

        .navbar-nav.ms-auto {
            margin-left: auto;
        }

        /* PARALLAX IMAGEN DE PORTADA INICIO */

        .parallax-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .parallax-img img {
            position: absolute;
            top: -15%;
            left: 0;
            width: 100%;
            height: 130%;
            object-fit: cover;
            will-change: transform;
        }

        .parallax-img::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #332f249d;
            z-index: 2;
        }

        .carousel-caption {
            z-index: 3;
            text-align: center;
        }

        .carousel-caption h1 {
            font-size: 5rem;
            font-weight: 700;
            letter-spacing: 2px;
        }

        .carousel-caption h2 {
            font-size: 2rem;
            font-weight: 400;
        }

        /* TEXTO + IMAGEN (BEIGE) */

        .contenedor {
            background-color: #f3efbf;
            padding: 3% 0 3% 0;

        }

        .contenedor p {
            font-size: 1.1rem;
            line-height: 1.6;
        }

        .contenedor h2 {
            font-size: 2.5rem;
            line-height: 1.6;
        }

        .contenedor img {
            border-radius: 25px !important;
            max-height: 340px;
            height: auto;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        /* IMG HOVER TEXTO */
        .img-hover-container {
            position: relative;
            overflow: hidden;
        }

        .img-hover-container img {
            transition: filter 0.3s, transform 0.3s;
        }

        .img-hover-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(51, 47, 36, 0.6);
            opacity: 0;
            transition: opacity 0.3s;
            border-radius: 25px !important;
            pointer-events: none;
        }

        .img-hover-text {
            color: #fff;
            font-size: 1.3rem;
            font-weight: 600;
            text-align: center;
            pointer-events: none;
        }

        .img-hover-container:hover img {
            filter: brightness(0.6);

        }

        .img-hover-container:hover .img-hover-overlay {
            opacity: 1;
        }

        /*UPDT*/
        .img-card {
            background-color: #332f24;
            border-radius: 30px;
            padding: 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            overflow: hidden;
        }

        .img-card .img-hover-container {
            width: 100%;
            height: 100%;
        }

        .img-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            border-radius: 0;
        }

        .img-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
        }

        .img-card .pastel-text {
            padding: 15px 10px 20px 10px;
            text-align: center;
            background-color: #332f24;
            border-bottom-left-radius: 30px;
            border-bottom-right-radius: 30px;
        }

        .img-card .pastel-text h3 {
            font-size: 1.3rem;
            color: #dcb763;
        }


        /*¿QUE OFRECEMOS?*/
        .que-ofrecemos {
            background-color: #332f24;
            padding: 40px 0;
        }


        /* SWIPER SLIDER */
        .swiper-container-custom {
            width: 100%;
            padding: 40px 0;
        }

        .swiper {
            padding-bottom: 50px;
        }

        .slide-content {
            display: flex;
            flex-direction: column;
            height: 100%;
            perspective: 1000px;
        }

        .swiper-slide {
            opacity: 0.4;
            filter: blur(8px) brightness(0.6);
            transition: all 0.6s ease;
            transform: scale(0.8);
        }

        .swiper-slide.swiper-slide-active {
            opacity: 1;
            filter: blur(0px) brightness(1);
            transform: scale(1);
        }

        .swiper-slide.swiper-slide-next,
        .swiper-slide.swiper-slide-prev {
            opacity: 0.6;
            filter: blur(4px) brightness(0.8);
            transform: scale(0.9);
        }

        .swiper-slide img {
            width: 100%;
            height: 450px;
            object-fit: cover;
            border-radius: 15px;
            display: block;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
        }

        .slide-text {
            background-color: #f3efbf;
            padding: 20px 15px;
            border-radius: 0 0 15px 15px;
            text-align: center;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            margin-top: -5px;
        }

        .slide-text h3 {
            color: #332f24;
            font-weight: 600;
            font-size: 1.4rem;
            margin-bottom: 10px;
            color: #dcb763;
        }

        .slide-text p {
            color: #333;
            font-size: 0.95rem;
            line-height: 1.5;
            margin: 0;
        }

        /* FOOTER */
        footer {
            background-color: #332f24;
            max-height: 200px;
            width: 100%;
            margin-top: 60px;
        }

        /* FOOTER ICONOS */
        .footer a {
            color: #fff;
            transition: color 0.2s;
            font-size: 1.5rem;
        }

        .footer a:hover {
            color: #dcb763;
        }

        /* PASTELES */

        .contacto {
            padding-left: 20px;
            padding-right: 20px;
        }


        .pastel-card {
            background-color: #332f24;
            border-radius: 30px;
            padding: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            overflow: hidden;
        }

        .pastel-card div a img {
            border-radius: 25px !important;
        }

        .pastel-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
        }

        .pastel-text {
            padding: 15px 10px 5px 10px;
            text-align: center;

        }

        .pastel-text h3 {
            font-size: 1.3rem;
            color: #332f24;
            margin-bottom: 8px;
            color: #dcb763;
        }


        /* BOTÓN CUSTOM */
        .btn-custom {
            background: linear-gradient(135deg, #f7c35f, #dcb763);
            color: #332f24;
            font-weight: 600;
            border-radius: 30px;
            padding: 12px 28px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
            transition: transform 0.2s ease, filter 0.2s ease;
        }

        .btn-custom:hover {
            transform: translateY(-2px);
            filter: brightness(1.05);
        }

        body,
        html {
            overflow-x: hidden;
        }


        img {
            max-width: 100%;
            height: auto;
        }

        /* RESPONSIVE */

        @media (max-width: 991.98px) {

            .navbar-nav {
                background-color: rgba(0, 0, 0, 0.85);
                padding: 1rem;
                border-radius: 0.5rem;
                margin-top: 0.5rem;
            }

            .navbar-nav .nav-link {
                margin-left: 0;
                margin-bottom: 0.5rem;
            }

            .columna {
                padding-left: 50px;
                padding-right: 50px;
            }

            .col-md-8,
            .col-md-10,
            .col-md-7,
            .col-md-5 {
                padding-left: 15px !important;
                padding-right: 15px !important;
            }

            .contenedor {
                padding: 5% 5% !important;
            }

            .swiper-slide img {
                height: 320px;
            }

            .carousel-caption h1 {
                font-size: 3.2rem;
            }

            .carousel-caption h2 {
                font-size: 1.4rem;
            }

        }