/* hotel.css */

/* Estilos para o banner do Hotel Eco Chalé */
.thermas-page .park-banner {
    background-image: url('../images/parques/thermas_dos_laranjais/thermas_dos_laranjais_banner.webp'); 
}

.hot-beach-page .park-banner {
    background-image: url('../images/parques/hot_beach/hot_beach_banner.webp'); 
}

.vale-dinossauro-page .park-banner {
    background-image: url('../images/parques/vale_dinossauro/vale_dinossauro_banner.webp'); 
}

.museu-cera-page .park-banner {
    background-image: url('../images/parques/muse_cera/museu_cera_banner.webp'); 
}

.pit-stop-page .park-banner {
    background-image: url('../images/parques/pit_stop/pit_stop_banner.webp'); 
}

.vila-guarani-page .park-banner {
    background-image: url('../images/parques/vila_guarani/vila_guarani_banner.webp'); 
}

.orionverso-page .park-banner {
    background-image: url('../images/parques/orionverso/orionverso_banner.webp'); 
}


/* Estilos para o banner do hotel */
.park-banner {
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 50px 0;
    height: 200px;
}

.park-banner h1 {
    font-size: 3em;
    margin: 50px;
    text-shadow: 0.1em 0.1em 0.2em black
}

/*Vem pro thermas*/
.break{
    background-image: url('../images/fundo_form.png');
    padding: 32px 20px;
}

.break h2{
    text-align: center;
    color: #054E72;
    font-size: 1.75em;
    font-weight: 700;
    margin: 0 0 24px ;
}

.break h2::after{
    content: '';
    display: block;
    max-width: 650px;
    width: 100%;
    height: 3px;
    background-color: #FFC600;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

#vem-pro-thermas{
    display: flex;
    align-items: center;
    justify-content: center;
}

#vem-pro-thermas a {
    text-decoration: none;
    color: white;
    background-color: #0072CE;
    padding: 16px 64px;
    font-size: 1.3em;
    border-radius: 32px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

#vem-pro-thermas a:hover{
    transform: scale(1.05);
}

/* CTA Hot Park */
#cta1-section{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    
    background-image: url('../images/Fundo.png');
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;

    height: 200px;
}
.cta1-div {
    padding: 0;

    text-align: center;

    padding: 0 12px;
}

.cta1-div h2 {
    margin: 0;

    padding: 0;

    color: white;
}

.cta1-div h2::after{
    content: '';
    display: block;
    height: 3px;
    background-color: #FFC600;
    margin: 12px auto  ;
}

.cta1-button{
    all: unset;

    cursor: pointer;

    background-color: #25D366;
    color: white;

    font-weight: 700;
    font-size: 1em;

    max-width: 250px;

    padding: 8px 16px;
    margin: auto;

    border-radius: 32px;
    border: 1px solid white;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;
}

.cta1-button ion-icon{
    font-size: 1.35em;
}


/* Estilos para o conteúdo do hotel */
.hotel-content {
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}

.hotel-description {
    display: grid;
    grid: 600px / 1fr 1fr;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.hotel-text {
    flex: 1;
    
}

.hotel-text h2 {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.hotel-text h2::after {
    content: '';
    display: block;
    width: 180px;
    height: 5px;
    background-color: #FFC600;
    position: absolute;
    left: 0;
    bottom: 0;
}

.hotel-gallery {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.blue-box {
    background-color: #054e72;
    color: white;
    padding: 20px;
    text-align: center;
    border-radius: 5px 5px 0 0; /* Adicionado borda arredondada superior */
    margin-bottom: 0; /* Removido o espaço em branco */
    margin-top: 10px;
}

.hotel-gallery h2 {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 10px;
    color: white;
}

.hotel-gallery h2::after {
    content: '';
    display: block;
    width: 230px;
    height: 5px;
    background-color: #FFC600;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}

.large-image {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
}

.large-image img {
    width: 100%;
    height: auto;
    border-radius: 0 0 5px 5px; /* Adicionado borda arredondada inferior */
}

.thumbnails {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 0; /* Removido espaço extra */
}

.thumbnails img {
    width: 54px;
    height: 54px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
}

.hotel-map {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    background: white;
    border-radius: 10px;
    overflow: hidden;
    padding: 20px;
    margin-bottom: 20px;
}

.hotel-map h2 {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.hotel-map h2::after {
    content: '';
    display: block;
    width: 150px;
    height: 5px;
    background-color: #FFC600;
    position: absolute;
    left: 0;
    bottom: 0;
}

.hotel-description h2, .hotel-map h2 {
    color: #0072CE;
    margin-top: 30px;
}

.hotel-gallery h2 {
    color: white;
    margin-top: 0; /* Ajustado para remover espaço extra */
}

.hotel-description p, .hotel-description li, .hotel-gallery p, .hotel-map p {
    color: #666;
}

.hotel-map iframe {
    width: 100%;
    height: 300px;
    border: none;
}

@media (max-width: 768px) {
    .hotel-description {
        align-items: center;
        justify-content: center;
        display: flex;
    }

    .hotel-gallery {
        order: -1; /* Garantir que a galeria venha antes no fluxo */
    }

    .hotel-text {
        flex: none;
        width: 85%;
    }
    .hotel-banner h1 {
        font-size: 2em; /* Reduzir o tamanho da fonte */
        margin: 30px;
    }   
    
    .large-image img {
        width: 100%; /* Garantir que a imagem ocupe toda a largura disponível */
    }
}