/* Estilos sofisticados para o site com tons de marrom */

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #222222;
    color:#222222;
}

/* Navbar */
.navbar {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* Sombra moderna */
    padding: 0.5rem 1rem; /* Espaço ajustado */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 9999;
    background-color:#222222; /* Cor do fundo */
    transition: background-color 0.3s ease; /* Transição suave */
    display: flex;
    align-items: center; /* Centraliza itens verticalmente */
}

/* Logo */
.navbar-brand img {
    height: 100px; /* Altura da logo */
    background-color:#222222; /* Fundo da logo */
    padding: 0; /* Espaçamento */
    transition: height 0.3s ease; /* Suavidade na transição */
}


/* Responsividade */
@media (max-width: 768px) {
    .navbar {
        flex-wrap: wrap; /* Permite quebra de linha */
        justify-content: space-between;
    }

    .navbar-brand img {
        height: 65px; /* Reduz tamanho da logo em telas menores */
    }

    .navbar-nav {
        flex-direction: column;
        display: none; /* Esconde links por padrão */
        width: 100%; /* Ocupa largura total */
        text-align: center;
    }
    .navbar-toggler.active + .navbar-nav {
        display: flex; /* Mostra links quando ativo */
    }
}

header {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.2)), url('./imagens/home.jpeg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 350px 20px; /* Aumente o valor conforme necessário */    
    font-size: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    border-bottom: 5px solid#222222;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

header p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 14px 30px;
    background: #222222 !important; /* Força a cor de fundo */
    color: white !important; /* Força a cor do texto */
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(139, 94, 60, 0.3);
    font-size: 1.1rem;
    opacity: 1 !important; /* Garante que não esteja transparente */
    visibility: visible !important; /* Evita que esteja escondido */
}


.btn:hover {
    background: #6d4830;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(109, 72, 48, 0.4);
}

/* Seção principal */
section.sobre {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background: #dad4cf;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    transition: 0.3s ease;
    max-width: 1100px;
    margin: auto;
}

/* Quando a tela for menor que 768px, a direção do flex será alterada para coluna */
@media (max-width: 768px) {
    section.sobre {
        flex-direction: column; /* Alinha o texto e a imagem verticalmente */
        text-align: center; /* Centraliza o texto */
    }

    .sobre-imagem img {
        width: 100%; /* A imagem ocupa toda a largura disponível */
        margin-top: 20px; /* Adiciona espaço entre o texto e a imagem */
    }
}

.sobre-conteudo {
    flex: 1;
    text-align: left;
    padding-right: 20px;
}

.sobre-imagem {
    flex: 1;
    padding-left: 20px;
}

.sobre-imagem img {
    width: 70%; /* Tamanho padrão para telas grandes */
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

/* Estilo para o hover */
section.sobre:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

section h2 {
    font-size: 2rem;
    color: #222222;
    margin-bottom: 15px;
}

section p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #222222;
}


section.sobre {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background: #dad4cf;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    transition: 0.3s ease;
    max-width: 1100px;
    margin: auto;
}

section.sobre:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.sobre-conteudo {
    flex: 1;
    text-align: left;
    padding-right: 20px;
}

.sobre-conteudo h2 {
    font-size: 2rem;
    color: #222222;
    margin-bottom: 15px;
}

.sobre-conteudo p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #222222;
}

.sobre-imagem {
    flex: 1;
    padding-left: 20px;
}

.sobre-imagem img {
    width: 70%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}
.comodidades ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.comodidades li {
    background: #222222;
    color: white;
    margin: 5px;
    padding: 15px 25px;
    display: inline-flex; /* Mudança para flexbox, para alinhar ícones e texto */
    align-items: center; /* Centraliza o ícone e o texto verticalmente */
    border-radius: 20px;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 4px 8px rgba(139, 94, 60, 0.2);
    transition: transform 0.2s ease;
}

.comodidades li i {
    margin-right: 10px; /* Espaço entre o ícone e o texto */
    font-size: 1.5rem; /* Ajuste do tamanho do ícone */
}

.comodidades li:hover {
    transform: scale(1.1);
}


.galeria {
    text-align: center;
    margin: 0 auto;
    padding: 40px 20px;
    max-width: 1100px;
    max-height: 800px; /* Altura máxima fixa para o carrossel */
}

.carousel-inner {
    max-height: 800px; /* Garante que o carrossel tenha uma altura fixa */
}

.carousel-inner img {
    width: 100%; /* Garante que a largura da imagem ocupe toda a largura do carrossel */
    height: 700px; /* Define uma altura fixa */
    object-fit: cover; /* A imagem será recortada para preencher o espaço sem distorção */
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    background-color: #222222; /* Cor dos ícones */
    border-radius: 50%;
    padding: 10px;
}

.carousel-control-prev, .carousel-control-next {
    z-index: 1;
}

.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 20px; /* Define a posição no lado direito */
    z-index: 1000;
    width: 60px;
    height: 60px;
    border-radius: 50%; /* Torna o botão redondo */
    background-color: #25d366; /* Cor verde oficial do WhatsApp */
    color: white; /* Cor do ícone */
    display: flex;
    justify-content: center; /* Centraliza horizontalmente */
    align-items: center; /* Centraliza verticalmente */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Sombra */
    text-decoration: none; /* Remove sublinhado */
    font-size: 28px; /* Tamanho do ícone */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Animação suave */
}

.whatsapp-button:hover {
    transform: scale(1.1); /* Ampliação no hover */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3); /* Sombra mais intensa */
    background-color: #20c659; /* Cor verde mais escura no hover */
}

.whatsapp-button i {
    color: white; /* Ícone branco */
}



.localizacao iframe {
    width: 100%;
    height: 350px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

footer {
    background:#222222;
    color: white;
    text-align: center;
    padding: 25px;
    font-size: 1rem;
    border-top: 5px solid#222222;
}
