:root {
    --bg-cream: #F5F4F0; 
    --green-dark: #40503C; 
    --green-light: #8BA67E; 
    --green-box: #E8EBE3;
    --text-dark: #222222;
    --text-gray: #444444;
    --text-purple: #745C7A;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; max-width: 100%; }

body {
    font-family: var(--font-sans);
    background-color: var(--bg-cream);
    color: var(--text-gray);
    line-height: 1.5;
    overflow-x: hidden;
}

.container { width: 90%; max-width: 1150px; margin: 0 auto; }
img { max-width: 100%; height: auto; }
em { font-style: italic; color: var(--green-light); }

/* --- HEADER IDÊNTICO --- */
header { 
    background-color: var(--bg-cream); 
    padding: 15px 0; 
    position: sticky; 
    top: 0; 
    z-index: 1000; 
    width: 100%;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.header-content { display: flex; justify-content: space-between; align-items: center; width: 100%; gap: 20px; }
.logo { display: flex; align-items: center; flex: 0 0 auto; }
.logo img { height: 80px; width: 80px; border-radius: 50%; object-fit: cover; flex-shrink: 0; } 

.header-center { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; flex: 1; }
.site-title { font-family: var(--font-serif); font-size: 1.6rem; color: var(--green-dark); font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; }

nav ul { list-style: none; display: flex; gap: 25px; align-items: center; justify-content: center; } 
nav a { text-decoration: none; color: var(--text-dark); font-size: 0.95rem; font-weight: 600; transition: all 0.3s; padding: 8px 18px; border-radius: 8px; white-space: nowrap; } 
nav a:hover { color: var(--green-dark); }
nav a.active-link { background-color: #B5C9AC; color: var(--green-dark); }
nav a.btn-dark-header.active-link { background-color: var(--green-dark); color: white; }

.desktop-only-btn { flex: 0 0 auto; }
.btn-dark-header { background-color: var(--green-dark); color: white; padding: 12px 24px; border-radius: 8px; font-size: 0.95rem; font-weight: 600; text-decoration: none; transition: 0.3s; white-space: nowrap; }
.btn-dark-header:hover { background-color: #2a3528; }

.hamburger { display: none; flex-direction: column; justify-content: space-between; width: 30px; height: 22px; background: transparent; border: none; cursor: pointer; z-index: 1001; }
.hamburger span { display: block; width: 100%; height: 3px; background-color: var(--green-dark); transition: all 0.3s ease; border-radius: 3px; }
.mobile-only-btn { display: none; }

/* --- FAQ HEADER --- */
.faq-header-section {
    padding: 80px 0 40px 0;
    text-align: center;
    background-color: var(--green-box);
    border-bottom: 1px solid #DCE0D5;
}
.faq-main-title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    color: var(--green-dark);
    margin-bottom: 15px;
}
.faq-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* --- FAQ CONTENT (ACORDEÃO) --- */
.faq-content-section {
    padding: 60px 0 100px 0;
}
.faq-container {
    max-width: 800px; /* Mantém o texto num tamanho ideal para leitura */
}
.faq-category-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--green-dark);
    margin-bottom: 30px;
    border-bottom: 2px solid var(--green-light);
    padding-bottom: 10px;
    display: inline-block;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.faq-item {
    background-color: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-item.active {
    border-color: var(--green-light);
    box-shadow: 0 4px 15px rgba(139, 166, 126, 0.15);
}
.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px 25px;
    background: none;
    border: none;
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}
.faq-question:hover {
    background-color: #FAFAFA;
}
.faq-item.active .faq-question {
    color: var(--green-dark);
}
.faq-icon {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--green-light);
    transition: transform 0.3s ease;
}
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background-color: #FFFFFF;
}
.faq-answer p {
    padding: 0 25px 25px 25px;
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* --- FOOTER SIMPLE --- */
.footer-simple { background-color: var(--bg-cream); text-align: center; padding: 60px 0 40px 0; }
.social-icons { display: flex; justify-content: center; align-items: center; gap: 15px; margin-bottom: 30px; }
.social-icons a img { width: 40px; height: auto; transition: transform 0.3s ease; }
.social-icons a:hover img { transform: scale(1.1); }
.footer-logo { display: flex; justify-content: center; margin-bottom: 25px; }
.footer-logo img { width: 180px; height: auto; border-radius: 50%; box-shadow: 0 4px 15px rgba(0,0,0,0.08); }
.copyright { font-family: var(--font-sans); font-size: 0.95rem; color: var(--text-dark); font-weight: 600; }

/* --- RESPONSIVIDADE --- */
@media (max-width: 992px) {
    .hamburger { display: flex; }
    .desktop-only-btn { display: none; }
    .mobile-only-btn { display: block; margin-top: 20px; }
    .header-center { display: none; }
    .desktop-nav { position: fixed; top: 0; right: -100%; width: 80%; max-width: 300px; height: 100vh; background-color: var(--bg-cream); box-shadow: -5px 0 20px rgba(0,0,0,0.1); padding-top: 100px; transition: right 0.4s ease; z-index: 1000; }
    .desktop-nav.active { right: 0; }
    nav ul { flex-direction: column; align-items: center; gap: 25px; }
    .hamburger.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
}
@media (max-width: 768px) {
    .faq-main-title { font-size: 2.5rem; }
    .faq-question { font-size: 1rem; padding: 15px 20px; }
    .faq-answer p { padding: 0 20px 20px 20px; }
}