/* Configurações Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #120f0d; /* Um marrom quase preto, bem profundo */
    color: #f4f1ea;
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

/* Criando a textura de madeira profissional */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Link para uma textura de madeira escura em alta resolução */
    background-image: url('https://images.unsplash.com/photo-1541123356219-284ebe98ae3b?q=80&w=1920'); 
    background-size: cover;
    background-attachment: fixed;
    opacity: 0.15; /* Aqui você controla o quão visível é a madeira. 0.15 é sutil e elegante */
    z-index: -1; /* Fica atrás de tudo */
}

/* Efeito de iluminação centralizado para não ficar "chapado" */
body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 20%, rgba(0,0,0,0.8) 100%);
    z-index: -1;
    pointer-events: none;
}

/* Títulos com cor de madeira clara/ouro velho */
h1, h2, h3 {
    font-family: 'Playfair Display', serif; /* Fonte clássica e luxuosa */
    color: #e3b07e;
    font-weight: 700;
}

/* --- LIMPEZA E FORMATAÇÃO DO MENU --- */

header {
    background-color: rgba(18, 15, 13, 0.98) !important;
    backdrop-filter: blur(15px);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 10px 5%;
    border-bottom: 1px solid rgba(227, 176, 126, 0.1);
    transition: all 0.4s ease-in-out; 
}

nav {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    list-style: none !important; /* Garante que não tenha bolinhas no nav */
}

nav ul {
    display: flex !important;
    list-style-type: none !important; /* TIRA AS BOLINHAS */
    list-style: none !important;      /* TIRA AS BOLINHAS (FORÇADO) */
    margin: 0 !important;
    padding: 0 !important;
}

nav ul li {
    list-style: none !important; /* TIRA AS BOLINHAS DE CADA ITEM */
    margin-left: 30px;
}

/* ESTILO DOS LINKS (TIRA O ROXO E O AZUL) */
nav ul li a {
    text-decoration: none !important;
    color: #e3b07e !important; /* COR DOURADA SEMPRE */
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

/* COR QUANDO PASSA O MOUSE */
nav ul li a:hover {
    color: #ffffff !important;
}
/* Hero Section (Destaque Principal) */
#hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* Ajuste aqui */
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('Fotos/foto2.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#hero h1 {
    font-size: clamp(2rem, 5vw, 4rem); /* Fonte que se ajusta ao tamanho da tela */
    margin-bottom: 20px;
}

#hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 30px;
    color: #ccc;
}

/* Botão WhatsApp Modernizado */
.btn-whatsapp {
    background: linear-gradient(135deg, #e3b07e 0%, #d4a373 100%); /* Degradê dourado/madeira */
    color: #1a1510;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 50px; /* Totalmente arredondado */
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-whatsapp:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(227, 176, 126, 0.3);
}

/* --- BOTÃO WHATSAPP FLUTUANTE --- */
.whatsapp-fixed {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    z-index: 10000;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-fixed:hover {
    transform: scale(1.1) rotate(10deg);
    background-color: #20ba5a;
}

/* Ajuste do Menu */
header {
    background-color: rgba(26, 21, 16, 0.95); /* Acompanha o novo fundo marrom */
    backdrop-filter: blur(10px); /* Efeito de vidro jateado */
    border-bottom: 1px solid rgba(227, 176, 126, 0.1);
}

/* --- PORTFÓLIO --- */
#portfolio {
    padding: 120px 5% 60px; /* Aumentado o topo para não cobrir a logo */
    text-align: center;
}

.grid-fotos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.foto-card {
    height: 380px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(227, 176, 126, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.foto-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
}

.foto-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.foto-card:hover img {
    transform: scale(1.1);
}

.header-small {
    height: 70px !important;
    background-color: rgba(10, 8, 6, 0.99) !important;
}

.header-small .logo img {
    height: 50px !important;
    transition: all 0.4s ease-in-out; 
}

/* --- AJUSTES PARA CELULAR --- */
@media (max-width: 768px) {
    header {
        position: fixed !important;
        height: auto !important; /* Deixa o marrom se ajustar ao conteúdo */
        padding: 15px 0 !important;
    }

    nav {
        flex-direction: column !important; /* Logo em cima, links embaixo */
        align-items: center !important;
        gap: 10px !important;
    }

    nav ul {
        display: flex !important;
        justify-content: center !important;
        gap: 15px !important; /* Espaço entre os nomes */
    }

    nav ul li {
        margin: 0 !important; /* Tira margens laterais antigas */
    }

    nav ul li a {
        font-size: 0.85rem !important;
    }

    .logo img {
        height: 80px !important; /* Tamanho fixo da logo no celular */
        margin-bottom: 5px;
    }

    /* Garante que o conteúdo do site não comece atrás do menu no celular */
    #hero {
        padding-top: 140px !important;
    }
}

#processo h3 {
    margin-bottom: 20px; /* Mais espaço abaixo do título */
    letter-spacing: 1px;
}

#processo p {
    line-height: 1.8; /* Aumenta o espaço entre as linhas de texto */
    color: #bbb;      /* Um cinza claro para não brigar com o título dourado */
    font-size: 0.95rem;
}