/* --- Variáveis e Reset --- */
:root {
    --primary-color: #2C4E44; /* Verde escuro sofisticado */
    --secondary-color: #D4C4A8; /* Bege/Dourado suave */
    --text-dark: #2d3436;
    --text-light: #636e72;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --white: #ffffff;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text-dark); line-height: 1.6; background-color: var(--bg-white); }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; color: var(--primary-color); }
a { text-decoration: none; transition: 0.3s; }
ul { list-style: none; }

/* --- Utilitários --- */
.container { width: 90%; max-width: 1100px; margin: 0 auto; }
.section-padding { padding: 80px 0; }
.bg-light { background-color: var(--bg-light); }
.bg-dark { background-color: var(--primary-color); }
.text-white { color: var(--white) !important; }

/* Botões */
.btn { display: inline-block; padding: 14px 32px; border-radius: 4px; font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; }
.btn-primary { background-color: var(--primary-color); color: var(--white); border: 1px solid var(--primary-color); }
.btn-primary:hover { background-color: transparent; color: var(--primary-color); }
.btn-lg { padding: 16px 40px; font-size: 1rem; }

/* --- Navbar --- */
.navbar { position: fixed; top: 0; width: 100%; background: rgba(255, 255, 255, 0.98); box-shadow: 0 2px 10px rgba(0,0,0,0.05); z-index: 1000; height: 70px; display: flex; align-items: center; }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--primary-color); letter-spacing: 2px; }
.nav-links { display: flex; gap: 30px; }
.nav-links a { color: var(--text-dark); font-size: 0.9rem; font-weight: 400; }
.nav-links a:hover { color: var(--primary-color); }
.nav-btn { border: 1px solid var(--primary-color); padding: 8px 20px; border-radius: 4px; }
.hamburger { display: none; cursor: pointer; font-size: 1.5rem; color: var(--primary-color); }

/* --- Hero --- */
.hero { height: 100vh; background-image: url('https://images.unsplash.com/photo-1758691463354-055e4d72e5fc?q=80&w=2068&auto=format&fit=crop'); background-size: cover; background-position: center; position: relative; display: flex; align-items: center; justify-content: center; text-align: center; }
.overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(255, 255, 255, 0.85); }
.hero-content { position: relative; z-index: 1; max-width: 800px; padding: 0 20px;}
.hero-content h1 { font-size: 3rem; margin-bottom: 20px; line-height: 1.2; }
.hero-content p { font-size: 1.2rem; color: var(--text-light); margin-bottom: 30px; }

/* --- Seções Gerais --- */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 2.2rem; margin-bottom: 10px; }
.line { width: 60px; height: 3px; background-color: var(--secondary-color); margin: 0 auto; }
.line-light { background-color: rgba(255,255,255,0.3); }

/* --- Sobre --- */
.about-content { max-width: 800px; margin: 0 auto; text-align: center; font-size: 1.1rem; color: var(--text-dark); padding: 0 15px;}
.about-content p { margin-bottom: 20px; }

/* --- Equipe --- */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.team-card { background: var(--white); padding: 40px 30px; border: 1px solid #eee; text-align: center; transition: transform 0.3s ease; display: flex; flex-direction: column; align-items: center; }
.team-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.05); border-color: var(--secondary-color); }
.img-wrapper { width: 160px; height: 160px; margin-bottom: 25px; border-radius: 50%; overflow: hidden; border: 3px solid var(--secondary-color); padding: 3px; background: #fff; }
.team-img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.team-card h3 { font-size: 1.3rem; margin-bottom: 5px; }
.specialty { display: block; font-size: 0.9rem; color: var(--secondary-color); font-weight: 700; margin-bottom: 20px; text-transform: uppercase; }
.bio { font-size: 0.95rem; color: var(--text-light); margin-bottom: 25px; font-style: italic; }
.text-link { color: var(--primary-color); font-weight: 700; font-size: 0.9rem; }

/* --- Áreas de Atuação --- */
.services-wrapper { display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; }
.services-list li { margin-bottom: 15px; font-size: 1.1rem; display: flex; align-items: center; gap: 15px; }
.services-list i { color: var(--secondary-color); }

/* --- Como Funciona --- */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; text-align: center; }
.step-item i { font-size: 2.5rem; color: var(--primary-color); margin-bottom: 20px; }
.step-item h4 { margin-bottom: 10px; }
.step-item p { color: var(--text-light); }

/* --- FAQ --- */
.faq-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 10px; }
.faq-item { background: #fff; padding: 30px; border-radius: 8px; border: 1px solid #eee; }
.faq-item h4 { font-size: 1.1rem; margin-bottom: 15px; color: var(--primary-color); }
.faq-item p { font-size: 0.95rem; color: var(--text-light); }

/* --- Contato --- */
.contact-section { text-align: center; }
.contact-box { max-width: 700px; margin: 0 auto; }
.extra-contacts { margin-top: 30px; font-size: 1.1rem; }
.extra-contacts p { display: flex; align-items: center; justify-content: center; gap: 10px; color: var(--text-dark); margin-bottom: 5px; }
.contact-link { color: var(--primary-color); font-weight: 700; display: inline-flex; align-items: center; gap: 8px; }
.contact-link:hover { color: var(--secondary-color); }
.small-note { font-size: 0.8rem !important; margin-top: 20px; color: var(--text-light); }

/* --- Footer --- */
footer { background-color: var(--text-dark); color: #eee; padding: 60px 0 30px; text-align: center; }
.footer-brand h3 { color: var(--white); letter-spacing: 3px; }
.footer-brand p { color: var(--secondary-color); font-size: 0.9rem; text-transform: uppercase; margin-bottom: 30px; }
.social-links { margin-bottom: 30px; }
.social-links a { color: var(--white); font-size: 1.1rem; display: inline-flex; align-items: center; gap: 10px; border: 1px solid rgba(255,255,255,0.3); padding: 10px 20px; border-radius: 30px; }
.social-links a:hover { background: var(--primary-color); border-color: var(--primary-color); }
.footer-legal { font-size: 0.8rem; color: #aaa; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; }
.disclaimer { margin-top: 10px; font-style: italic; }

/* --- Botão Flutuante --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px rgba(0,0,0,0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
}

/* --- Responsividade --- */
@media (max-width: 768px) {
    .nav-links { position: absolute; right: 0; top: 70px; background: var(--white); flex-direction: column; width: 100%; text-align: center; padding: 20px 0; transform: translateY(-150%); transition: transform 0.3s ease-in; box-shadow: 0 5px 10px rgba(0,0,0,0.05); }
    .nav-links.active { transform: translateY(0); }
    .hamburger { display: block; }
    .hero-content h1 { font-size: 2rem; }
    .services-wrapper { flex-direction: column; align-items: flex-start; }
    .whatsapp-float { width: 50px; height: 50px; bottom: 20px; right: 20px; font-size: 25px; }
}