/* ARQUIVO: style.css */

/* --- CONFIGURAÇÕES VISUAIS (TEMA DARK LUXURY) --- */
:root {
    --cor-motta: #6d4402;      /* Marrom do Logo */
    --cor-secundaria: #796A55; /* Taupe/Café com Leite */
    
    /* CORES DARK */
    --cor-fundo: #121212;      /* Preto suave */
    --cor-header: #000000;     /* Preto absoluto para o topo */
    --cor-texto: #e0e0e0;      /* Branco gelo para leitura */
    --cor-card: #1e1e1e;       /* Cinza chumbo para os blocos */
    --cor-borda: #333333;      /* Cor das bordas finas */
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--cor-fundo);
    color: var(--cor-texto);
    line-height: 1.6;
}

/* --- CABEÇALHO SIMÉTRICO --- */
header {
    background-color: var(--cor-header);
    border-bottom: 2px solid var(--cor-motta);
    padding: 15px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fotos-lateral {
    display: flex;
    gap: 10px;
    flex: 1;
}

.lateral-direita {
    justify-content: flex-end; 
}

.logo-central {
    flex: 0 0 auto;
    margin: 0 30px;
}

.logo-img {
    max-width: 180px;
    height: auto;
    display: block;
    background-color: #fff;
    padding: 8px;
    border-radius: 4px;
}

.mini-foto {
    width: 240px;
    height: 160px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid var(--cor-secundaria);
    transition: transform 0.3s;
    cursor: pointer;
}

.mini-foto:hover {
    transform: scale(1.1);
    z-index: 10;
    border-color: #fff;
}

/* --- BANNER --- */
.hero {
    /* Mantive o seu arquivo banner.png */
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), url('banner.png');
    background-size: cover;
    background-position: center;
    color: #ffffff;
    text-align: center;
    padding: 200px 20px;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--cor-secundaria);
    display: inline-block;
    padding-bottom: 10px;
    text-shadow: 2px 2px 5px #000;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

/* --- BOTÕES --- */
.btn-container {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 35px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 1rem;
    transition: transform 0.2s;
}

.btn:hover { transform: scale(1.05); }

.btn-whats {
    background-color: var(--cor-secundaria);
    color: white;
    border: 2px solid var(--cor-secundaria);
}

.btn-tel {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

/* NOVO: BOTÃO INSTAGRAM */
.btn-insta {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(220, 39, 67, 0.4);
}
/* Efeito ao passar o mouse no Insta */
.btn-insta:hover {
    filter: brightness(1.2); /* Fica mais brilhante */
}


/* --- SERVIÇOS --- */
.servicos {
    padding: 80px 20px;
    text-align: center;
}

.servicos h2 {
    color: var(--cor-secundaria);
    text-transform: uppercase;
    margin-bottom: 50px;
    font-size: 2rem;
}

.grid-servicos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.card {
    background: var(--cor-card);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--cor-borda);
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    border-top: 4px solid var(--cor-motta);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.card h3 { color: #fff; margin-bottom: 15px; }
.card p { color: #aaa; font-size: 0.95rem; }

/* --- GALERIA --- */
.galeria {
    padding: 60px 20px;
    background-color: #0d0d0d;
    text-align: center;
    border-top: 1px solid var(--cor-borda);
}

.galeria h2 {
    color: var(--cor-secundaria);
    text-transform: uppercase;
    margin-bottom: 40px;
    font-size: 2rem;
}

.grid-galeria {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.foto-galeria {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.foto-galeria:hover {
    border-color: var(--cor-secundaria);
    transform: scale(1.03);
    filter: brightness(1.1);
}

/* --- RODAPÉ --- */
footer {
    background-color: var(--cor-motta);
    color: white;
    text-align: center;
    padding: 40px 20px;
    margin-top: 0;
    border-top: 5px solid var(--cor-secundaria);
}

/* --- CELULAR --- */
@media (max-width: 900px) {
    .fotos-lateral { display: none; }
    .header-container { justify-content: center; }
    .hero { padding: 100px 20px; } 
    .hero h1 { font-size: 1.8rem; }
    .btn-container { flex-direction: column; }
    .btn { width: 100%; box-sizing: border-box; }
}