/* DESIGN SYSTEM */
:root {
    --white: #ffffff;
    --off-white: #fcfcfc;
    --gold: #b2945e;
    --text-dark: #1a1a1a;
    --text-light: #555555;
    --border-color: #eeeeee;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
}

.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

/* HEADER CORRIGIDO */
.main-header {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: fixed;
    top: 0; width: 100%; z-index: 1000;
}

.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { display: flex; flex-direction: column; }
.logo strong { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; line-height: 1; }
.logo span { font-size: 0.7rem; letter-spacing: 2px; color: var(--gold); font-weight: 700; }

.nav-list { display: flex; list-style: none; gap: 25px; align-items: center; }
.nav-list a { text-decoration: none; color: var(--text-dark); font-size: 0.85rem; font-weight: 600; transition: 0.3s; }
.nav-list a:hover { color: var(--gold); }

.btn-cta-nav { border: 1px solid var(--gold); padding: 10px 18px; color: var(--gold) !important; border-radius: 4px; }

/* HERO SECTION (FIXADO O SUMIÇO) */
.hero-section {
    padding: 160px 0 100px; /* Padding alto para o menu fixo não cobrir */
    background: var(--off-white);
}

.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }

.tag-local { color: var(--gold); font-weight: 700; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; }
.hero-text h1 { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; line-height: 1.1; margin: 20px 0; }
.hero-text h1 span { color: var(--gold); }
.hero-text p { font-size: 1.1rem; color: var(--text-light); margin-bottom: 35px; }

.hero-btns { display: flex; gap: 15px; flex-wrap: wrap; }

.btn-main { background: var(--gold); color: white; padding: 15px 30px; text-decoration: none; font-weight: 600; border-radius: 4px; transition: 0.3s; }
.btn-main:hover { background: #8e764a; transform: translateY(-2px); }

.btn-secondary { color: var(--text-dark); padding: 15px 20px; text-decoration: none; font-weight: 600; }

.hero-img img { width: 100%; border-radius: 8px; box-shadow: 20px 20px 0px var(--gold); }

/* CARDS DE ATUAÇÃO */
.services-section { padding: 100px 0; }
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.card { padding: 40px; border: 1px solid var(--border-color); border-radius: 4px; transition: 0.3s; }
.card i { font-size: 2rem; color: var(--gold); margin-bottom: 20px; display: block; }
.card h3 { margin-bottom: 15px; }
.card:hover { border-color: var(--gold); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }

/* LOCALIZAÇÃO */
.location-section { padding: 80px 0; background: var(--off-white); }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.contact-list { list-style: none; margin: 25px 0; }
.contact-list li { margin-bottom: 15px; display: flex; gap: 10px; align-items: center; }
.contact-list i { color: var(--gold); }

.map-box { border-radius: 8px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

/* WHATSAPP FLOAT */
.whatsapp-fixed {
    position: fixed; bottom: 30px; right: 30px;
    background: #25d366; color: white;
    padding: 12px 20px; border-radius: 50px;
    display: flex; align-items: center; gap: 10px;
    text-decoration: none; z-index: 2000;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    font-weight: 700; font-size: 0.9rem;
}

.main-footer { padding: 40px 0; text-align: center; border-top: 1px solid var(--border-color); font-size: 0.8rem; color: var(--text-light); }

/* RESPONSIVO */
@media (max-width: 768px) {
    .hero-grid, .location-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-text h1 { font-size: 2.5rem; }
    .nav-list { display: none; } /* Simplicidade para mobile */
    .hero-btns { justify-content: center; }
}
/* NOVAS SEÇÕES: DIFERENCIAIS */
.features-section { padding: 100px 0; background-color: var(--white); }
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.tag-gold { color: var(--gold); text-transform: uppercase; font-size: 0.8rem; font-weight: 700; letter-spacing: 3px; }
.features-header h2 { font-family: 'Cormorant Garamond', serif; font-size: 3rem; margin: 15px 0; }

.feature-item { display: flex; gap: 20px; margin-bottom: 40px; }
.feature-icon { 
    background: var(--off-white); 
    width: 60px; height: 60px; 
    border-radius: 50%; 
    display: flex; align-items: center; justify-content: center; 
    color: var(--gold); font-size: 1.5rem;
    flex-shrink: 0;
    border: 1px solid var(--border-color);
}
.feature-txt h4 { font-size: 1.2rem; margin-bottom: 8px; color: var(--text-dark); }
.feature-txt p { font-size: 0.95rem; color: var(--text-light); }

/* FAQ SECTION */
.faq-section { padding: 100px 0; background-color: var(--off-white); }
.faq-container { max-width: 800px; margin: 0 auto; }

.faq-item { 
    background: var(--white); 
    margin-bottom: 15px; 
    border: 1px solid var(--border-color); 
    border-radius: 8px; 
    overflow: hidden; 
}
.faq-item summary { 
    padding: 25px; 
    cursor: pointer; 
    font-weight: 600; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    list-style: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i { font-size: 0.8rem; color: var(--gold); transition: 0.3s; }
.faq-item[open] summary i { transform: rotate(180deg); }

.faq-content { padding: 0 25px 25px; color: var(--text-light); font-size: 0.95rem; line-height: 1.8; }

/* AJUSTE RESPONSIVO */
@media (max-width: 900px) {
    .features-grid { grid-template-columns: 1fr; gap: 40px; }
    .features-header { text-align: center; }
}