/* Importação da fonte Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');

/* Variáveis CSS para as cores do PDF */
:root {
    --color-dark-green: #093c2d;
    --color-medium-green: #3b6554;
    --color-light-green: #dbf2dc;
    --color-light-background: #dbf2dc; /* Cor de fundo principal */
    --color-text-dark: #093c2d;
    --color-text-light: #dbf2dc;
    --color-reviews-bg: #333333; /* Fundo cinza escuro para caixa de avaliações */
    --color-stars: #FFD700; /* Dourado para as estrelas */
}

/* Reset básico e fontes */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-light-background);
    text-align: center;
    color: var(--color-text-dark);
    line-height: 1.5; /* Espaçamento entre linhas padrão */
}

/* Botão topo */
.back-to-top {
    position: fixed;
    bottom: 20px; /* Distância do fundo */
    right: 20px;  /* Distância da direita */

    /* Aparência */
    background-color: var(--color-medium-green); /* Ou a cor que preferir */
    color: var(--color-text-light);
    padding: 15px;
    border-radius: 50%; /* Para deixá-lo redondo, se quiser */
    text-align: center;
    font-size: 1.4rem; /* Tamanho da seta/ícone */
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    opacity: 0; /* Começa invisível */
    visibility: hidden; /* Começa oculto para leitores de tela */
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out; /* Transição suave */
    z-index: 999; /* Garante que fique acima de outros elementos */
}

.back-to-top:hover {
    background-color: var(--color-reviews-bg); /* Efeito ao passar o mouse */
}

/* Classe que o JavaScript irá adicionar para mostrar o botão */
.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* --- Cabeçalho (Página 1 do PDF) --- */
.header {
    background-color: var(--color-light-green);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 2%;
    min-height: 120px;
    position: relative;
}

.logo-container {
    position: relative;
    z-index: 1001; /* Z-index alto para ficar acima do menu mobile */
    flex-shrink: 0;
}

.logo-image {
    border-radius: 25%;
    max-width: 230px;
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Container que agrupa NAV e o Botão Reserve */
.nav-container {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.main-nav a {
    color: var(--color-text-dark);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 5px 32px;
    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: #488255;
}

.reserve-button {
    background-color: var(--color-medium-green);
    color: var(--color-text-light);
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 1.3rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.reserve-button:hover {
    background-color: #274237;
}

/* ESTILOS DO MENU HAMBÚRGUER (SÓ APARECE EM MOBILE) */
.hamburger-btn {
    display: none; /* Escondido por padrão no desktop */
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001; /* Deve ficar acima de tudo */
    flex-direction: column;
    gap: 5px;
}

.hamburger-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-text-dark);
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}

/* Animação do Hambúrguer para "X" */
.hamburger-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
}
.hamburger-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


/* --- Banner Principal (Página 1 do PDF) --- */
.hero-banner {
    background-color: var(--color-dark-green);
    color: var(--color-text-light);
    padding: 20px;
    margin: 20px 2%;
    border-radius: 20px;
    font-size: 1.15rem; /* Ajustado para rem */
    font-weight: bold;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* --- SEÇÃO DE IMAGEM ÚNICA (PRINCIPAL) --- */
.single-image-section {
    padding: 40px 2%;
    max-width: 1200px;
    margin: 40px auto;
}

.image-container-outer {
    background-color: var(--color-dark-green);
    border-radius: 20px;
    padding: 18px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
}

.single-hero-image {
    width: 100%;
    max-height: 400px; /* Usado max-height para flexibilidade */
    height: auto; /* Permitir ajuste automático de altura */
    object-fit: cover;
    border-radius: 15px;
    display: block;
}

/* --- Títulos de Seção GLOBAL --- */
.section-title-container {
    background-color: var(--color-dark-green);
    color: var(--color-text-light);
    padding: 25px 0;
    margin: 0;
    width: 100%;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.section-title {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.section-subtitle {
    font-size: 1.1rem;
    font-weight: normal;
}

/* --- Seção "Os Chalés" (Páginas 2 e 3 do PDF) --- */
.chales-section {
    padding: 40px 2%;
    max-width: 1200px;
    margin: 0 auto;
}

.chale-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.chale-card {
    background: var(--color-medium-green);
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.chale-image {
    width: 100%;
    max-height: 200px; /* Usado max-height para flexibilidade */
    height: auto; /* Permitir ajuste automático de altura */
    border-radius: 10px;
    object-fit: cover;
    margin-bottom: 15px;
}

.chale-button {
    background-color: var(--color-dark-green);
    color: var(--color-text-light);
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease;
    white-space: nowrap;
    display: inline-block;
}

.chale-button:hover {
    background-color: #05231a;
}

.chales-highlight {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--color-text-light);
    margin-top: 30px;
    padding: 10px 20px;
    background-color: var(--color-dark-green);
    border-radius: 15px;
    display: inline-block;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* --- Seções de Informação (Páginas 4 e 5 do PDF) --- */
.info-section {
    padding: 10px 2%;
    max-width: 1200px;
    margin: 0 auto;
}

.info-block {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    background-color: var(--color-medium-green);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.info-block.reverse-layout {
    flex-direction: row-reverse;
}

.info-image-container {
    background-color: var(--color-light-background);
    border-radius: 15px;
    padding: 10px;
    flex: 0 0 45%;
    max-width: 45%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.info-image {
    width: 100%;
    max-height: 300px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    display: block;
}

.info-text {
    flex-grow: 1;
    text-align: left;
    font-size: 1.375rem;
    font-weight: bold;
    color: var(--color-text-light);
}

.info-text hr {
    border: none;
    border-top: 2px solid var(--color-dark-green);
    margin: 20px 0;
    width: 80%;
}

/* --- Seção "Cachoeira do Machado I" --- */
.cachoeira-section {
    background-color: var(--color-dark-green);
    color: var(--color-text-light);
    padding: 40px 2%;
    max-width: 1200px;
    margin: 40px auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
}

.cachoeira-section .section-title-container {
    background-color: transparent;
    box-shadow: none;
    padding: 25px 0;
    margin: 0 auto 30px auto;
    width: 100%;
}

.cachoeira-section .single-image-section {
    padding: 0;
    margin: 0 auto;
    max-width: 100%;
}

.cachoeira-section .image-container-outer {
    background-color: var(--color-light-background);
    border-radius: 20px;
    padding: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.cachoeira-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    max-width: 1000px;
    margin: 30px auto 0;
    text-align: left;
}

.cachoeira-details {
    flex: 1;
    min-width: 300px;
}

.cachoeira-details h3 {
    font-size: 1.4rem;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--color-text-light);
}

.cachoeira-details p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.cachoeira-reviews {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.reviews-box {
    background-color: var(--color-reviews-bg);
    color: var(--color-text-light);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
}

.reviews-title {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.reviews-rating {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 5px;
    color: var(--color-stars);
}

.stars {
    font-size: 1.8rem;
    vertical-align: middle;
}

.reviews-count {
    font-size: 1.1rem;
}

.review-text {
    font-size: 1rem;
    line-height: 1.5;
    background-color: var(--color-light-background);
    color: var(--color-text-dark);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* --- Seção "Localização" --- */
.location-section {
    padding: 40px 2%;
    max-width: 1200px;
    margin: 40px auto;
    background-color: var(--color-light-background);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
}

.location-section .section-title-container {
    background-color: var(--color-dark-green);
    color: var(--color-text-light);
    box-shadow: none;
    padding: 25px 0;
    margin: 0 auto 30px auto;
    border-radius: 20px 20px 0 0;
    width: 100%;
}

.location-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    max-width: 1000px;
    margin: 30px auto 0;
    text-align: left;
}

.location-info {
    flex: 1;
    min-width: 300px;
}

.location-info h3 {
    font-size: 1.4rem;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--color-text-dark);
}

.location-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.location-info .address {
    font-weight: bold;
    margin-top: 20px;
}

.location-info .rating {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--color-text-dark);
    margin-top: 10px;
}

.map-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--color-medium-green);
    text-decoration: underline;
    font-weight: bold;
}

.location-map {
    flex: 1;
    min-width: 300px;
    background-color: #eee;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.location-map iframe {
    width: 100%;
    height: 350px;
    border: 0;
    display: block;
    max-width: 100%;
}

/* --- Nova Seção: Dúvidas Frequentes (FAQ) --- */
.faq-main-section {
    padding: 40px 2%;
    max-width: 1200px;
    margin: 40px auto;
    background-color: var(--color-light-background);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
}

.faq-main-section .section-title-container {
    background-color: var(--color-dark-green);
    color: var(--color-text-light);
    border-radius: 20px 20px 0 0;
    padding: 25px 0;
    margin-bottom: 30px;
}

.faq-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 800px; /* Limita a largura da seção FAQ */
    margin: 0 auto; /* Centraliza */
    text-align: left; /* Alinha o texto das perguntas/respostas à esquerda */
    padding: 0 20px 20px; /* Padding interno */
}

.faq-item {
    background-color: var(--color-medium-green);
    border-radius: 10px;
    overflow: hidden; /* Importante para a transição de altura */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.faq-question {
    background-color: var(--color-dark-green);
    color: var(--color-text-light);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.faq-question h3 {
    margin: 0; /* Remove margem padrão do h3 dentro do botão */
    flex-grow: 1; /* Permite que o h3 ocupe o espaço */
    color: var(--color-text-light); /* Garante que o texto da pergunta seja claro */
}

.faq-question:hover {
    background-color: #05231a;
}

.faq-arrow {
    font-size: 1.5rem;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg); /* Gira a seta para cima quando ativo */
}

.faq-answer {
    background-color: var(--color-light-green); /* Fundo claro para a resposta */
    color: var(--color-text-dark); /* Texto escuro para a resposta */
    padding: 0 20px; /* Padding horizontal, vertical 0 para esconder */
    max-height: 0; /* Começa escondido */
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out; /* Transição suave */
}

.faq-item.active .faq-answer {
    max-height: 200px; /* Altura máxima para mostrar o conteúdo, ajuste se necessário */
    padding: 15px 20px; /* Adiciona padding vertical quando ativo */
}

.faq-answer p {
    margin: 0; /* Remove margem padrão do parágrafo */
}

/* --- Rodapé --- */
.footer {
  background-color: var(--color-dark-green);
  color: var(--color-text-light);
  padding: 50px 2%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
}

.footer-top .footer-brand {
  font-size: 1.8rem;
  font-weight: bold;
}

.footer-top .footer-tagline {
  font-size: 1.1rem;
  color: #cdecd1;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}

.contact-item img {
  width: 22px;
  height: 22px;
}

.contact-item a {
  color: var(--color-text-light);
  text-decoration: none;
  font-weight: bold;
}

.footer-social {
  display: flex;
  gap: 25px;
  justify-content: center;
}

.footer-social img {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.footer-social img:hover {
  transform: scale(1.1);
}

.footer-bottom {
  font-size: 0.9rem;
  color: #bbb;
}

@media (max-width: 600px) {
  .footer {
    gap: 20px;
    padding: 40px 5%;
  }

  .footer-contacts {
    text-align: center;
  }

  .footer-social img {
    width: 26px;
    height: 26px;
  }
}
/* --- MEDIA QUERIES para Responsividade --- */

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
    .header {
        padding: 10px 3%;
    }

    .info-block {
        flex-direction: column;
        gap: 20px;
    }

    .info-block.reverse-layout {
        flex-direction: column; /* Manter a mesma direção de coluna */
    }

    .info-image-container {
        max-width: 80%;
        margin: 0 auto;
    }
    
    .info-text {
        text-align: center;
    }

    .info-text hr {
        margin: 15px auto;
    }

 /* FAQ section responsiveness for tablets */
    .faq-section {
        padding: 0 15px 15px; /* Adjust padding for tablets */
    }

    .faq-question {
        font-size: 1.1rem;
        padding: 12px 15px;
    }
}

/* Smartphones e Tablets em modo Retrato (max-width: 768px) */
@media (max-width: 768px) {
    .logo-image {
        max-width: 180px; /* Logo um pouco menor no mobile */
    }
    
    /* MOSTRA O BOTÃO HAMBÚRGUER */
    .hamburger-btn {
        display: flex;
    }

    /* ESTILOS DO MENU MOBILE (quando escondido e quando ativo) */
    .nav-container {
        position: fixed;
        top: 0;
        right: -100%; /* Começa fora da tela */
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--color-light-green); /* Cor de fundo do menu */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: right 0.4s ease-in-out;
        z-index: 1000;
        padding-top: 80px;
    }

    .nav-container.active {
        right: 0; /* Desliza para dentro da tela */
    }

    .nav-container .main-nav {
        flex-direction: column;
        gap: 20px;
        width: 100%;
        text-align: center;
    }

    .nav-container .main-nav a {
        font-size: 1.4rem;
    }
    
    .nav-container .reserve-button {
        font-size: 1.2rem;
    }
    
    /* --- Outros ajustes para mobile --- */

    .hero-banner {
        font-size: 1rem;
    }

    .chale-grid {
        grid-template-columns: 1fr;
    }

    .cachoeira-content-wrapper,
    .location-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .cachoeira-details, .location-info {
        text-align: center;
    }
    
    .contact-item.address {
        text-align: center;
    }

/* FAQ section responsiveness for smartphones */
    .faq-section {
        padding: 0 10px 10px; /* Adjust padding for smartphones */
    }

    .faq-question {
        font-size: 1rem;
        padding: 10px 12px;
    }

}


/* Celulares pequenos (até 480px) */
@media (max-width: 480px) {
    
    .hero-banner {
        font-size: 0.9rem;
        padding: 15px;
    }

    .logo-image {
        max-width: 140px;
    }

    .reserve-button {
        padding: 10px 18px;
        font-size: 1.1rem;
    }

    .main-nav a {
        font-size: 1.2rem;
    }

    .chale-grid {
        grid-template-columns: 1fr;
    }

    .info-image-container {
        max-width: 90%;
    }

    .info-text {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .chales-highlight {
        font-size: 1rem;
        padding: 8px 15px;
    }

    .reviews-title,
    .cachoeira-details h3,
    .location-info h3 {
        font-size: 1.2rem;
    }

    .reviews-rating {
        font-size: 1.5rem;
    }
}

/* Contêiner principal do carrossel */
.carousel-container {  /* 927,38 x 720 */
    position: relative; /* Necessário para posicionar as setas e pontos */
    max-width: 100%; /* Ajuste a largura máxima do seu carrossel */
    margin: 0 auto;
    overflow: hidden; /* Esconde imagens que não estão ativas */
    border-radius: 20px; /* Mantém o estilo da sua seção original */
    background-color: var(--color-dark-green); /* Fundo como a seção original */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Contêiner das imagens para rolagem (se usar técnica de transformação) */
.carousel-track {
    display:flex; /* Para as imagens ficarem lado a lado */
    width: 100%; /* Largura total visível */
    transition: transform 0.5s ease-in-out; /* Transição para a rolagem das imagens */
}

/* Estilo para cada imagem do carrossel */
.carousel-image {
    width: 100%; /* Cada imagem ocupa 100% da largura do track */
    flex-shrink: 0; /* Impede que as imagens encolham */
    height: auto;
    max-height: 720px; /* Max-height como sua imagem principal */
    object-fit: cover;
    display: block; /* Garante que a imagem se comporte como um bloco */
}

/* Estilos para os botões de navegação (setas) */
.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5); /* Fundo semitransparente */
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 2rem;
    border-radius: 5px;
    z-index: 10; /* Acima das imagens */
    transition: background-color 0.3s ease;
}

.carousel-button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.carousel-button.prev {
    left: 20px;
}

.carousel-button.next {
    right: 20px;
}

/* Estilos para os indicadores de ponto */
.carousel-dots {
    position: absolute;
    bottom: 25px; /* Ajuste a distância do fundo */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    height: 12px;
    width: 12px;
    background-color: rgba(255, 255, 255, 0.5); /* Cor dos pontos inativos */
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: white; /* Cor do ponto ativo */
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* Media Queries para Responsividade (você vai adaptar as suas existentes) */
@media (max-width: 768px) {
    .carousel-button {
        padding: 8px 12px;
        font-size: 1.5rem;
    }
    .carousel-button.prev {
        left: 10px;
    }
    .carousel-button.next {
        right: 10px;
    }
    .carousel-dots {
        bottom: 15px;
    }
    .dot {
        height: 10px;
        width: 10px;
    }
}

.bkair-image {
    width: 300px;
    max-height: 100px; /* Usado max-height para flexibilidade */
    height: auto; /* Permitir ajuste automático de altura */
    object-fit: cover;
    border-radius: 35px;
    display: block;
    margin: 0 auto; /* Centraliza a imagem */
    margin-bottom: 26px;
}

.airbnb-button {
    border: none;
    border-radius: 35px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
}

.comodidades-section {
    padding: 40px 2%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.comodidades-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.coluna-comodidades {
    flex: 1;
    min-width: 250px;
}

.coluna-comodidades h3 {
    font-size: 1.2rem;
    margin-top: 20px;
    color: var(--color-dark-green);
}

.coluna-comodidades ul {
    list-style: none;
    padding: 0;
}

.coluna-comodidades li::before {
    content: "✔ ";
    color: var(--color-medium-green);
}

.coluna-comodidades p {
    margin: 5px 0 15px 0;
}

@media (max-width: 768px) {
    .comodidades-grid {
        flex-direction: column;
    }
}

.canto-das-aguas {
  text-align: center;
  padding: 40px 20px;
  background-color: var(--color-light-green);
}

.canto-das-aguas h2 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: #333;
}

.imagens-canto {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.imagens-canto img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  height: auto;
}

/* Botão */
.botao-whatsapp {
  display: inline-block;
  background-color:var(--color-dark-green);
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.botao-whatsapp:hover {
  background-color: var(--color-dark-green);
}

/* Responsividade */
@media (max-width: 600px) {
  .canto-das-aguas h2 {
    font-size: 1.4rem;
  }

  .imagens-canto {
    flex-direction: column;
    align-items: center;
  }

  .botao-whatsapp {
    width: 100%;
    max-width: 300px;
    padding: 14px;
    font-size: 1rem;
  }
}


.video-section {
  width: 100%;
  padding: 2rem 1rem;
  background-color: var(--color-light-background);
  display: flex;
  justify-content: center;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 960px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
