/* ================================
   ESTILO GERAL
================================ */
body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    background: #fcfcfc;
    color: #222;
    line-height: 1.6;
}

h1, h2, h3 {
    font-weight: 700;
}



/* ================================
   NAVBAR (mesmo das outras páginas)
================================ */
.navbar {
    width: 100%;
    background: #ffffffee;
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 9999;
}

.nav-container {
    max-width: 1250px;
    margin: auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 48px;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #222;
    font-size: 17px;
    transition: .2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #0a7a4f;
}

.nav-mobile-menu {
    font-size: 32px;
    cursor: pointer;
    display: none;
}

.nav-mobile-links {
    display: none;
    flex-direction: column;
    background: #fff;
    border-bottom: 1px solid #ddd;
}

.nav-mobile-links a {
    padding: 14px 20px;
    text-decoration: none;
    color: #222;
    border-top: 1px solid #eee;
}

.nav-mobile-links a:hover {
    background: #f5f5f5;
}

@media (max-width: 860px) {
    .nav-links { display: none; }
    .nav-mobile-menu { display: block; }
}



/* ================================
   BANNER
================================ */
.banner-duvidas-img {
    width: 100%;
    height: auto;
    display: block;
}



/* ================================
   INTRODUÇÃO
================================ */
.intro-section {
    max-width: 1100px;
    margin: 50px auto 30px auto;
    padding: 0 20px;
    text-align: center;
}

.intro-title {
    font-size: 38px;
    color: #0a7a4f;
}

.intro-desc {
    font-size: 18px;
    color: #555;
    margin-top: 10px;
}



/* ================================
   FAQ
================================ */
.faq-container {
    max-width: 1100px;
    margin: 30px auto 80px auto;
    padding: 0 20px;
}

.faq-category {
    font-size: 28px;
    color: #0a7a4f;
    margin: 40px 0 20px 0;
}

.faq-item {
    background: #fff;
    margin-bottom: 12px;
    border-radius: 10px;
    border: 1px solid #e2e2e2;
    box-shadow: 0 3px 10px #00000010;
}

.faq-question {
    width: 100%;
    background: #ffffff;
    border: none;
    outline: none;
    padding: 20px;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 10px;
}

.faq-question.active {
    color: #0a7a4f;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height .3s ease;
}

.faq-answer p {
    margin: 20px 0;
    color: #444;
    font-size: 16px;
}



/* ================================
   RODAPÉ
================================ */
.xgens-footer {
    background: #f7f7f7ee;
    padding: 50px 20px 0 20px;
    border-top: 1px solid #ddd;
}

.footer-container {
    max-width: 1250px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.footer-col h4 {
    color: #0a7a4f;
    margin-bottom: 12px;
}

.footer-col a {
    display: block;
    margin-bottom: 8px;
    text-decoration: none;
    color: #444;
}

.footer-whatsapp {
    display: inline-block;
    padding: 10px 18px;
    color: white !important;
    background: #25D366;
    border-radius: 8px;
}

.footer-bottom {
    background: #eee;
    text-align: center;
    padding: 18px;
    margin-top: 30px;
    color: #666;
    border-top: 1px solid #ddd;
}
