:root {
    --blue-main: #224588;
    --grey-main: #D9D9DA;
    --font-main: #4F4E4E;
}

a{
    text-decoration: none;
}

body {
    margin: 0px;
    padding: 0px;
    font-family: Arial, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: white;
    color: var(--font-main);
}

h2 {
    color: var(--blue-main);
    font-weight: bold;
}

nav {
    position: sticky;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 75px;
    z-index: 100;
    background-color: var(--grey-main);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    color: var(--blue-main);
}



.dropdown {
    position: relative;
    display: inline-block;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}

.dropdown-toggle {
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: white;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    padding: 10px 0;
    z-index: 1;
    min-width: 150px;
    height: 100px;
    margin-top: 50px;
}

.dropdown-menu a {
    display: block;
    padding: 8px 16px;
    color: #000;
    text-decoration: none;
    text-align: center;
}

.dropdown-menu a:hover {
    background-color: #f0f0f0;
}

.dropdown:hover .dropdown-menu {
    display: block;
}


.cta-button {
    background-color: var(--blue-main);
    color: white;
    border-radius: 25px;
    padding: 8px 25px;
    border: none;
    font-size: 1.2rem;
    font-weight: 800;
    cursor: pointer;
}

.btn-reserva {
    background-color: var(--blue-main);
    color: white;
    border-radius: 25px;
    padding: 8px 25px;
    border: none;
    font-size: 1.2rem;
    font-weight: 800;
    cursor: pointer;
}

.text-200,small{
    width: 250px;
    font-weight: light;
    margin: 5px 5px;
    font-size: 1rem;
    text-align: start;
    display: flex;
    width: 100%;
}

/* .comodidades-div{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
} */
.row2{
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
    align-content: start;
    width: 20rem;
    height: 100%;
}

.row3{
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    align-items: flex-start;
    align-content: start;
    width: 100%;
    height: 100%;
}

.row-ajust{
    height: 100%;
}

i {
    margin-right: 10px;
}

.row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items:start;
    justify-content: space-between;
    height: auto;
    width: 100%;

    margin-bottom: 20px !important;
}

.row-logo-hr {
    display: flex;
    flex-direction: row;
    align-items:center;
    justify-content: space-evenly;
    width: 100%;
    margin: 30px 0px;
}

.row-logo-hr hr{
    color: #224588; 
    background-color: #224588;
    height: 1px; 
    width: 45%;
}

.row input {
    background-color: var(--grey-main);
    padding: 5px 15px;
    min-width: 150px;
    margin: 10px 20px;
    border: none;
    border-radius: 50px;
}

.row textarea {
    background-color: var(--grey-main);
    padding: 15px;
    min-width: 250px;
    min-height: 150px;
    margin: 10px 0px;
    border: none;
    border-radius: 20px;
}

/* --------------------------------- Menu */
nav a {
    text-decoration: none;
    color: var(--blue-main);
    margin: 10px;
    text-transform: uppercase;
    font-weight: bold;
}

.header {
    width: 100%;
    height: 90vh;
    top: 0px;
    left: 0px;
    background-image: url("../img/inicial/home.jpeg");
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    background-attachment:fixed;
}

.header2 {
    width: 100%;
    height: 90vh;
    top: 0px;
    left: 0px;
    background-image: url("../img/inicial/799d9df37dde42439dca003874b9c739.jpg");
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    background-attachment:fixed;
}

nav a {
    font-size: 1.2rem;
    font-weight: 800;
    padding: 8px 25px;
    border-radius: 25px;
    border: none;
    color: inherit;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Estilo ativo */
nav a.active {
    background-color: var(--blue-main);
    color: white;
}

/* Hover apenas nos <a> que NÃO forem a logo */
nav a:not(.logo-link):hover {
    background-color: var(--blue-main);
    color: white;
}


/* --------------------------------- Formulário de reserva */

.booking-form {
    width: 100%;
    padding: 25px 0px;
    border-radius: 15px;
    text-align: center;
}


.booking-form input[type="submit"] {
    background-color: var(--blue-main);
    color: white;
}


/* --------------------------------- Página inicial */

.branches {
    display: flex;
    flex-direction: column;            
    align-items: center;
    justify-content: space-evenly;
    padding: 30px 0px;
}

.hotel-info {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    padding: 10px 0px 10px 0px;
    text-align: center;
    color: var(--font-main);
    border-radius: 10px;
}

.hotel-info p {
    max-width: 380px;
    margin-top: 20px;
}

.hotel-info button {
    padding: 10px 20px;
    color: var(--font-main);
    background-color: var(--grey-main);
    border: none;
    border-radius: 50px;
}

.hotel-info img {
    margin-left: 80px;
    max-width: 750px;
    max-height: 500px;
}

.hotel-info a {
    color: var(--font-main);
    text-decoration: none;
}

.comodidades {
    display: flex;
    flex-direction: column;   
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
    
}

.comodidades-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    border: solid var(--font-main) 1px;
    color: var(--font-main);
    padding: 20px;
    margin: 20px;
    width: 150px;
    min-height: 120px;
    text-align: center;
    border-radius: 25px;
}

.comodidades-info i {
    font-size: 2em;
}

footer {
    width: 100%;
    background-color: var(--blue-main);
    padding: 0px 0px 25px 0px;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

footer a {
    color: white;
    text-decoration: none;
}

footer h2 {
    color: white;
}

.footer-info {
    margin: 50px;
    text-align: center;
    min-height: 150px;
}

.footer-info.redes-sociais a {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
    text-decoration: none;
    color: white;
    font-size: 16px;
}

.footer-info.redes-sociais img {
    width: 40px;
    height: auto;
    text-align: left;
}


.text-title{
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0px;
    margin-top: 20px;
}

.text-body{
    font-size: 1.2rem;
}

.texto-avaliacao{
    font-size: 1.2rem;
    font-style: italic;
    margin-top: 10px;
}

.avaliacao-nome{
    font-size: 1rem;
    font-weight: 200;
    margin-bottom: 2px;
}
.avaliacao-site{
    font-size: 0.8rem;
    margin-top: 0px;
}

.hotel-name{
    font-size: 2rem;
    margin-bottom: 0px;
}

.text-localization, .text-telephone{
    font-size: 1rem;
    font-weight: bold;
    margin-top: 0px;
}

.btn{
    font-weight: bolder;
}
.image-room{
    width: 750px;
    height: 100%;
}

.select-options,
input[type="date"] {
    padding: 10px;
    border-radius: 40px;
    background-color: var(--grey-main);
    border: none;
    font-size: 16px;
    height: 2.5rem;
    margin: 5px;
    padding-right: 10px;
    width: auto;
    box-sizing: border-box;
    color: var(--font-main);
    font-weight: bold;
}


/* --------------------------------- Página "Hotéis" */
.lodging {
    display: flex;
    flex-direction: column;            
    align-items: center;
    justify-content: space-evenly;
    padding: 30px 0px;
}

.tabcontent_hotel {
    padding: 6px 12px;
    border-top: none;
    background-color: var(--grey-main);
    margin: 15px 0px;
    border-radius: 20px;
    width: 100%;
    display: none;

}

.tabcontent_hotel img{
    max-width: 400px;
    max-height: 300px;
    /* margin-left: 30px; */
    margin-top: 10px;
}
.tab-image{
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}
.comodidades-tab-texto{
    font-size: 1.5rem;
    font-weight: bold;
}
.tab-itens-div{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem 10rem;
    justify-items: space-between; 
    justify-content: center;
    justify-self: center;
    align-items: center;
    /* margin-left: 50px; */

}

/* .tab-itens{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
} */
.tab-itens-div p {
    font-size: 1.2rem;
    margin-top: 0px;
}

.tab-itens-div2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem 2rem;
    justify-items: space-between; 
    align-items: center;
    margin-left: 50px;
}
.tab-itens-div2 p {
    font-size: 1.2rem;
    margin-top: 0px;
}

/* Grande imagem do mapa */
.map-paralax {
    width: 100%;
    height: 90vh;
    top: 0px;
    left: 0px;
    background-image: url("../img/hoteis.jpeg");
    background-size:cover;
    background-position: bottom;
    background-repeat: no-repeat;
    background-attachment:fixed;
}


/* Página Reservas */
#reservation-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40vw;
}

.photos-column {
    display: flex;
    flex-direction: column;
    width: 40vw;
}

.photos-column img {
    margin: 15px;
    max-width: 100%;
}

  .tabcontent_hotel.active {
    display: block;
  }

/* --------------------------------- TABS component */
.row-event-total{
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    margin-left: 30px;
}
.row-event{
    display: flex;
    justify-content: flex-start;
    margin-left: 10rem;
    align-items: center;
    margin-top: 10px;
    width: 100%;
  }
  .event-text{
    margin-top: 5px;
    font-size: 1.2rem;
  }
  .row-event2{
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .text-200-event{
    width: 250px;
    font-weight: light;
    margin: 5px 5px;
    font-size: 1.1rem;
    text-align: start;
    display: flex;
    width: 100%;
    margin-bottom: 15px;
}

.photos-column-event {
    display: flex;
    flex-direction: column;
    width: 40vw;
    margin-top: 5px;
    margin-left: 15rem;
}

.photos-column-event img {
    margin: 15px;
    max-width: 100%;
    width: 400px;
    height: 250px;
}

.cta-button-event{
    background-color:#ddd;
    color: var(--font-main);
    border-radius: 25px;
    padding: 8px 25px;
    border: none;
    font-size: 1.2rem;
    font-weight: 800;
    margin-top: 15px;
    margin-left: 20px;
}

/* Style the tab */
.tab {
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    width: 90%;
  }
  
  /* Style the buttons inside the tab */
  .tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 18px;
    transition: 0.3s;
    font-size: 18px;
    color: #717171;
    background-color: #f2f2f2;
    border-radius: 20px;
    padding: 5px 20px;
  }
  
  /* Change background color of buttons on hover */
  .tab button:hover {
    background-color: #ddd;
  }
  
  /* Create an active/current tablink class */
  .tab button.active {
    background-color: #ccc;
    font-weight: bold;
  }
  
  /* Style the tab content */
  .tabcontent {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .tabcontent.active {
    display: block;
  }
  .contact-form {
    max-width: 500px; /* Largura máxima do formulário */
    margin: 0 auto; /* Centraliza na página */
    padding: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block; /* Faz o label ficar acima do input */
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box; /* Evita que o padding aumente a largura */
}

.form-group textarea {
    height: 120px; /* Altura fixa para a área de mensagem */
    resize: vertical; /* Permite redimensionar apenas verticalmente */
}

.submit-button {
    background-color: #0066cc;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
}

.submit-button:hover {
    background-color: #0055aa;
}
    .container {
    display: grid;
    grid-template-columns: auto 1fr; /* Primeira coluna para imagem, segunda para texto */
    align-items: center;
    gap: 10px;
    }

    /* Estrutura base das colunas lado a lado */
.row {
    display: flex;
    justify-content: center;
    gap: 100px; /* Espaço entre as colunas */
    flex-wrap: wrap;
    margin-bottom: 30px;
  }
  
  /* Cada coluna da lista de benefícios */
  .col {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Espaço entre os itens dentro da coluna */
  }
  
  /* Cada item (ícone + texto) */
  .item {
    display: flex;
    align-items: center;
    max-width: 600px;
  }
  
  /* Imagem do medalhão */
  .item img {
    width: 65px;
    margin-right: 10px;
  }
  
  /* Título e parágrafos centrais */
  section.comodidades h2,
  section.comodidades p {
    text-align: center;
  }
  /* Estilo específico para a linha com as imagens dos hotéis */
.row.spaced-images {
    display: flex;
    justify-content: space-between; /* Uma à esquerda, outra à direita */
    align-items: center;
    width: 100%;
    max-width: 1000px;
    padding: 40px 60px;
    box-sizing: border-box;
    margin: 0 auto; /* Centraliza a linha no container */
    flex-wrap: wrap; /* Evita quebra feia em telas menores */
    gap: 300px; /* Espaço entre os itens quando empilhados */
}

.row.spaced-images div {
    text-align: center;
    flex: 1; /* Ambos os blocos ocupam o mesmo espaço */
    min-width: 250px;
}

.row-img{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 10px;
  }

  .form-container {
    display: flex;
    gap: 30px;
    align-items: flex-start;
  }
  
  .left-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 25px;
  }
  
  .form-group {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .form-group label {
    width: 60px;
    font-weight: bold;
  }
  
  .left-form input {
    background-color: #e5e1db;
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    width: 350px;
  }
  
  .right-form {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 10px;
  }
  
  .right-form label {
    font-weight: bold;
  }
  
  .right-form textarea {
    background-color: #e5e1db;
    border: none;
    border-radius: 40px;
    padding: 20px;
    width: 400px;
    height: 150px;
    resize: none;
  }

  .row-text {
    width: 100%;
    display: flex;
    align-items: flex-start;
    text-align: left;
    margin-left: 200px;
    margin-top: 10px;
  }

  .row-text2 {
    width: 100%;
    display: flex;
    align-items: flex-start;
    text-align: left;
    margin-left: 200px;
    margin-top: 50px;
  }

  .consultar-btn{
    display: none;
  }
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 15px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    height: 4px;
    background-color: var(--blue-main);
    border-radius: 2px;
    transition: 0.3s ease;

}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(13px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-13px);
}

/* Para Smartfones 
/* Reset básico para consistência entre navegadores */

/* Responsividade */
@media (max-width: 480px) {
    * {
        box-sizing: border-box;
    }
    
    html, body {
        max-width: 100vw;
    }
    body {
        font-size: 14px;
        justify-content: flex-start;
        align-items: stretch;
        width: 100%;
    }
    
    nav {
        flex-direction: row-reverse;
        align-items: center;
        height: 5rem;
        width: 100%;

    }

    nav a{
        font-size: 0.8rem;
        padding: 0;
    }
    
    .menu-toggle {
        display: flex;
        margin-bottom: 30px;
        margin-top: 30px;
        margin-left: 10px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background-color: white;
        position: absolute;
        top: 80px;
        right: 2px;
        width: 100%;
        box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        padding: 10px;
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    .navbar{
        /* padding-left: 5px; */
        width: 100%;
    }

    nav div a {
        padding: 10px 0;
        display: block;
        text-align: center;
        font-size: 1rem;
    }

    .dropdown:hover .dropdown-menu {
        display: block;
    }


    .logo-link{
        padding: 0px;
        margin: 0px;
    }
    .logo-link img{
        width: 220px;
        height: 100%;
    }

    .booking-form {
        display: none;
    }
    
    .consultar-btn {
        background-color: var(--blue-main);
        color: white;
        border-radius: 25px;
        display: flex;
        padding: 8px 25px;
        border: none;
        font-size: 1.2rem;
        text-align: center;
        align-self: center;
        justify-content: center; 
        align-items: center;    
        font-weight: 800;
        cursor: pointer;
        margin: 10px 10px;
        width: 80%;
    }

    .select-options,
    input[type="date"],
    input[type="text"],
    .cta-button {
        width: 80%;
        font-size: 0.8rem;
        margin: 5px 0;
        box-sizing: border-box;
    }

    .text-telephone{
        margin: 0px 0px;
        display: flex;
        justify-content: center;
        flex-direction: column;
    }

    .text-telephone a{
        margin: 10px 10px;
    }

    .header{
        height: 60vh;
        width: 100%;
    }

    .header2{
        height: 60vh;
        width: 100%;
    }

    .hotel-info {
        flex-direction: column;
        align-items: center;
    }

    .hotel-info img {
        margin-left: 0px;
        max-width: 100%;
    }

    .hotel-info p {
        margin-top: 10px;
        max-width: 100%;
        font-size: 1rem;
    }

    .hotel-info button {
        margin-top: 10px;
        width: 70%;
    }

    .row {
        display: flex;
        justify-content: center;
        gap: 0px; /* Espaço entre as colunas */
        flex-wrap: wrap;
        margin-bottom: 20px;
        flex-direction: column;
        align-items: center;
        width: 90%;
      }
    
    .avaliacao-nome{
        font-size: 0.5rem;
    }

    section.comodidades.row img{
        width: 10px;
    }

    .comodidades-info {
        width: 60%;
        height: 1rem;
        margin-top: 10px;
        padding: 5px;
    }

    .text-title {
        font-size: 1.8rem;
        text-align: center;
        margin: 10px 10px;
        display: flex;
        justify-content: center;
        flex-direction: column;
    }

    .text-body{
        font-size: 1rem;
        text-align: center;
        margin: 10px 10px;
    }

    .texto-avaliacao,
    .avaliacao-nome,
    .avaliacao-site,
    .text-localization{
        font-size: 1rem;
        text-align: center;
        margin: 0px 10px;
    }

    footer {
        width: 100%;
        background-color: var(--blue-main);
        padding: 0px 0px 25px 0px;
        color: white;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    footer a {
        color: white;
        text-decoration: none;
    }
    
    footer h2 {
        color: white;
        text-align: center;
        text-align: center !important;
    }

    .footer-info, .redes-sociais {
        margin: 20px 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        margin-right: 10px;
        font-size: 1rem;
    }

    .footer-info.redes-sociais a {
        justify-content: center;
    }

    
    .footer-info.redes-sociais a {
        display: flex;
        align-items: center;
        text-align: center;
        gap: 10px;
        margin: 10px 0;
        text-decoration: none;
        color: white;
        font-size: 16px;
    }
    
    .footer-info.redes-sociais img {
        width: 40px;
        height: auto;
        text-align: left;
    }

    /* Página hóteis responsiva*/

    .tab button{
        margin-right: 10px;
        font-size: 1rem;
    }
    
    .comodidades-tab-texto{
        font-size: 1.4rem;
    }

    .tab-itens-div{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem 1rem;
        padding: 10px;
    }

    .tab-itens-div p {
        font-size: 1rem;
        margin-top: 0px;
        width: 100%;
    }
    .tabcontent_hotel{
        padding: 6px 0px;
    }
    .tab-image button{
        background-color: var(--blue-main);
        color: white;
        border-radius: 25px;
        padding: 8px 25px;
        border: none;
        font-size: 1.2rem;
        font-weight: 800;
        cursor: pointer;
        margin: 10px 10px;
        width: 100%;
    }
    .tab-image{
        width: 100%;
        margin-bottom: 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-left: 0;
    }
    .tab-image img{
        width: 90%;
        justify-content: center;
        align-items: center;
        margin-left: 0;
    }
    .map-paralax {
        width: 100%;
        height: 380px;
        top: 0px;
        left: 0px;
        background-image: url("../img/hoteis.jpeg");
        background-size: contain;
        background-size: 100% 370px;
        background-position: bottom;
        background-repeat: no-repeat;
        background-attachment:scroll;
        align-items: center;
    }

    /* Página Reservas - Responsiva*/

    #reservation-info{
        display: flex;
        flex-direction: column;
        
        width: 100%;
    }

    .tab-itens-div2 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap:  0.8rem;
        justify-items: space-between; 
        align-items: center;
        margin-left: 30px;
        margin-right: 10px;
    }
    .tab-itens-div2 p {
        font-size: 1rem;
        margin-top: 10px;
        margin-bottom: 0;
    }

    #reservation-info.btn-reserva{
        color: white;
        border-radius: 25px;
        padding: 8px 25px;
        border: none;
        font-size: 1.2rem;
        font-weight: 800;
        cursor: pointer;
        margin: 10px 10px;
        width: 90%;
    }

    .photos-column {
        display: flex;
        flex-direction: column;
        width: 100vw;
    }
    
    .photos-column img {
        margin: 10px;
        max-width: 100%;
    }

    /* Página Eventos - Responsiva*/

    .lodging {
        display: flex;
        flex-direction: column;            
        align-items: center;
        justify-content: center;
        padding: 30px 0px;
        max-width: 100%;
        overflow-x: hidden;
    }

    .row-event-total {
        flex-direction: column;
        margin-left: 10px;
    }

    .row-event {
        flex-direction: column;
        align-items: flex-start;
        margin-left: 10px;
        width: 100%;
    }

    .event-text {
        font-size: 1rem;
        text-align: left;
    }

    .row-event2 {
        width: 100%;
    }

    .text-200-event {
        font-size: 0.9rem;
        margin: 3px 0;
        white-space: normal;
        display: flex;
        /* flex-wrap: wrap; */
        align-items: flex-start;
        gap: 3px;
    }

    .text-200-event strong {
        white-space: nowrap; /* impede quebra no "50 pessoas" */
    }

    .photos-column-event {
        width: 100%;
        margin-left: 0;
        align-items: center;
        display: flex;
        justify-content: center;
    }

    .photos-column-event img {
        width: 90%;
        margin: 10px 0;
    }

    .cta-button-event {
        margin-left: 0;
        align-self: center;
        font-size: 1rem;
        padding: 6px 20px;
        display: flex;
        justify-content: center;
        justify-self: center;
    }

    .tab {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        width: 80%;
        overflow-x: auto;
        white-space: nowrap;
        gap: 10px; /* espaço entre botões */
        padding: 10px;
      }
    
      .tab button {
        flex-shrink: 0;
      }

    /* Página Fidelidade - Responsiva*/

    .row-img{
        margin-bottom: 5px;
    }
    .row-img img{
        margin: 5px 0px !important;
        width: 100%;
    }

    .row.cta-button button{
        background-color: var(--blue-main);
        color: white;
        border-radius: 25px;
        padding: 8px 25px;
        border: none;
        font-size: 1.2rem;
        font-weight: 800;
        cursor: pointer;
        margin: 10px 10px;
        width: 90%;
    }

    .item {
        max-width: 450px;
      }

    .item img {
        width: 55px;
        margin-left: 10px;
      }

      .row.spaced-images {
        display: flex;
        justify-content: space-between; /* Uma à esquerda, outra à direita */
        align-items: center;
        width: 100%;
        max-width: 1000px;
        padding: 20px 60px;
        box-sizing: border-box;
        margin: 0 0; /* Centraliza a linha no container */
        flex-wrap: wrap; /* Evita quebra feia em telas menores */
        gap: 50px; /* Espaço entre os itens quando empilhados */
    }
    /* Página Contato - Responsiva*/

    .row-contact{
        display: flex;
        justify-content: center;
        margin-left: 5%;
    }
    .contact-div{
        display: flex;
        justify-content: center;
    }
    .form-container {
        display: flex;
        gap: 20px;
        flex-direction: column;
        align-items: center;
        width: 100%;
      }
      
      .left-form {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
      }
      
      .form-group {
        display: flex;
        align-items: left;
        flex-direction: column;
        gap: 5px;
        width: 350px;
      }
      
      .form-group label {
        width: 100%;
        font-weight: bold;
        text-align: left;
        margin-left: 20px;
      }
      
      .left-form input {
        background-color: #e5e1db;
        border: none;
        border-radius: 20px;
        padding: 10px 20px;
        width: 90%;
      }
      
      .right-form {
        display: flex;
        flex-direction: column;
        gap: 5px;
        margin-bottom: 10px;
      }
      
      .right-form label {
        font-weight: bold;
        margin-bottom: 5px;
      }
      
      .right-form textarea {
        background-color: #e5e1db;
        border: none;
        border-radius: 40px;
        padding: 20px;
        width: 330px;
        height: 150px;
        resize: none;
      }

      .contact-information{
        display: flex;
        flex-direction: column;
        margin-left: 20px;
      }

      .contact-information p{
        font-size: 1rem;
        margin: 10px 0px;
      }

      .contact-logo{
        width: 200px;
      }

      .contact-div{
        margin-top: -10px;
      }

      iframe{
        width: 100%;
      }
  }