/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #FFF6C2;
    /* Bege suave */
    color: #3b2a19;
    /* Marrom escuro */
    line-height: 1.6;
    padding-top: 110px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

header {
    background-color: #5C3B1C;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    z-index: 999;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 60px;
    border-radius: 8px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #f5e3a1;
}

.menu-toggle {
    display: none;
    font-size: 26px;
    color: #fff;
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-links {
        width: 100%;
        background-color: #5C3B1C;
    }
    body {
        padding-top: 140px;
    }
    .header-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        text-align: center;
    }

    .logo {
        height: 50px;
    }

    .nome-local h1 {
        font-size: 1.2rem;
    }

    .nome-local h2 {
        font-size: 0.9rem;
    }

    nav {
        width: 100%;
    }

    .nav-links {
        display: flex;          /* 🔥 SEMPRE VISÍVEL */
        justify-content: center;
        flex-wrap: wrap;        /* 🔥 QUEBRA LINHA */
        gap: 15px;
        position: static;       /* 🔥 NORMAL */
        padding-top: 10px;
    }
}

/* Hero / Banner */
.hero {
    /* vídeo já cobre essa função */
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
}


.hero-text {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 30px;
    border-radius: 10px;
}

.hero h1 {
    font-size: 2.5rem;
    color: #5C3B1C;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #5C3B1C;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn:hover {
    background-color: #3b2a19;
}

section {
    padding: 60px 0;
}

section h2 {
    font-size: 2rem;
    color: #5C3B1C;
    margin-bottom: 20px;
    text-align: center;
}

footer {
    background-color: #5C3B1C;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
}

.hero-text {
    background-color: rgba(255, 255, 255, 0.85);
    padding: 30px;
    border-radius: 10px;
    z-index: 1;
    max-width: 600px;
}

/* Carrossel de Imagens */
.carousel {
    position: relative;
    width: 90%;
    max-width: 400px;
    margin: 30px auto;
    overflow: hidden;
    text-align: center;
    aspect-ratio: 9 / 16;
}

.carousel-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    /* mostra imagem inteira sem corte */
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 0;
    border-radius: 10px;
}

.carousel-img.active {
    opacity: 1;
    z-index: 1;
}

.carousel button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(92, 59, 28, 0.6);
    /* tom marrom com transparência */
    color: white;
    border: none;
    font-size: 2rem;
    padding: 5px 10px;
    cursor: pointer;
    z-index: 2;
    transition: background 0.3s;
    border-radius: 50%;
}

.carousel button:hover {
    background-color: rgba(92, 59, 28, 0.9);
}

.carousel .prev {
    left: 10px;
}

.carousel .next {
    right: 10px;
}

.depoimentos .comentarios {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.comentarios {
    display: flex;
    flex-direction: column;
    gap: 10px;
    /* distância entre comentários */
}

.comentario {
    display: flex;
    align-items: flex-start;
    background-color: #fff8dc;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    gap: 10px;
}

.comentario img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #5C3B1C;
}

.texto-comentario {
    flex: 1;
}

.texto-comentario p {
    margin: 0;
    font-style: italic;
}

.texto-comentario span {
    display: block;
    margin-top: 5px;
    font-weight: 600;
    color: #5C3B1C;
    text-align: right;
}

.icones-contato {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.icone {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #5C3B1C;
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s;
}

.icone i {
    font-size: 1.5rem;
}

.icone:hover {
    background-color: #3b2a19;
}

.comentarios {
    display: flex;
    flex-direction: column;
    gap: 10px;
    /* Espaçamento entre os comentários */
}

.comentario {
    display: flex;
    align-items: flex-start;
    background-color: #fff8dc;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    gap: 10px;
    /* Espaço entre imagem e texto */
}

.comentario img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #5C3B1C;
}

.texto-comentario {
    flex: 1;
}

.texto-comentario p {
    margin: 0;
    font-style: italic;
}

.texto-comentario span {
    display: block;
    margin-top: 5px;
    font-weight: 600;
    color: #5C3B1C;
    text-align: right;
}

.localizacao {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 2px 8px rgba(0,0,0,0.1);
  max-width: 500px;
  margin: 20px auto;
  text-align: center;
}

.mapa-container {
  margin: 20px auto 0;
  width: 300px;
  height: 300px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0px 2px 8px rgba(0,0,0,0.2);
}

.mapa-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
}

body {
    padding-top: 100px;
}

@media (max-width: 768px) {
    body {
        padding-top: 140px; /* menu maior no mobile */
    }
}

.sobre-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.titulo-sobre {
    text-align: center;
    font-size: 2.2rem;
    color: #5C3B1C;
    margin-bottom: 40px;
}

.sobre-bloco {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
    align-items: center;
}

.sobre-texto {
    flex: 1;
}

.sobre-texto h2 {
    color: #5C3B1C;
    margin-bottom: 10px;
}

.sobre-texto p {
    font-size: 1.1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .sobre-bloco {
        flex-direction: column;
        text-align: center;
    }
}

/* Container Geral */
.sobre-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.titulo-sobre {
    text-align: center;
    font-size: 2.2rem;
    color: #5C3B1C;
    margin: 40px 0;
}

/* CARD */
.card {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 40px;
    display: flex;
    gap: 30px;
    align-items: center;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
}

/* Texto do card */
.card-texto {
    flex: 1;
}

.card-texto h2 {
    color: #5C3B1C;
    margin-bottom: 10px;
}

.card-texto p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Imagem / Carrossel */
.card-imagem {
    flex: 1;
}

.carousel {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.carousel-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: none;
    border-radius: 12px;
}

.carousel-img.active {
    display: block;
}

.carousel button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffffc5;
    border: none;
    padding: 10px;
    font-size: 22px;
    cursor: pointer;
    border-radius: 50%;
}

.carousel .prev {
    left: 10px;
}

.carousel .next {
    right: 10px;
}

/* Responsivo */
@media (max-width: 768px) {
    .card {
        flex-direction: column;
        text-align: center;
    }

    .carousel {
        height: 240px;
    }

    .carousel-img {
        height: 240px;
    }
}


.titulo-equipe {
    font-size: 2.8rem;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
    font-weight: 700;
    color: #3b2a19; /* Mantendo o mesmo tom do site */
}

.titulo-estrutura {
    text-align: center;
    margin: 40px 0;
    font-size: 2.5rem;
    font-weight: 700;
    color: #3b2a19;
}

.carousel-container {
    position: relative;
    width: 90%;
    max-width: 900px;
    margin: 0 auto 60px auto;
    overflow: hidden;
    border-radius: 16px;
}

/* Agora garantimos que todas as imagens fiquem lado a lado em linha única */
.carousel {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease-in-out;
}

.carousel img {
    width: 100%;     /* força cada imagem a ter largura total do carrossel */
    flex-shrink: 0;  /* impede que as imagens encolham */
    border-radius: 16px;
}

/* Botões */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    padding: 12px 18px;
    color: white;
    cursor: pointer;
    font-size: 22px;
    border-radius: 50%;
    user-select: none;
    z-index: 10;
}

.prev { left: 10px; }
.next { right: 10px; }

.carousel-btn:hover {
    background-color: rgba(0,0,0,0.7);
}

.titulo-estrutura {
    text-align: center;
    font-size: 2.6rem;
    margin-top: 30px;
    color: #3b2a19;
}

.descricao-estrutura {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #5a4636;
}

/* Galeria */
.galeria-estrutura {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 0 40px 60px 40px;
}

.foto-item img {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.foto-item img:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

.foto-item {
    width: 100%;
    height: auto;
}

.foto-item img {
    width: 100%;
    aspect-ratio: 4 / 3; /* proporção baseada nas imagens maiores */
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
}

/* Logo */
.logo {
    width: 70px;
    height: auto;
}

/* Texto centralizado */
.nome-local {
    text-align: center;
    flex-grow: 1;
}

.nome-local h2 {
    font-size: 18px;
    color: #fdf7b0; /* COR NOVA */
    margin: 0;
    font-weight: 400;
}

.nome-local h1 {
    font-size: 24px;
    color: #fcf484; /* COR NOVA */
    margin: 0;
    font-weight: 700;
    text-transform: uppercase;

}