/* Definição de Cores e Fontes - TEMA CLEAN */
:root {
	--primary-color: #C5A059; /* Dourado Premium / Bronze */
    --primary-hover: #A68545; /* Dourado mais escuro quando passa o mouse */
    --whatsapp-green: #25D366; 
    --whatsapp-hover: #128C7E;
    --text-dark: #222222; 
    --text-light: #555555; 
    --white: #ffffff;
    --black: #111111;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
    scroll-behavior: smooth;
}

/* 1. IMAGEM ÚNICA DE FUNDO NA PÁGINA TODA */
body {
    color: var(--text-dark);
    line-height: 1.6;
    background-image: url('img/fundo.jpg'); /* Nome da sua imagem de fundo */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Deixa o fundo travado */
}

.container {
    width: 90%;
    max-width: 1150px;
    margin: 0 auto;
}

/* Cabeçalho */
header {
    background-color: rgba(255, 255, 255, 0.95); 
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08); 
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    color: var(--black); 
    font-weight: 800;
    letter-spacing: 1px;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px; 
}

.nav-links a {
    color: var(--text-dark); 
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.btn-nav-zap {
    background-color: var(--whatsapp-green);
    padding: 10px 20px;
    border-radius: 4px;
    color: var(--white) !important;
}

.btn-nav-zap:hover {
    background-color: var(--whatsapp-hover);
}

.btn-nav-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    padding: 8px 20px;
    border-radius: 4px;
    color: var(--black) !important;
}

.btn-nav-outline:hover {
    background-color: var(--primary-color);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-color: transparent; /* Fundo transparente pois a imagem está no body */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Escurece a primeira parte para ler o texto */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 650px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Botões Gerais */
.btn {
    display: inline-block;
    padding: 15px 35px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white); /* Texto branco no botão principal */
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color); 
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--black);
}

/* FUNDO BRANCO TRANSPARENTE PARA AS SEÇÕES */
.services, .cta, footer {
    background-color: rgba(255, 255, 255, 0.93); /* Deixa dar pra ver o fundo de leve */
    padding: 100px 0;
}

/* Títulos das Seções */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 15px;
    margin-top: 15px;
}

.section-title p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* NOVA GRADE DE PORTFÓLIO */
.badge {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Grade automática */
    gap: 20px;
    margin-top: 30px;
}

.img-portfolio {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.img-portfolio:hover {
    transform: scale(1.03);
}

/* Chamada para Ação (CTA) */
.cta {
    color: var(--black);
    border-top: 1px solid #eaeaea;
}

.text-center {
    text-align: center;
}

.cta h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta p {
    font-size: 1.1rem;
    margin-bottom: 35px;
    color: var(--text-light);
}

/* Rodapé e Mapa */
footer {
    border-top: 1px solid #eaeaea;
    padding-bottom: 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-info h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--black);
}

.footer-info p {
    margin-bottom: 15px;
    color: var(--text-light);
    font-size: 1.05rem;
}

.footer-map h3 {
    margin-bottom: 25px;
    color: var(--black);
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid #eaeaea;
    font-size: 0.9rem;
    color: #888;
}

/* --- EFEITO LIGHTBOX (IMAGEM EXPANDIDA) --- */
.modal {
    display: none; 
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center; 
    justify-content: center; 
}

.modal-content {
    display: block;
    max-width: 90%;
    max-height: 85vh; 
    border-radius: 8px;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {transform: scale(0.8); opacity: 0;} 
    to {transform: scale(1); opacity: 1;}
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close-modal:hover {
    color: var(--primary-color);
}

/* --- SETAS DA GALERIA (LIGHTBOX) --- */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 40px;
    transition: 0.3s ease;
    border-radius: 0 3px 3px 0;
    user-select: none; 
    z-index: 2001;
}

.next {
    right: 20px;
    border-radius: 3px 0 0 3px;
}

.prev {
    left: 20px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
    color: var(--primary-color);
}

/* --- BOTÃO FLUTUANTE DO WHATSAPP --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: var(--whatsapp-green);
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 9999; 
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1); 
    background-color: var(--whatsapp-hover);
}

/* Ajustes para Celular */
@media (max-width: 768px) {
    .nav-links {
        display: none; 
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }

    .prev, .next {
        font-size: 25px;
        padding: 10px;
    }
}

/* Organização dos botões no rodapé */
.social-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 15px;
}