/* Navbar */
#navbar {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background-color: transparent; 
    transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
#navbar.scrolled {
    background-color: white !important;
}
/* Navbar inicial transparente */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: transparent;
    font-family: 'Poppins', sans-serif;
    transition: background 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.navbar.scrolled {
    background-color: white !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); 
}
.logo {
    color: white;
    font-size: 30px;
    font-weight: bold;
}
.logo a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}
#navbar.scrolled .logo a {
    color: black !important;
}
.menu {
    display: flex;
    gap: 20px;
    background: transparent;
}
.menu a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-family: 'Poppins';
}
.menu a:hover {
    text-decoration: underline;
}
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: black;
    font-size: 30px;
    cursor: pointer;
}
#navbar.scrolled .menu a{
    color: black !important;
}
html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden; 
    max-width: 100%; 
}
.homepage-hero {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: url("imagenes/homepageSJDS/download.jpeg") no-repeat center center;
    background-size: cover;
}
.homepage-hero::before {
    content: "";
    position: absolute;
    top: 0 !important;
    left: 0 !important;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Oscuridad mínima */
    z-index: 1; /* Coloca la capa sobre la imagen */
}
.hero-title {
    font-size: 62px;
    font-weight: 600;
    line-height: 1.2;
    color: #fff;
    text-align: left; 
    letter-spacing: 1.5px; 
    max-width: 55%; 
    bottom: -10%; 
    left: -10%;
}
.homepage-hero > * {
    position: relative;
    z-index: 2;
}
.homepage-wave {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    line-height: 0; 
}
.entertainment-section {
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    padding: 100px;
    position: relative;
}
.entertainment-left {
    width: 45%;
    padding-right: 70px; 
    margin-left: 50px; 
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.subtitulo-entertainment {
    font-family: 'Montserrat', sans-serif;    
    color: #e5652e;
    margin-bottom: 10px;
    letter-spacing: 1px;
    font-size: 20px;
    text-align: left !important;
}
.titulo-entertainment {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #313131;
    font-size: 28px; 
    letter-spacing: 2px;
    margin-bottom: 20px;
}
.descripcion-entertainment {
    font-family: "Source Sans Pro", sans-serif;    
    color: rgb(110, 110, 110);
    line-height: 2.0;
    text-align: justify;

}
.entertainment-right {
    width: 75%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: -30px !important;
}
.imagen-entertainment {
    width: 80%; 
    object-fit: cover;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    border-radius: 5px; 
}
.entertainment-right .imagen-entertainment {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out !important; /* Transición agregada */
}
.imagen-entertainment:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
#prevBtn, #nextBtn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.3);
    color: #fff;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 4px;
    z-index: 2;
}
#prevBtn { left: 10px; }
#nextBtn { right: 10px; }
.entertainment-right-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 70px;
    color: rgb(65, 105, 94);
    letter-spacing: 2px;
    margin-top: auto;
    margin-left: -10px;
}
.btn-compra {
    margin-top: 5px !important;
    display: inline-block;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    background-color: #e5652e;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    letter-spacing: 1.2px;
    transition: background-color 0.3s ease-in-out;
    border-radius: 4px;
    text-decoration: none;
}
.btn-compra:hover {
    background-color: rgb(50,80,72);
}
/* Sección de Entradas */
.tickets-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px;
    background-color: #fefefe;
}
.tickets-left {
    width: 50%;
    display: flex;
    gap: 30px; 
}
.tickets-image {
    width: 45%; 
    object-fit: cover;
    height: auto;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    border-radius: 5px;
}
.tickets-image:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}
.tickets-right {
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 40px;
    align-items: center;
}
.tickets-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    color: #313131;
    margin-bottom: 20px;
    letter-spacing: 1px;
}
.tickets-description {
    font-family: "Source Sans Pro", sans-serif;
    color: #6e6e6e;
    line-height: 1.8;
    margin-bottom: 30px;
}
.btn-tickets {
    display: inline-block; 
    font-family: 'Montserrat', sans-serif;
    background-color: #e5652e;
    color: #fff;
    border: none;
    padding: 12px 28px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease-in-out;
    border-radius: 4px;
    text-decoration: none;
}
.btn-tickets:hover {
    background-color: #034c38;
}
.homepage-wave1 {
    width: 100%;
    line-height: 0; 
    margin-top: -240px; 
}
.homepage-wave1 svg {
    display: block;
    width: 100%;
    height: auto;
}
/* Sección de Ding Repair Coffee */
.coffee-section {
    background-color: #F9F9F9; /* Mantén un solo color de fondo */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 8%; /* Agrega espacio en los lados */
    margin-top: -70px;
    width: 100%; 
    margin-left: auto;
    margin-right: auto;
    max-width: none;
}
.coffee-left {
    width: 48%;
    padding: 0 20px;
}
.coffee-collage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    row-gap: 15px;
}
.coffee-imagen {
    width: 90%;
    height: 300px;
    object-fit: cover;     
    border-radius: 5px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out; /* Transición */
}
.coffee-imagen:hover {
    transform: scale(1.05);
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
}
.coffee-right {
    width: 50%;
    padding-left: 20px;
    text-align: left;
    margin-left: 0;
    margin-right: 50px;
    padding-right: 40px !important;
}
.subtitulo-coffee {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    color: #e5652e;
    margin-bottom: 10px;
    text-align: left !important;
}
.titulo-coffee {
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    color: #313131;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-align: left !important;
}
.descripcion-coffee {
    font-family: "Source Sans Pro", sans-serif;
    color: #6e6e6e;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 20px;
    text-align: justify;
    padding-right: 50px;
    margin-right: 40px;
    max-width: 85%;
}
.btn-compra {
    padding: 12px 24px;
    font-size: 16px;
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    background-color: #e5652e;
    color: #fff;
    border: none;
    cursor: pointer;
    letter-spacing: 1.2px;
    transition: background-color 0.3s ease-in-out;
    border-radius: 4px;
    text-decoration: none;
}
.btn-compra:hover {
    background-color: rgb(50,80,72);
}
/* Waves */
.homepage-wave9 {
    margin-top: -310px !important; /* Elimina el espacio superior */
    padding-top: 0 !important;
    display: block;
}
.homepage-wave8 {
    display: block;
    width: 100%;
    line-height: 0;
    margin: 0 !important;
    padding: 0 !important;
    position: relative;
    top: -2px; /* Aumenta el solapamiento */
    z-index: 1; /* Asegura que el wave esté encima */
}

.homepage-wave8 svg {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 !important;
    padding: 0 !important;
    position: relative;
    top: -2px; /* Ajusta para eliminar el espacio */
}
/* Sección de Tuanis */
.tuanis-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background-color: #fefefe;
    margin-top: 0px; 
    margin-bottom: -230px !important;
}
.tuanis-text {
    text-align: center;
    margin-top: -100px;
    max-width: 800px; 
    margin-bottom: 30px; 
}
.subtitulo-tuanis {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    color: #e5652e;
    margin-bottom: 10px;
}
.titulo-tuanis {
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    color: #313131;
    margin-bottom: 15px;
    letter-spacing: 1px;
}
.descripcion-tuanis {
    font-family: "Source Sans Pro", sans-serif;
    color: #6e6e6e;
    line-height: 1.8;
    font-size: 16px;
    text-align: justify;
}
.tuanis-collage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 10px;
    width: 100%;
    max-width: 800px; 
}
.tuanis-imagen {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.tuanis-imagen.grande {
    grid-column: span 2;
    height: 300px;
}
.tuanis-imagen:hover {
    transform: scale(1.05);
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
}
.homepage-wave2 {
    width: 100%;
    line-height: 0; 
}
.homepage-wave2 svg {
    display: block;
    width: 100%;
    height: auto;
    margin-top: -310px;
}
/* Sección del Mirador */
.mirador-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px;
    background-color: #F9F9F9;
    margin-bottom: 40px;
    margin-top: -4px; 
}
.mirador-left {
    width: 50%;
    display: flex;
    gap: 30px !important; 
    margin-right: 0px !important;
}
.mirador-imagen:first-child {
    margin-right: 10px; /* Agregar espacio solo a la primera imagen */
}
.mirador-imagen {
    width: 45%;
    object-fit: cover;
    height: auto;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    border-radius: 5px;
}
.mirador-imagen:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.mirador-right {
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 0x !important;
    align-items: left;
}
.subtitulo-mirador {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    color: #e5652e;
    margin-bottom: 10px;
}
.titulo-mirador {
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    color: #313131;
    margin-bottom: 20px;
    letter-spacing: 1px;
}
.descripcion-mirador {
    font-family: "Source Sans Pro", sans-serif;
    color: #6e6e6e;
    line-height: 1.8;
    margin-bottom: 30px;
}
/* Sección de South Wind Travel */
.transport-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px;
    margin-top: -200px; 
    background-color: #fefefe;
}
.transport-left {
    width: 50%;
    text-align: left;
    padding-right: 50px;
}
.subtitulo-transport {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    color: #e5652e;
    margin-bottom: 10px;
}
.titulo-transport {
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    color: #313131;
    margin-bottom: 15px;
    letter-spacing: 1px;
}
.descripcion-transport {
    font-family: "Source Sans Pro", sans-serif;
    color: #6e6e6e;
    line-height: 1.8;
    font-size: 16px;
    text-align: justify;
}
.transport-right {
    width: 50%;
    display: flex;
    align-items: center;
    margin-left: 50px;
}
.transport-collage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.transport-imagen {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.transport-imagen:hover {
    transform: scale(1.05);
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
}
.btn-transport {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    background-color: #e5652e;
    color: #fff;
    border: none;
    padding: 12px 24px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease-in-out;
    border-radius: 4px;
    text-decoration: none;
    margin-top: 15px;
}
.btn-transport:hover {
    background-color: #034c38;
}
.homepage-wave-bottom {
    width: 100%;
    line-height: 0; /* Elimina espacios en blanco alrededor del SVG */
    margin-top: -40px; /* Ajusta para integrarlo visualmente con la siguiente sección */
    position: relative;
}
.homepage-wave-bottom svg {
    display: block;
    width: 100%;
    height: auto;
}
@media (max-width: 480px) {
    h1 {
        font-size: 28px; 
        max-width: 90%; 
    }
}
/* Responsividad para dispositivos móviles */
@media (max-width: 768px) {
    .entertainment-section {
        flex-direction: column;
        padding: 40px 20px;
    }
    .entertainment-left, .entertainment-right {
        width: 100%;
        margin: 0;
        padding: 0;
    } 
    .imagen-entertainment {
        width: 100%;
    }
    
    .entertainment-right{
    margin-left: 0 !important;
    }   
    .entertainment-right-text {
        display: none;
    }
    .btn-compra {
        margin-top: 10px !important;
        padding: 12px 24px;
        font-size: 16px;
    }
    .tickets-section {
        flex-direction: column;
        padding: 40px 20px;
        align-items: center;
    }
    .tickets-left {
            width: 100%;
            flex-direction: column;
            gap: 20px;
            margin-bottom: 20px;
            align-items: center;
            order: 2;                                 
    }
    .tickets-image {
            width: 100%; 
    }
    .tickets-right {
            width: 100%;
            margin-left: 0;
            align-items: center;
            text-align: left;
            order: 1;                                    
    }
    .tickets-title {
            font-size: 24px;
            margin-bottom: 15px;
            margin-top: 0px;
    }
    .tickets-description {
            font-size: 16px;
            margin-bottom: 20px;
            text-align: justify;
    }
    .btn-tickets {
                padding: 10px 20px;
                font-size: 14px;
                margin-bottom: 25px;
    }
    .homepage-wave1 {
                margin-top: -70px;   
    }
/* Sección de Ding Repair Coffee */
    .coffee-section {
        flex-direction: column;
        padding: 50px 8%;
        align-items: center;    
        justify-content: center;
        text-align: left;    
        margin-top: 0px;
    }
    .coffee-left {
        order: 2;
        width: 100%; 
        display: flex;
        margin-left: -20px;
        justify-content: center;

    }
    .coffee-collage {
        display: grid !important;
        grid-template-columns: 1fr; /* 2 columnas */        gap: 10px !important;
        justify-content: center;
        width: 100%;
        margin-top: 15px !important;
        margin-right: 40px;
    }
    .coffee-imagen {
        transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out; /* Efecto de transición suave */
        width: 100%;
        height: 450px;
        object-fit: cover;
        border-radius: 5px;
    }
    .coffee-imagen:hover {
        transform: scale(1.05); 
        box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
    }
    .coffee-imagen:nth-child(3),
    .coffee-imagen:nth-child(4) {
        display: none;
    }
    .coffee-right {
        width: 100%;
        text-align: center;
        order: 1;
        max-width: 600px;
        margin-left: 30px;
        margin-right: 20px;

    }
    .titulo-coffee {
        font-size: 24px; 
        text-align: left !important;
    }
    .subtitulo-coffee {
        font-size: 20px;
        color: #e5652e;
        margin-bottom: 10px;
        text-align: left !important; /* Alineación forzada */
    }
    .descripcion-coffee {
        font-size: 16px; 
        text-align: justify;
        margin: 0 auto;
        max-width: 600px;
    }
/* Seccion: tuanis */
.homepage-wave9 {
    margin-top: -60px !important; /* Elimina el espacio superior */
    padding-top: 0 !important;

}
.homepage-wave8 {
    width: 100%;
    height: auto;
    margin: 0 !important; /* Elimina espacios extra */
    padding: 0 !important;
    line-height: 0;
    display: block;
    margin-top: 180px !important;
    position: relative;
}

.homepage-wave8 svg {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 !important;
    padding: 0 !important;
}
/*Tuanis section */
.tuanis-section{
    flex-direction: column;
    padding: 20px 10px;     
    margin-top: 0 !important;
}
.tuanis-text{
    margin-top: -10px !important;
    align-items: left;
    margin-left: 0 !important;
    max-width: 95%;
}
.tuanis-text .subtitulo-tuanis,
.tuanis-text .titulo-tuanis {
    text-align: left !important; 
    margin-left: 0 !important;
}
.tuanis-collage {
    max-width: 90% !important; /* Ajusta el ancho para evitar que se extienda demasiado */
    margin: 0 auto !important; /* Centra el collage sin afectar márgenes laterales */
}

/* Seccion - mirador */
    .mirador-section{
        flex-direction: column;
        padding: 40px 20px;
    }
    .mirador-right{
        width: 100%;
        text-align: left;
        align-items: center;
        order: 1;
        padding: 0;
        margin-bottom: 20px;
    }
    .descripcion-mirador{
        text-align: justify;
    }
    .subtitulo-mirador,
    .titulo-mirador {
        text-align: left; 
    }
    .mirador-left{
        width: 100%;
        order: 2;
        display: flex;
        justify-content: center;
    }
    .mirador-collage {
        display: grid;
        grid-template-columns: 1fr 1fr; /* Dos imágenes en una fila */
        gap: 10px;
        width: 100%;
    }
    .mirador-imagen{
        width: 100%;
        height: 250px;
        object-fit: cover;
        border-radius: 5px;
    }
/* Seccion - South Wind Travel*/
.transport-section {
    flex-direction: column;
    padding: 40px 15px;
    align-items: center;
    margin-top: -20px; 
}
.transport-left {
    width: 100%;
    text-align: left;
    padding: 0px 10px;
}
.subtitulo-transport,
.titulo-transport {
    text-align: left;
}
.descripcion-transport {
    text-align: justify;
    font-size: 16px;
}
.transport-right {
    width: 100%;
    display: flex;
    justify-content: center;
}
.transport-collage {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 !important;
    margin-left: -50px !important;
}
.transport-imagen:nth-child(2) {
    display: none;
}
.transport-imagen:first-child {
    width: 95%;
    height: 420px; 
    margin: 0;
    display: block;
}
.btn-transport {
    display: flex; 
    justify-content: center; 
    align-items: center; 
    padding: 10px 15px; 
    font-size: 14px;
    text-align: center;
    margin: 25px auto 30px auto; 
    width: fit-content; 
    min-width: fit-content; 
    border-radius: 5px;
}
/* Navbar*/
    .navbar {
        padding: 15px 20px;
    }
    .menu {
        display: none;
        flex-direction: column;
        background: white;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        padding: 15px;
        border-radius: 5px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 200;
    }
    .menu.open {
        display: flex;
    }
    .menu a {
        color: white;
        padding: 10px 0;
        text-align: center;
        font-size: 16px;
    }
    .menu-toggle {
        display: block;
        font-size: 28px;
        color: white;
    }
    #navbar.scrolled .menu-toggle {
        color: black !important;
    }
    /*SJDS Intro*/
    .hero-title {
        font-size: 30px !important;
        max-width: 70% !important;
        margin-left: 5%;
    }
}
@media (min-width: 768px) and (max-width: 1024px) {
    /* Sección de Entretenimiento */
    .entertainment-section {
        flex-direction: column;
        padding: 80px 40px;
        margin-bottom: -60px;
    }
    .entertainment-left {
        width: 100%;
        padding-right: 0;
        margin-left: 0;
        margin-bottom: 40px;
        align-items: center;
    }
    .entertainment-right {
        width: 100%;
        margin-left: 0;
        margin-bottom: 40px;
        align-items: center;
    }
    .subtitulo-entertainment {
        text-align: center;
        font-size: 22px;
    }
    .titulo-entertainment {
        font-size: 40px;
        text-align: center;
        margin-bottom: 15px;
    }
    .descripcion-entertainment {
        text-align: left;
        font-size: 20px !important;
        line-height: 1.8;
    }
    .btn-compra {
        margin-top: 15px !important;
        padding: 15px 20px !important;
        font-size: 22px;
    }
    #prevBtn, #nextBtn {
        font-size: 2rem;
        padding: 10px 15px;
    }
    .imagen-entertainment {
        width: 100%; 
        margin-left: 50px !important;
    }
/* Sección de Entradas */
.tickets-section {
    flex-direction: column;
    padding: 60px 40px;
    align-items: left; 
}
.tickets-left {
    width: 100%;             
    display: flex;           
    flex-direction: row;     
    justify-content: center; 
    gap: 20px;              
    margin-bottom: 40px;
    order: 2;                
}
.tickets-image {
    width: 45%;
}
.tickets-right {
    width: 100%;            
    margin-left: 0;         
    align-items: left;     
    text-align: left;
    order: 1;     
}
.tickets-title {
    font-size: 40px;
    margin-bottom: 20px;
    margin-top: 10px; 
}
.tickets-description {
    font-size: 20px;
    margin-bottom: 25px;
    line-height: 1.8;
    margin-left: 10px;
    text-align: justify;
}
.btn-tickets {
    padding: 15px 25px;
    font-size: 16px;
    margin-bottom: 30px;
}
.btn-compra {
    padding: 14px 28px !important;
    font-size: 18px;
}
.homepage-wave1 {
    margin-top: -200px;
}
/*wave*/
.homepage-wave8 { /* Wave al inicio de seccion: mirador*/
    width: 100%;
    height: auto;
    margin: 0 !important; 
    padding: 0 !important;
    line-height: 0;
    display: block;
    position: relative;
    margin-top: 70px !important; /* Ajusta la distancia al top */

}
.homepage-wave8 svg {
    display: block;
    width: 100%;
    height: auto;
    margin-top: -2px !important; 
    padding: 0 !important;
}

.homepage-wave9 {
    display: none;
}

/*Seccion - Ding Repair*/
.coffee-section {
    flex-direction: column;
}

.coffee-right {
    order: 1;
    width: 100%;
    text-align: left;
    margin-bottom: 40px; 
}
.coffee-left {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    order: 2;
    margin: 0 auto !important; 
    padding: 0 !important;
}
.coffee-imagen {
    display: none !important; 
}
.coffee-left {
    display: none !important;
}
.coffee-imagen:nth-child(3),
.coffee-imagen:nth-child(4)
  {
    display: none;
}
.titulo-coffee {
    font-size: 28px;
}
.descripcion-coffee {
    font-size: 16px; 
}
    /*Seccion - Tuanis*/
    .homepage-wave4 {
        display: none !important;
        height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    .tuanis-section{
        margin-top: 60px;
        margin-bottom: 100px;
    }
    .tuanis-text{
        text-align: left!important;
    }
    .subtitulo-tuanis, 
    .titulo-tuanis {
        display: block; /* Asegura que ocupen toda la línea */
        text-align: left !important;
        margin-left: 0 !important; /* Evita margen extra */
        width: 100%; /* Asegura que no se centre por otras reglas */
    }
    /*Seccion - mirador SJDS */
     .mirador-section {
        flex-direction: column;
        padding: 60px 40px; 
    }
    .mirador-right {
        width: 100%;
        text-align: left; 
        align-items: flex-start;
        order: 1;
        padding: 0;
        margin-bottom: 30px;
    }
    .subtitulo-mirador,
    .titulo-mirador {
        text-align: left; 
    }
    .titulo-mirador{
        text-align: left !important;
    }
    .descripcion-mirador {
        text-align: justify; 
        max-width: 900px; 
    }

    .mirador-left {
        width: 100%;
        order: 2;
        display: flex;
        justify-content: center;
    }

    .mirador-collage {
        display: flex;
        width: 100%;
        gap: 20px; 
        justify-content: center; 
    }

    .mirador-imagen {
        width: 60%; 
        height: 400px; 
        object-fit: cover;
        border-radius: 5px;
    }
    .transport-section {
        display: flex;
        flex-direction: row; 
        align-items: center;
        justify-content: space-between;
        padding: 50px 20px;
        margin-top: -100px !important;
    }
    .transport-left {
        width: 60%;
        text-align: left;
        padding: 0 5%;
    }
    .subtitulo-transport,
    .titulo-transport {
        text-align: left;
        margin-left: 0;
    }
    .descripcion-transport {
        text-align: justify;
        font-size: 16px;
        margin: 0;
    }
    .transport-imagen:nth-child(2) {
        display: none;
    }
    .transport-right {
        width: 45%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: 5px;
    }
    .transport-imagen:first-child {
        width: 100%;
        height: 400px !important; 
        object-fit: cover;
        border-radius: 5px;
    }
    .transport-collage {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .transport-imagen:first-child {
        width: 90%;
        height: 350px;
        object-fit: cover;
        border-radius: 5px;
    }
    .btn-transport {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 8px 16px;
        font-size: 14px;
        text-align: center;
        margin: 20px auto;
        width: fit-content;
        min-width: fit-content;
        border-radius: 5px;
    }
    h1 {
        font-size: 42px;
        text-align: left; 
        max-width: 80%;  
        line-height: 1.3;
        margin-left: 20%;
    }

}
@media (min-width: 1280px) and (max-width: 1366px) {
    .entertainment-section {
        padding: 20px 0px;
    }
    .entertainment-left {
        width: 55%;
        padding-right: 50px; 
        align-items: flex-start;
    }
    .subtitulo-entertainment {
        font-size: 22px;
        margin-bottom: 15px;
    }
    .titulo-entertainment {
        font-size: 32px;
        margin-bottom: 10px;
    }
    .descripcion-entertainment {
        font-size: 18px;
        line-height: 2.0;
    }
    .entertainment-right {
        width: 60%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: -10px !important;
        margin-right: 20px;
    }
    .imagen-entertainment {
        width: 100%; 
    }
    .btn-compra {
        padding: 14px 28px !important;
        font-size: 18px; 

    }
    #prevBtn, #nextBtn {
        font-size: 2.2rem;
        padding: 12px 18px;
    }

    .tickets-description {
        font-size: 18px;
        line-height: 1.8;
        margin-bottom: 35px;
    }
    .tickets-title {
        font-size: 34px;
        margin-bottom: 25px;
    }
    .btn-tickets {
        padding: 14px 32px;
        font-size: 16px;
    }

    /* Waves */
    .homepage-wave8 {
        display: block;
        width: 100%;
        line-height: 0 !important;
        margin: -2px 0 -1px 0 !important;
        padding: 0 !important; 
        position: relative;
        top: -2px !important; 
    }

    .homepage-wave8 svg {
        display: block;
        width: 100%;
        height: auto;
        margin: 0 !important;
        padding: 0 !important;
    }
}
@media (min-width: 1025px) and (max-width: 1366px) {
    .homepage-wave8 {
        display: block;
        width: 100%;
        line-height: 0 !important; 
        margin: -80px 0 -1px 0 !important;
        padding: 0 !important; 
        position: relative;
        top: -2px !important; 
    }

    .homepage-wave8 svg {
        display: block;
        width: 100%;
        height: auto;
        margin: 0 !important;
        padding: 0 !important;
    }
    .homepage-wave9 {
        margin-top: -215px !important; 
        display: block;
        width: 100%;
        line-height: 0 !important;
    }
}
@media (min-width: 768px) and (max-width: 834px) {
    .homepage-wave8 {
        width: 100%;
        height: auto;
        margin-top: 90px !important; /* Ajusta la distancia al top */
        padding: 0 !important;
        line-height: 0;
        display: block;
        position: relative;
        transform: translateY(20px) !important; /* Baja el wave si es necesario */
    }

    .homepage-wave8 svg {
        display: block;
        width: 100%;
        height: auto;
        margin: 0 !important;
        padding: 0 !important;
    }
}