/* --- Variáveis Globais --- */
:root {
    --primary-color: #F04E23;
    --primary-hover: #D03D18;
    --text-dark: #1F2937;
    --text-light: #4B5563;
    --text-white: #fff;
    --bg-body: #F9FAFB;
    --bg-white: #FFFFFF;
    --bg-sede: #8B9D77;
    --bg-centro: #78C0C4;
    --bg-navbar: #333;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* --- Reset e Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- Tipografia --- */
h1, h2, h3, h4 {
    line-height: 1.2;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.text-primary {
    color: var(--primary-color);
}

/* --- Botões --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    border-radius: 0;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    gap: 8px;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
}

.btn-outline {
    background-color: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

.btn-outline:hover {
    background-color: var(--bg-white);
    color: var(--text-dark);
}

.btn-outline-dark {
    background-color: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
}

.btn-outline-dark:hover {
    background-color: var(--text-dark);
    color: var(--bg-white);
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--bg-white);
    border: 1px solid #1DA851;
}

.btn-whatsapp:hover {
    background-color: #1DA851;
}

/* --- Header e Navegação --- */
header {
    background-color: var(--bg-navbar);
    color: var(--text-white);
    box-shadow: var(--shadow-sm);
    /*
    position: sticky;
    top: 0;
    z-index: 1000;
    */
    border-bottom: 1px solid var(--primary-color);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-color);
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
}

.logo-img {
    height: 48px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-white);
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle svg {
    width: 28px;
    height: 28px;
    fill: var(--text-dark);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)),
        url('../img/fundo-hero.jpg') center/cover;
    color: var(--bg-white);
    padding: 8rem 2rem;
    text-align: left;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-label {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 0.3rem 1rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    max-width: 800px;
}

.hero p {
    font-size: 1.25rem;
    max-width: 650px;
    margin-bottom: 2.5rem;
    color: #F3F4F6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* --- Page Header (Páginas Internas) --- */
.page-header {
    background: linear-gradient(135deg, var(--text-dark) 0%, #374151 100%);
    color: var(--bg-white);
    padding: 5rem 2rem 4rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.15rem;
    color: #D1D5DB;
    max-width: 600px;
    margin: 0 auto;
}

.page-header .section-tag {
    color: rgba(255, 255, 255, 0.8);
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.4rem 1.2rem;
    display: inline-block;
    margin-bottom: 1.5rem;
}

/* --- Breadcrumb --- */
.breadcrumb {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    font-size: 0.9rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid #E5E7EB;
    background-color: var(--bg-white);
}

.breadcrumb a {
    color: var(--primary-color);
    font-weight: 500;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* --- Seção Comum --- */
.section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-full {
    width: 100%;
    padding: 6rem 2rem;
    background-color: var(--bg-white);
    border-top: 1px solid #E5E7EB;
    border-bottom: 1px solid #E5E7EB;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.8rem;
    display: block;
}

/* --- Unidades --- */
.unidades-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.unidade-card {
    background-color: var(--bg-white);
    border: 1px solid #E5E7EB;
    border-radius: 0;
    overflow: hidden;
    transition: var(--transition);
}

.unidade-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.unidade-header {
    padding: 3rem 2rem;
    text-align: center;
    color: var(--bg-white);
}

.unidade-sede .unidade-header {
    background-color: var(--bg-sede);
}

.unidade-centro .unidade-header {
    background-color: var(--bg-centro);
}

.unidade-body {
    padding: 2.5rem 2rem;
}

.unidade-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #F3F4F6;
}

.info-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.info-row svg {
    width: 20px;
    height: 20px;
    fill: var(--primary-color);
    flex-shrink: 0;
    margin-top: 3px;
}

.cultos-list {
    background-color: var(--bg-body);
    padding: 1.5rem;
    margin-top: 1.5rem;
    border-left: 4px solid var(--primary-color);
}

.cultos-list-title {
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--text-dark);
}

.culto-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #E5E7EB;
}

.culto-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 1.5rem;
    font-size: 0.95rem;
}

.social-link:hover {
    text-decoration: underline;
}

/* --- Eventos --- */
.bg-gray {
    background-color: var(--bg-body);
}

.eventos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.evento-card {
    background-color: var(--bg-white);
    border: 1px solid #E5E7EB;
    padding: 2.5rem 2rem;
    position: relative;
    transition: var(--transition);
}

.evento-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
}

.evento-data {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    display: block;
}

.evento-card h3 {
    margin-bottom: 0.8rem;
}

.evento-card p {
    color: var(--text-light);
    margin-top: 12px;
    line-height: 1.5;
}

/* --- Ministérios --- */
.ministerios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.ministerio-card {
    background-color: var(--bg-white);
    padding: 2.5rem 2rem;
    border: 1px solid #E5E7EB;
    transition: var(--transition);
}

.ministerio-card:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--primary-color);
}

.ministerio-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

.ministerio-card:hover .min-icon {
    background-color: var(--bg-white);
    color: var(--primary-color);
}

.min-icon {
    width: 56px;
    height: 56px;
    background-color: #FFF0ED;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.min-icon svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.ministerio-card h3 {
    margin-bottom: 0.8rem;
    font-size: 1.25rem;
}

.ministerio-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    transition: var(--transition);
}

/* --- WhatsApp Section --- */
.whatsapp-section {
    background-color: var(--bg-white);
    border-top: 1px solid #E5E7EB;
}

.whatsapp-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 6rem 2rem;
}

.whatsapp-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.whatsapp-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.chat-mockup {
    background-color: var(--bg-body);
    padding: 2rem;
    border: 1px solid #E5E7EB;
    box-shadow: var(--shadow-sm);
}

.whatsapp-msg {
    background-color: #DCF8C6;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #1F2937;
    position: relative;
}

.whatsapp-msg .msg-author {
    color: var(--primary-color);
    font-weight: 700;
}

.msg-white {
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
    margin-left: 2rem;
}

/* --- CTA Membrezia --- */
.cta-full {
    width: 100%;
    padding: 7rem 2rem;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-full h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-full p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.cta-full .section-tag {
    color: rgba(255, 255, 255, 0.8);
    background-color: rgba(0, 0, 0, 0.1);
    padding: 0.4rem 1.2rem;
    display: inline-block;
    margin-bottom: 2rem;
}

/* --- Passos (Membresia) --- */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step-card {
    background-color: var(--bg-white);
    padding: 2.5rem 2rem;
    border: 1px solid #E5E7EB;
    position: relative;
    transition: var(--transition);
}

.step-card:hover {
    box-shadow: var(--shadow-sm);
    border-color: var(--primary-color);
}

.step-number {
    font-size: 3rem;
    font-weight: 900;
    color: #FFF0ED;
    line-height: 1;
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
}

.step-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* --- Detalhes da Unidade --- */
.unidade-detail {
    background-color: var(--bg-white);
    border: 1px solid #E5E7EB;
    padding: 3rem;
    margin-bottom: 3rem;
}

.unidade-detail-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #F3F4F6;
}

.unidade-badge {
    padding: 0.8rem 1.5rem;
    color: var(--bg-white);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.badge-sede {
    background-color: var(--bg-sede);
}

.badge-centro {
    background-color: var(--bg-centro);
}

.unidade-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

/* --- Mapa --- */
.map-container {
    width: 100%;
    height: 350px;
    border: 1px solid #E5E7EB;
    background-color: #E5E7EB;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1rem;
    margin-top: 2rem;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* --- FAQ --- */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #E5E7EB;
    margin-bottom: 1rem;
    background-color: var(--bg-white);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    font-family: inherit;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    fill: var(--text-light);
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-inner {
    padding: 0 2rem 1.5rem;
    color: var(--text-light);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* --- Formulário --- */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem 1.2rem;
    border: 1px solid #D1D5DB;
    background-color: var(--bg-white);
    color: var(--text-dark);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    border-radius: 0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(240, 78, 35, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 1rem;
}

/* --- Página 404 --- */
.error-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    text-align: center;
    padding: 4rem 2rem;
}

.error-page h1 {
    font-size: 8rem;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 1rem;
}

.error-page h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.error-page p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

/* --- Footer --- */
footer {
    background-color: #111827;
    color: #9CA3AF;
    padding: 5rem 2rem 2rem;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    color: var(--bg-white);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    display: block;
    letter-spacing: -0.5px;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-title {
    color: var(--bg-white);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--bg-white);
}

.footer-address {
    color: #9CA3AF;
    font-size: 0.95rem;
    font-style: normal;
}

.footer-address li {
    margin-bottom: 0.5rem;
}

.footer-address a {
    color: var(--primary-color);
    font-weight: 600;
}

.footer-address a:hover {
    text-decoration: underline;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    text-align: center;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: #9CA3AF;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--bg-white);
}

/* --- Responsividade --- */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .whatsapp-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .chat-mockup {
        margin-top: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .unidade-detail-content {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: 1;
    }

    .form-submit {
        grid-column: 1;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 73px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 73px);
        background-color: var(--bg-white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        gap: 2rem;
        font-size: 1.2rem;
    }

    .nav-links.active {
        left: 0;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        padding: 6rem 1rem;
        text-align: center;
    }

    .hero-label {
        margin: 0 auto 1.5rem;
    }

    .hero h1 {
        font-size: 2.8rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hero p {
        margin: 0 auto 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .cta-full h2 {
        font-size: 2.2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: left;
    }

    h2 {
        font-size: 2rem;
    }

    .unidade-detail {
        padding: 2rem 1.5rem;
    }

    .unidade-detail-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .palavra-quote p {
        font-size: 1.5rem;
    }

    .missao-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .unidades-grid {
        grid-template-columns: 1fr;
    }

    .eventos-grid {
        grid-template-columns: 1fr;
    }

    .ministerios-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Palavra do Dia --- */
.palavra-do-dia-section {
    background-color: #1A1A2E;
    color: var(--bg-white);
    padding: 6rem 2rem;
    text-align: center;
    border-top: 4px solid var(--primary-color);
}

.palavra-container {
    max-width: 900px;
    margin: 0 auto;
}

.palavra-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 2.5rem;
}

.palavra-icon {
    width: 28px;
    height: 28px;
    fill: var(--primary-color);
    flex-shrink: 0;
}

.palavra-tag {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.palavra-quote {
    border: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.palavra-quote p {
    font-size: 2rem;
    font-style: italic;
    line-height: 1.7;
    color: #F3F4F6;
    font-weight: 300;
    quotes: "\201C" "\201D";
}

.palavra-quote p::before {
    content: open-quote;
    color: var(--primary-color);
    font-size: 3rem;
    line-height: 0;
    vertical-align: -0.4em;
    font-style: normal;
}

.palavra-quote p::after {
    content: close-quote;
    color: var(--primary-color);
    font-size: 3rem;
    line-height: 0;
    vertical-align: -0.4em;
    font-style: normal;
}

.palavra-cite {
    display: block;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: 0.5px;
    font-style: normal;
}

/* --- Nossa Missão --- */
.missao-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.missao-card {
    padding: 2.5rem 2rem;
    border: 1px solid #E5E7EB;
    background-color: var(--bg-white);
    transition: var(--transition);
    text-align: left;
}

.missao-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.missao-icon {
    width: 52px;
    height: 52px;
    background-color: #FFF0ED;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.missao-icon svg {
    width: 26px;
    height: 26px;
    fill: var(--primary-color);
}

.missao-card:hover .missao-icon {
    background-color: var(--primary-color);
}

.missao-card:hover .missao-icon svg {
    fill: var(--bg-white);
}

.missao-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.missao-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- Página Legal (Termos/Privacidade) --- */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-updated {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #E5E7EB;
}

.legal-block {
    margin-bottom: 3rem;
}

.legal-block h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

.legal-block h3 {
    font-size: 1.15rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.legal-block p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-block ul {
    margin: 1rem 0 1.5rem 1.5rem;
    list-style: disc;
}

.legal-block ul li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-block a {
    color: var(--primary-color);
    font-weight: 600;
}

.legal-block a:hover {
    text-decoration: underline;
}

/* --- Utilitários --- */
.text-center {
    text-align: center;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
