  /* VARIABLES COLOR LOGO */
        :root {
            --verde: #0f6c5c;
            --verde2: #13a38b;
            --naranja: #f48c06;
            --oscuro: #0b1d1a;
            --gris: #f4f6f7;
        }

        /* RESET */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box
        }

        body {
            font-family: Poppins;
            background: white;
            overflow-x: hidden;
            color: #222
        }

        /* HEADER */
        .header {
            position: fixed;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 8%;
            background: rgba(255, 255, 255, .85);
            backdrop-filter: blur(12px);
            z-index: 999;
            box-shadow: 0 5px 20px rgba(0, 0, 0, .05);
        }

        .logo img {
            height: 55px
        }

        nav {
            display: flex;
            gap: 28px
        }

        nav a {
            text-decoration: none;
            color: #222;
            font-weight: 500;
            position: relative;
        }

        nav a::after {
            content: "";
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--naranja);
            transition: .3s;
        }

        nav a:hover::after {
            width: 100%
        }

        /* MENU MOBILE */
        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
        }

        .menu-toggle span {
            width: 28px;
            height: 3px;
            background: #222;
            transition: .3s;
        }

        /* HERO */
        .hero {
            position: relative;
            height: 100vh;
            overflow: hidden;
        }

        .slide {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            transition: opacity 1.5s;
            animation: zoom 14s linear infinite;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            z-index: 0;
        }

        .slide.active {
            opacity: 1;
            z-index: 1;
        }



        .slide.active {
            opacity: 1
        }

        @keyframes zoom {
            0% {
                transform: scale(1)
            }

            100% {
                transform: scale(1.12)
            }
        }

        .hero::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, .65), rgba(0, 0, 0, .1));
            z-index: 1;
        }

        .hero-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: white;
            z-index: 2;
            animation: fadeUp 1.5s ease;
        }

        .hero h1 {
            font-family: Playfair Display;
            font-size: 65px;
            text-shadow: 0 10px 30px rgba(0, 0, 0, .6);
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translate(-50%, -30%)
            }

            to {
                opacity: 1;
                transform: translate(-50%, -50%)
            }
        }

        /* SECCIONES */
        section {
            padding: 120px 10%
        }

        /* SOBRE */
        .sobre {
            display: flex;
            align-items: center;
            gap: 70px;
        }

        .sobre img {
            width: 350px;
            border-radius: 20px;
            box-shadow: 0 25px 60px rgba(0, 0, 0, .25);
            transition: .5s;
        }

        .sobre img:hover {
            transform: scale(1.05)
        }

        .sobre h2 {
            color: var(--verde);
            margin-bottom: 15px;
        }

        /* DESTINOS */

        .card {
            height: 300px;
            border-radius: 22px;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: flex-end;
            padding: 28px;
            font-size: 26px;
            font-weight: 600;
            color: white;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: .45s cubic-bezier(.2, .8, .2, 1);
            box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
            margin: 15px;
        }

        /* overlay oscuro */
        .card::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, .75), rgba(0, 0, 0, .1));
            z-index: 1;
            transition: .4s;
        }

        /* reflejo glass */
        .card::after {
            content: "";
            position: absolute;
            top: -100%;
            left: -100%;
            width: 200%;
            height: 200%;
            background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .25), transparent);
            transform: rotate(25deg);
            transition: .7s;
        }

        /* texto arriba overlay */
        .card span {
            position: relative;
            z-index: 2;
            transition: .4s;
        }

        /* hover */
        .card:hover {
            transform: translateY(-12px) scale(1.03);
            box-shadow: 0 35px 80px rgba(0, 0, 0, .35);
        }

        .card:hover::before {
            background: linear-gradient(to top, rgba(0, 0, 0, .9), rgba(0, 0, 0, .2));
        }

        .card:hover::after {
            top: 100%;
            left: 100%;
        }

        .card:hover span {
            transform: translateY(-6px);
            letter-spacing: 1px;
        }

        /* GALERIA */
        .gal-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 70px 50px;
        }

        .gal-grid img {
            width: 100%;
            height: 260px;
            object-fit: cover;
            border-radius: 18px;
            transition: .4s;
        }

        .gal-grid img:hover {
            transform: scale(1.05)
        }

        /* FOOTER */
        .footer {
            background: linear-gradient(120deg, var(--oscuro), #041916);
            color: white;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            padding: 70px 10%;
        }

        .footer-logo img {
            width: 140px;
            margin-bottom: 15px
        }

        .redes a {
            display: block;
            margin: 10px 0;
            padding: 13px;
            border-radius: 12px;
            text-decoration: none;
            color: white;
            text-align: center;
            font-weight: 600;
            transition: .3s;
        }

        .fb {
            background: #1877f2
        }

        .ig {
            background: #e1306c
        }

        .tt {
            background: linear-gradient(45deg, #000, #25F4EE, #FE2C55);
        }

        .redes a:hover {
            transform: scale(1.05)
        }

        input,
        button {
            width: 100%;
            padding: 13px;
            margin-top: 10px;
            border: none;
            border-radius: 10px;
            font-family: Poppins;
        }

        button {
            background: var(--verde);
            color: white;
            font-weight: 600;
            cursor: pointer;
            transition: .3s;
        }

        button:hover {
            background: var(--verde2)
        }

        /* BOTON WSP */
        .wsp {
            position: fixed;
            bottom: 25px;
            right: 25px;
            width: 70px;
            height: 70px;
            background: #25d366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            color: white;
            cursor: pointer;
            z-index: 9999;
            box-shadow: 0 10px 25px rgba(0, 0, 0, .3);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, .7)
            }

            70% {
                box-shadow: 0 0 0 20px rgba(37, 211, 102, 0)
            }

            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0)
            }
        }

        /* MODAL DESTINOS */
        .modal-box {
            background: white;
            padding: 30px 30px 80px;
            border-radius: 20px;
            max-width: 500px;
            width: 90%;
            max-height: 80vh;
            overflow: hidden;
            position: relative;
            animation: scaleIn .4s ease;
        }

        .modal-box.no-btn {
            padding-bottom: 30px;
        }

        .modal-box.no-btn {
            padding-bottom: 30px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .modal {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, .6);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
            transition: .3s;
            z-index: 9999;
        }

        .modal.active {
            opacity: 1;
            pointer-events: auto;
        }



        /* zona scrolleable */
        #modalText {
            text-align: left;
            overflow: auto;
            max-height: 50vh;
            padding-right: 8px;
        }

        #modalText::-webkit-scrollbar {
            width: 6px;
        }

        #modalText::-webkit-scrollbar-thumb {
            background: #13a38b;
            border-radius: 10px;
        }

        /* botón fijo */
        .modal-box button {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: 80%;
        }

        @keyframes scaleIn {
            from {
                transform: scale(.7);
                opacity: 0
            }

            to {
                transform: scale(1);
                opacity: 1
            }
        }

        /* MOBILE */
        @media(max-width:768px) {

            .menu-toggle {
                display: flex
            }

            nav {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: white;
                flex-direction: column;
                align-items: center;
                max-height: 0;
                overflow: hidden;
                transition: .5s;
            }

            nav.active {
                max-height: 300px;
                padding: 20px
            }

            .hero h1 {
                font-size: 38px
            }

            .sobre {
                flex-direction: column;
                text-align: center;
            }
        }

        /* desktop mobile images */
        @media(max-width:768px) {
            .desktop-slide {
                display: none
            }

            .mobile-slide {
                display: block
            }
        }

        @media(min-width:769px) {
            .mobile-slide {
                display: none
            }
        }

        #modalText {
            text-align: left;
        }

        #modalText ul {
            padding-left: 20px;
            margin-top: 10px;
        }

        #modalText li {
            margin-bottom: 6px;
        }