:root {
    --preto: #0a0a0a;
    --preto-suave: #1a1a1a;
    --dourado: #d4af37;
    --dourado-brilho: #f9e29c;
    --branco: #ffffff;
    --cinza: #a0a0a0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body { 
    font-family: 'Montserrat', sans-serif; 
    background-color: var(--preto); 
    color: var(--branco); 
    line-height: 1.6; 
    overflow-x: hidden; 
}

/* --- HEADER --- */
header {
    background: rgba(10, 10, 10, 0.95);
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--dourado);
}

/* Tamanho da Logo do Topo */
.logo img { 
    height: 45px; /* Ajuste aqui para diminuir a logo do topo */
    width: auto;
}

.logo { display: flex; align-items: center; gap: 15px; }
.logo h1 { font-family: 'Playfair Display', serif; color: var(--dourado); font-size: 1.2rem; }

.nav-links a { color: var(--branco); text-decoration: none; margin-left: 20px; font-weight: 600; transition: 0.3s; }
.nav-links a:hover { color: var(--dourado); }
.btn-nav { padding: 8px 20px !important; font-size: 0.9rem; }

/* --- HERO SECTION --- */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #050505;
    background-image: 
        radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%),
        linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
        url('background.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 0 5%;
    text-align: center;
    margin-top: 60px;
}

/* Tamanho da Logo Central (Hero) */
.hero-logo-img {
    height: 250px; /* Ajuste aqui para diminuir a imagem do meio 
    width: auto;*/
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.4));
    animation: float 4s ease-in-out infinite;
}

.hero h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 6vw, 3.5rem);
    color: var(--dourado);
    margin-bottom: 15px;
    animation: fadeInUp 1s;
}

.hero-divider {
    width: 60px;
    height: 3px;
    background: var(--dourado);
    margin: 0 auto 25px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin-bottom: 30px;
    animation: fadeInUp 1.2s;
}

/* --- BOTÕES --- */
.btn-principal {
    background: var(--dourado);
    color: var(--preto);
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    transition: 0.4s;
    cursor: pointer;
    border: none;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-principal:hover {
    background: var(--dourado-brilho);
    transform: scale(1.05);
}

/* --- SEÇÕES --- */
section { padding: 80px 10%; }

.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-family: 'Playfair Display', serif; font-size: 2.5rem; color: var(--dourado); }
.section-title p { margin-top: 15px; color: var(--cinza); }

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }

.card { 
    background: var(--preto-suave); 
    padding: 40px; 
    border: 1px solid #333; 
    border-radius: 15px; 
    transition: 0.4s;
}

.card:hover { border-color: var(--dourado); transform: translateY(-10px); }
.card i { color: var(--dourado); font-size: 2.5rem; margin-bottom: 20px; }
.card h3 { color: var(--dourado-brilho); margin-bottom: 15px; }

.card-dark { background: #000 !important; }

.call-to-action {
    text-align: center;
    margin-top: 40px;
    font-size: 1.3rem;
    color: var(--dourado);
    font-weight: bold;
}

/* --- MEI BOX --- */
.mei-box {
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    border-left: 5px solid var(--dourado);
    padding: 50px;
    border-radius: 0 20px 20px 0;
}

.check-list { list-style: none; margin: 25px 0; }
.check-list li { margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.check-list li i { color: var(--dourado); }

/* --- FOOTER --- */
footer { background: #000; padding: 60px 10%; border-top: 1px solid #222; text-align: center; }
.phone { color: var(--dourado); font-weight: bold; font-size: 1.5rem; margin: 15px 0; }
.social-icons { margin: 25px 0; display: flex; justify-content: center; gap: 20px; }
.social-icons a { color: var(--dourado); font-size: 1.8rem; transition: 0.3s; }
.social-icons a:hover { color: var(--branco); transform: scale(1.2); }
.copyright { font-size: 0.8rem; color: var(--cinza); margin-top: 20px; }

/* --- WHATSAPP FLOAT --- */
.whatsapp-float {
    position: fixed; bottom: 30px; right: 30px;
    background: #25d366; color: white; width: 60px; height: 60px;
    border-radius: 50%; display: flex; justify-content: center; align-items: center;
    font-size: 30px; z-index: 1000; box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    text-decoration: none;
}

/* --- MODAL --- */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.modal-content {
    background: var(--preto-suave);
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 450px;
    border: 2px solid var(--dourado);
    position: relative;
    animation: zoomIn 0.3s;
}

.close-modal { position: absolute; top: 15px; right: 20px; font-size: 1.8rem; cursor: pointer; color: var(--dourado); }

.form-group { margin-bottom: 15px; text-align: left; }
.form-group label { display: block; margin-bottom: 5px; font-size: 0.9rem; }
.form-group input { 
    width: 100%; padding: 12px; background: #000; border: 1px solid #444; 
    color: #fff; border-radius: 8px; outline: none; 
}

/* --- ANIMAÇÕES --- */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes zoomIn { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* --- RESPONSIVIDADE --- */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero h2 { font-size: 2rem; }
    section { padding: 60px 5%; }
}