/* ---- 1. SETUP E VARIÁVEIS DE COR - LINEA WOOD ---- */
:root {
    --cor-primaria: #4B2E2E;      /* Marrom Escuro (para textos e títulos) */
    --cor-secundaria: #F8F5F5;  /* Off-White (para fundos de seção) */
    --cor-destaque: #6A7B42;      /* Verde Oliva (para botões e links) */
    --cor-fundo: #ffffff;         /* Branco puro para o fundo principal */
    --cor-texto-principal: #333; /* Cor do texto comum (um pouco mais claro que o primário) */
    --cor-texto-claro: #ffffff;   /* Cor do texto sobre fundos escuros */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth; /* Efeito de rolagem suave */
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--cor-fundo);
    color: var(--cor-texto-principal);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---- 2. COMPONENTES REUTILIZÁVEIS ---- */
.cta-button {
    background-color: var(--cor-destaque);
    color: var(--cor-texto-claro);
    padding: 12px 28px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, background-color 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.cta-button:hover {
    background-color: #586836; /* Tom mais escuro do Verde Oliva */
    transform: translateY(-3px);
}

h2 {
    font-size: 38px;
    color: var(--cor-primaria);
    text-align: center;
    margin-bottom: 60px;
}

/* ---- 3. SEÇÕES ESPECÍFICAS ---- */
/* HEADER */
header {
    background-color: var(--cor-fundo);
    padding: 15px 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo img {
    height: 70px; /* <<< SEU AJUSTE DE TAMANHO */
    border-radius: 8px; /* <<< SEU AJUSTE DE ARREDONDAMENTO */
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

header nav a {
    text-decoration: none;
    color: var(--cor-primaria);
    font-weight: 600;
    position: relative;
    padding-bottom: 5px;
}

header nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--cor-destaque);
    transition: width 0.3s;
}

header nav a:hover::after {
    width: 100%;
}

/* HERO */
.hero {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../img/hero-background.jpg');
    background-size: cover;
    background-position: center;
    height: 90vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--cor-texto-claro);

    /* Para o efeito de zoom lento */
    overflow: hidden;
    animation: zoomLento 20s infinite alternate linear;
}

/* Adicionado para o efeito de zoom */
.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* SOBRE */
#sobre { padding: 80px 0; }
.sobre-container {
    display: flex;
    align-items: center;
    gap: 60px;
}
.sobre-imagem { flex: 1; }
.sobre-imagem img { width: 100%; border-radius: 5px; }
.sobre-texto { flex: 1; }
.sobre-texto h2 { text-align: left; margin-bottom: 20px; }
.sobre-texto ul { list-style: none; margin-top: 20px; }
.sobre-texto li { padding-left: 25px; position: relative; margin-bottom: 10px; }
.sobre-texto li::before { content: '✔'; color: var(--cor-destaque); position: absolute; left: 0; }

/* AMBIENTES (GALERIA) */
#ambientes { padding: 80px 0; background-color: var(--cor-secundaria); }
#filter-buttons { text-align: center; margin-bottom: 40px; }
.filter-btn {
    background: transparent;
    border: 1px solid #ddd;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
}
.filter-btn.active {
    background-color: var(--cor-destaque);
    color: var(--cor-texto-claro);
    border-color: var(--cor-destaque);
}
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.gallery-item { display: block; }
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.3s;
}
.gallery-item img:hover { transform: scale(1.05); }

/* CTA SECTION */
.cta-section {
    background-color: var(--cor-primaria);
    color: var(--cor-texto-claro);
    padding: 60px 0;
    text-align: center;
}
.cta-section h2 { color: var(--cor-texto-claro); margin-bottom: 20px; }

/* CONTATO */
#contato { padding: 80px 0; }
.contato-wrapper {
    display: flex;
    gap: 60px;
    background-color: var(--cor-secundaria);
    padding: 40px;
    border-radius: 5px;
}
.contato-info, .contato-form { flex: 1; }
.contato-info h3 { font-size: 24px; color: var(--cor-primaria); margin-bottom: 20px; }
.contato-form input, .contato-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.contato-form button { width: 100%; }

/* FOOTER */
footer {
    background-color: var(--cor-primaria);
    color: var(--cor-texto-claro);
    text-align: center;
    padding: 20px 0;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 100;
}
.whatsapp-float img { width: 35px; }

/* RESPONSIVIDADE (Menu Mobile) */
.menu-toggle {
    display: none; /* Escondido em telas grandes */
    font-size: 30px;
    color: var(--cor-primaria);
    background: none;
    border: none;
    cursor: pointer;
}

@media (max-width: 768px) {
    header nav {
        display: none; /* Esconde o menu normal */
        position: absolute;
        top: 80px; /* Altura do header */
        left: 0;
        width: 100%;
        background-color: var(--cor-fundo);
        flex-direction: column;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    
    header nav.active {
        display: flex; /* Mostra o menu quando 'active' */
    }

    header nav ul {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    header nav li {
        text-align: center;
        border-bottom: 1px solid #f0f0f0;
    }

    header nav a {
        display: block;
        padding: 15px 0;
    }
    
    .menu-toggle {
        display: block; /* Mostra o botão 'hamburger' */
    }
    
    .header-cta {
        display: none; /* Esconde o botão de orçamento do header */
    }
    
    .sobre-container {
        flex-direction: column;
    }
    
    .contato-wrapper {
        flex-direction: column;
    }
    
    .hero h1 { font-size: 36px; }
    .hero p { font-size: 18px; }
}
/* ---- ANIMAÇÃO DE ZOOM LENTO (KEN BURNS) ---- */
@keyframes zoomLento {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1); /* O zoom vai até 110% */
  }
}