

.contendor-principal {
    width: calc(100% - 18px);
    height: 1144px;
    margin: 9px;
    border-radius: 26px;
    overflow: hidden;
    position: relative;
    background: #000;
}

/* Menú encima del slider */
.menu-principal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;

    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px 32px;
    box-sizing: border-box;
}

.logo-traveland,
.links-menu-traveland,
.menu-boton {
    flex: 1;
}

.logo-traveland {
    display: flex;
    justify-content: flex-start;
}

.logo-traveland img {
    width: 120px;
}

.links-menu-traveland {
    display: flex;
    justify-content: center;
    list-style: none !important;
    gap: 20px;
    font-family: 'Montserrat';
    font-weight: 500;
    font-size: 15px;
    margin: 0;
    padding: 0;
}

.links-menu-traveland a {
    text-decoration: none;
    color: #ffffff;
}

.menu-boton {
    display: flex;
    justify-content: flex-end;
}
.boton-hero {
    background: rgba(255, 255, 255, 0.2);
    font-family: 'Montserrat';
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 50px;
    color: #ffffff;
    cursor: pointer;
}

.fa-solid {
    margin-left: 10px;
}

/*Contendio de los slider*/
.hero-contenido {
    position: relative;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    text-align: center;
    color: white;
    width: 60%;
}

.hero-etiqueta {
    font-family: 'Montserrat';
    color: #ffffff;
    font-size: 24px;
    font-weight: 500;
    font-style: italic;
}

.hero-titulo {
    font-family: 'Montserrat';
    color: #ffffff;
    font-size: 64px;
    font-weight: 800;
}

.hero-descripcion {
    position: relative;
    font-family: 'Montserrat';
    color: #ffffff;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.6em;
    margin-left: auto;
    margin-right: auto;
    width: 80%;
}

.hero-boton-slider {
    position: relative;
    background-color: #ffffff;
    width: 234px;
    height: 48px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50px;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-boton-slider a {
    text-decoration: none;
    color: #000;
    font-family: 'Montserrat';
    font-size: 15px;
    font-weight: 500;
}

/* Swiper ocupa todo el contenedor */
.traveland-swiper {
    width: 100%;
    height: 100%;
}

/* Las slides son el fondo */
.swiper-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/*Imágenes del slider */
.slide-1 {
    background-image: url("https://traveland.com.do/wp-content/uploads/2026/03/Rectangle-1.png");
}

.slide-2 {
    background-image: url("https://traveland.com.do/wp-content/uploads/2026/03/pexels-pixabay-355482.jpg");
}

/* Botón hamburguesa oculto en desktop */
.boton-menu {
    display: none;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 30;
}

.boton-menu span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    margin: 5px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-movil-traveland {
    display: none;
}

@media (max-width: 767px) {
    .menu-principal {
        display: flex;
        align-items: center;
        justify-content: space-between;
        z-index: 100001;
    }

    .links-menu-traveland {
    display: none;
    }

    .menu-movil-traveland {
        display: flex;
        position: absolute;
        top: 0;
        right: -100%;
        width: min(280px, 85vw);
        height: 100%;
        margin: 0;
        padding: 96px 24px 32px 24px;
        box-sizing: border-box;

        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 24px;
        list-style: none;

        background: rgba(0, 0, 0, 0.96);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);

        transition: right 0.35s ease;
        z-index: 99999;

        border-top-left-radius: 18px;
        border-bottom-left-radius: 18px;
        overflow-y: auto;
    }

    .menu-movil-traveland.activo {
        right: 0;
    }
    
    .menu-movil-traveland li:first-child {
    padding-top: 80px;
    }

    .menu-movil-traveland li {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .menu-movil-traveland a {
        color: #fff;
        text-decoration: none;
        font-family: 'Montserrat';
        font-size: 18px;
        font-weight: 500;
        line-height: 1.3;
        display: block;
        width: 100%;
    }

    .boton-menu {
        display: block;
        position: relative;
        z-index: 100000;
    }

    .menu-boton {
        display: none;
    }

    .boton-menu.activo span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .boton-menu.activo span:nth-child(2) {
        opacity: 0;
    }

    .boton-menu.activo span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}