/* --- Variáveis e Reset --- */
:root {
    --bg-dark: #0b0c10;
    --bg-card: #1f2833;
    --gold: #c5a059; /* Dourado Clássico */
    --gold-light: #e6c88b;
    --whatsapp-green: #25d366;
    --whatsapp-hover: #128c7e;
    --text-light: #f1f1f1;
    --text-dark: #111;
    
    --font-heading: 'Playfair Display', serif; /* Fonte sofisticada */
    --font-body: 'Lato', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- Tipografia --- */
h1, h2, h3 { font-family: var(--font-heading); color: #fff; }
h1 { font-size: 3rem; line-height: 1.2; margin-bottom: 20px; }
h2 { font-size: 2.5rem; margin-bottom: 15px; text-align: center; }
p { margin-bottom: 20px; color: #aab2bd; font-weight: 300; font-size: 1.1rem; }

.gold-text { color: var(--gold); font-style: italic; }
.text-left { text-align: left; }

/* --- Layout --- */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.section-dark { padding: 90px 0; }
.section-light { background-color: #f7f7f7; padding: 90px 0; }
.section-light .dark-text { color: #111; }
.section-light p { color: #555; }
.subtitle { text-align: center; margin-bottom: 50px; font-style: italic; }

/* --- Botões e CTAs --- */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 15px 35px; border-radius: 5px; text-decoration: none;
    font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
    transition: all 0.3s ease; gap: 10px;
}

/* Botão WhatsApp Principal */
.btn-whatsapp {
    background-color: var(--whatsapp-green); color: #fff;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
}
.btn-whatsapp:hover { background-color: var(--whatsapp-hover); transform: translateY(-3px); }

/* Botão Outline */
.btn-outline { border: 2px solid var(--gold); color: var(--gold); }
.btn-outline:hover { background-color: var(--gold); color: #000; }

/* Botão Preto (Banner) */
.btn-dark { background-color: #000; color: var(--gold); border: 1px solid var(--gold); }
.btn-dark:hover { background-color: var(--gold); color: #000; }

/* Animação Pulse (Chama atenção para clicar) */
.pulse-animation { animation: pulse 2s infinite; }
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* --- Navbar --- */
.navbar {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    background: rgba(11, 12, 16, 0.95); border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 15px 0; backdrop-filter: blur(5px);
}
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: var(--font-heading); font-size: 1.5rem; color: #fff; text-decoration: none; letter-spacing: 2px; font-weight: 700; }
.nav-links { list-style: none; display: flex; gap: 25px; align-items: center; }
.nav-links a { color: #fff; text-decoration: none; font-size: 0.9rem; transition: color 0.3s; }
.nav-links a:hover { color: var(--gold); }

/* Botão Verde no Menu */
.btn-nav-whatsapp {
    background: var(--whatsapp-green); padding: 8px 20px; border-radius: 50px;
    color: #fff !important; font-weight: bold; font-size: 0.85rem !important;
}
.btn-nav-whatsapp:hover { background: var(--whatsapp-hover); }

.menu-toggle { display: none; color: var(--gold); font-size: 1.8rem; cursor: pointer; }

/* --- Hero --- */
.hero {
    height: 100vh; display: flex; align-items: center; position: relative;
    /* Nova imagem abaixo: Silhueta Misteriosa */
    background: url('https://images.unsplash.com/photo-1506748686214-e9df14d4d9d0?q=80&w=2070&auto=format&fit=crop') no-repeat center center/cover;
}
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(11,12,16,0.95) 0%, rgba(11,12,16,0.7) 100%);
}
.hero-content { position: relative; z-index: 2; width: 100%; }
.tagline { color: var(--gold); font-weight: 700; letter-spacing: 3px; font-size: 0.9rem; display: block; margin-bottom: 15px; }
.hero-btns { margin-top: 30px; display: flex; gap: 15px; flex-wrap: wrap; }

/* --- About Grid --- */
.about-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 50px; align-items: center; }
.check-list { list-style: none; margin-top: 20px; }
.check-list li { margin-bottom: 10px; font-size: 1.05rem; display: flex; align-items: center; gap: 10px; }
.img-placeholder {
    width: 100%; height: 400px; background: #1f2833;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid var(--gold); position: relative;
}
.img-placeholder::after {
    content: ''; position: absolute; top: 15px; left: 15px;
    width: 100%; height: 100%; border: 1px solid rgba(197, 160, 89, 0.3); z-index: -1;
}
.img-placeholder i { font-size: 5rem; color: rgba(255,255,255,0.1); }

/* --- Services Cards --- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.card {
    background: #fff; padding: 40px 30px; border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08); transition: transform 0.3s;
    border-bottom: 4px solid transparent;
}
.card:hover { transform: translateY(-10px); border-bottom-color: var(--gold); }
.card h3 { color: #222; margin-bottom: 15px; font-family: var(--font-body); font-weight: 700; }
.icon-box {
    width: 60px; height: 60px; background: var(--gold); color: #fff;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; margin-bottom: 25px;
}
.link-card {
    color: var(--gold); text-decoration: none; font-weight: 700; font-size: 0.9rem;
    display: inline-flex; align-items: center; gap: 5px; margin-top: 15px;
}

/* --- CTA Banner --- */
.cta-banner {
    background: var(--gold); text-align: center; padding: 80px 20px;
    background: linear-gradient(45deg, #c5a059, #dcc083);
}
.cta-banner h2 { color: #000; }
.cta-banner p { color: #222; font-weight: 700; max-width: 700px; margin: 0 auto 30px; }

/* --- Contact Options (NO FORM) --- */
.contact-options {
    display: flex; justify-content: center; gap: 30px; margin-top: 40px; flex-wrap: wrap;
}
.contact-box {
    background: var(--bg-card); padding: 30px; min-width: 250px;
    border: 1px solid #333; border-radius: 10px; text-decoration: none;
    display: flex; flex-direction: column; align-items: center;
    transition: all 0.3s;
}
.contact-box i { font-size: 2.5rem; margin-bottom: 15px; }
.contact-box span { color: #fff; font-size: 1.2rem; font-weight: bold; }
.contact-box small { color: #888; margin-top: 5px; }

.whatsapp-box i { color: var(--whatsapp-green); }
.whatsapp-box:hover { border-color: var(--whatsapp-green); background: rgba(37, 211, 102, 0.05); }

/* Ajuste o final do seu CSS que parece ter cortado: */
.phone-box i { color: var(--gold); }
.phone-box:hover { border-color: var(--gold); background: rgba(197, 160, 89, 0.05); }


/* Container da imagem */
.about-image {
    position: relative;
    display: flex;
    justify-content: center;
}

/* Moldura e Estilo da Foto */
.img-frame {
    position: relative;
    border: 2px solid var(--gold);
    line-height: 0; /* Remove espaço extra abaixo da imagem */
}

.img-frame::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(197, 160, 89, 0.3);
    z-index: -1;
}

.img-profile {
    width: 100%;
    max-width: 450px; /* Ajuste conforme o tamanho da sua imagem */
    height: auto;
    display: block;
    filter: grayscale(20%); /* Opcional: deixa a foto levemente mais sóbria */
    transition: filter 0.3s ease;
}

.img-profile:hover {
    filter: grayscale(0%);
}

/* --- Ajustes de Responsividade --- */

/* Ajuste Geral de Tipografia para Mobile */
@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    .section-dark, .section-light { padding: 60px 0; }
    
    /* Navbar Mobile */
    .menu-toggle { display: block; } /* Mostra o ícone de barras */

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-dark);
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        display: none; /* Escondido por padrão */
        border-bottom: 2px solid var(--gold);
    }

    .nav-links.active {
        display: flex; /* Mostra quando clicado */
    }

    /* Hero Section */
    .hero { height: auto; padding: 120px 0 60px; text-align: center; }
    .hero-btns { justify-content: center; }
    .text-left { text-align: center; }

    /* Grids para Coluna Única */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: 1fr; /* Cartões ocupam a largura toda */
    }

    /* Ajuste da imagem "Sobre" no mobile */
    .about-image {
        order: -1; /* Coloca a imagem acima do texto no celular */
        margin-bottom: 20px;
    }
    
    .img-frame::after {
        display: none; /* Remove o detalhe da moldura para evitar quebra de layout lateral */
    }

    /* Botões de Contato */
    .contact-options {
        flex-direction: column;
        align-items: stretch;
    }
    
    .contact-box {
        min-width: unset;
        width: 100%;
    }

    /* Botão Flutuante WhatsApp (se não existir, aqui está o estilo) */
    .whatsapp-float {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: var(--whatsapp-green);
        color: white;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 30px;
        box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
        z-index: 1000;
        text-decoration: none;
    }
}

/* Ajustes para telas muito pequenas (iPhone SE, etc) */
@media (max-width: 400px) {
    .hero-btns .btn {
        width: 100%; /* Botões empilhados */
    }
}