body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background: #0f2e1f;
    color: #ffffff;
}

/* HEADER */
.header {
    background: #0d2417;
    border-bottom: 3px solid #d4af37;
    padding: 1rem 0;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logos-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    height: 70px;
    width: auto;
}

/* MENU */
.nav ul {
    display: flex;
    list-style: none;
    gap: 1rem;
}

.nav a {
    text-decoration: none;
    color: #ffd76a;
    font-weight: 600;
}

.nav a.active {
    border-bottom: 2px solid #d4af37;
}

/* HERO */
.hero {
    background: url('images/fundo-igreja.png');
    background-size: cover;
    background-position: center;
    height: 75vh;
    position: relative;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.hero-content {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.hero h1 {
    font-size: 3rem;
    color: #ffd76a;
}

.hero p {
    font-size: 1.2rem;
    color: #ffffff;
    margin-top: 0.5rem;
}

.hero-buttons {
    margin-top: 1.5rem;
}

.btn-primary {
    background: #d4af37;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    color: #0f2e1f;
    margin-right: 12px;
    text-decoration: none;
}

.btn-secondary {
    border: 2px solid #d4af37;
    padding: 10px 22px;
    color: #ffd76a;
    text-decoration: none;
}

/* SEÇÕES */
.sections {
    padding: 3rem 0;
}

.sections-grid {
    display: grid;
    gap: 1.8rem;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}

.section-card {
    background: #123822;
    padding: 1.6rem;
    border-radius: 8px;
    border-left: 4px solid #d4af37;
}

.btn-link {
    text-decoration: none;
    color: #ffd76a;
    font-weight: bold;
    margin-top: 1rem;
    display: inline-block;
}

/* FOOTER */
.footer {
    background: #0d2417;
    text-align: center;
    padding: 1.5rem;
    margin-top: 2rem;
    border-top: 3px solid #d4af37;
}
/* HERO INTERNO (para páginas internas) */
.hero-inner {
    background: linear-gradient(135deg, #0d2417 0%, #0f3d25 100%);
    height: 50vh;
}

/* SEÇÕES DE CONTEÚDO */
.content-section {
    padding: 3rem 0;
}

.article-block {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: #123822;
    border-left: 4px solid #d4af37;
    border-radius: 8px;
}

.article-block h2 {
    color: #ffd76a;
    font-size: 1.8rem;
    margin-top: 0;
}

.article-block p {
    line-height: 1.8;
    color: #e0e0e0;
}

.article-block ul {
    list-style: none;
    padding-left: 0;
}

.article-block ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #e0e0e0;
}

.article-block ul li:before {
    content: "✦";
    position: absolute;
    left: 0;
    color: #d4af37;
}

/* CTA BLOCK */
.cta-block {
    text-align: center;
    padding: 2rem;
    background: #0d2417;
    border: 2px solid #d4af37;
    border-radius: 8px;
    margin-top: 2rem;
}

.cta-block h3 {
    color: #ffd76a;
    font-size: 1.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
    }

    .article-block {
        padding: 1rem;
    }
}
/* FORMULÁRIO */
.form-container {
    background: #123822;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #d4af37;
    margin: 2rem 0;
}

.form-container h2 {
    color: #ffd76a;
    margin-top: 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #ffd76a;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #0d2417;
    border-radius: 5px;
    background: #0f2e1f;
    color: #fff;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
}

.checkbox-group label {
    margin-bottom: 0;
}

.checkbox-group a {
    color: #d4af37;
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    cursor: pointer;
    border: none;
}

.btn-submit:hover {
    background: #ffd76a;
    color: #0d2417;
}

@media (max-width: 768px) {
    .form-container {
        padding: 1.5rem;
    }
}
/* E-BOOK LAYOUT */
.ebook-highlight {
    margin-bottom: 2.5rem;
}

.ebook-layout {
    display: grid;
    grid-template-columns: minmax(0, 260px) minmax(0, 1fr);
    gap: 2rem;
    align-items: flex-start;
}

.ebook-cover img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.ebook-info h2 {
    color: #ffd76a;
    margin-top: 0;
}

.ebook-subtitle {
    font-style: italic;
    color: #f0e0a8;
}

.ebook-price-box {
    margin-top: 1.5rem;
    padding: 1.2rem;
    background: #0d2417;
    border-radius: 8px;
    border: 1px solid #d4af37;
}

.ebook-price {
    font-size: 1.1rem;
    color: #ffd76a;
    margin-bottom: 0.5rem;
}

.ebook-note {
    font-size: 0.95rem;
    color: #e0e0e0;
    margin-bottom: 1rem;
}

/* AUTOR */
.autor-layout {
    display: grid;
    grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
    gap: 2rem;
    align-items: flex-start;
}

.autor-foto img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.4);
    object-fit: cover;
}

.autor-texto h2 {
    color: #ffd76a;
    margin-top: 0;
}

.autor-texto h3 {
    color: #f0e0a8;
    margin-top: 1rem;
}

@media (max-width: 900px) {
    .ebook-layout,
    .autor-layout {
        grid-template-columns: 1fr;
    }
}
/* CONTATO GRID */
.contato-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.contato-card {
    background: #123822;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #d4af37;
}

.contato-card h3 {
    color: #ffd76a;
    margin-top: 0;
    font-size: 1.2rem;
}

.contato-card p {
    color: #e0e0e0;
    line-height: 1.6;
}

.contato-card a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
}

.contato-card a:hover {
    text-decoration: underline;
}

.contato-note {
    font-size: 0.9rem;
    color: #b0b0b0;
    margin-top: 0.5rem;
}

.btn-small {
    display: inline-block;
    padding: 0.6rem 1rem;
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .contato-grid {
        grid-template-columns: 1fr;
    }
}
/* PALAVRA DE FÉ DO DIA */
.palavra-dia {
    position: relative;
}

.palavra-header .palavra-data {
    font-size: 0.95rem;
    color: #f0e0a8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
}

.palavra-header h2 {
    color: #ffd76a;
    margin: 0.2rem 0 0.4rem;
}

.palavra-referencia {
    font-size: 0.95rem;
    color: #e0e0e0;
    font-style: italic;
}

.palavra-texto p {
    line-height: 1.9;
    margin-bottom: 1rem;
}

.palavra-footer {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.5);
    font-size: 0.95rem;
    color: #e6e6e6;
}
/* ESTUDOS BÍBLICOS */
.estudos-secao {
    margin: 3rem 0;
    padding: 2rem;
    background: #0d2417;
    border-radius: 8px;
    border-left: 4px solid #d4af37;
}

.estudos-titulo {
    color: #ffd76a;
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.estudos-intro {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.estudo-item {
    background: #123822;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 6px;
    border-left: 3px solid #f0e0a8;
}

.estudo-item h3 {
    color: #ffd76a;
    margin-top: 0;
    font-size: 1.3rem;
}

.estudo-item p {
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.estudo-item ul {
    list-style: none;
    padding-left: 0;
}

.estudo-item ul li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #e0e0e0;
}

.estudo-item ul li:before {
    content: "✦";
    position: absolute;
    left: 0;
    color: #d4af37;
}

@media (max-width: 768px) {
    .estudos-secao {
        padding: 1.5rem;
    }

    .estudo-item {
        padding: 1rem;
    }
}
/* ESTATUTO */
.estatuto-intro {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 1.5rem;
}

.estatuto-capitulo {
    margin: 2.5rem 0;
    padding: 1.5rem;
    background: #0d2417;
    border-radius: 8px;
    border-left: 4px solid #d4af37;
}

.estatuto-capitulo h3 {
    color: #ffd76a;
    font-size: 1.4rem;
    margin-top: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.estatuto-artigo {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #123822;
    border-radius: 6px;
    border-left: 3px solid #f0e0a8;
}

.estatuto-artigo h4 {
    color: #ffd76a;
    margin-top: 0;
    font-size: 1.1rem;
}

.estatuto-artigo p {
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.estatuto-artigo ul {
    list-style: none;
    padding-left: 0;
}

.estatuto-artigo ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #e0e0e0;
}

.estatuto-artigo ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
}

.estatuto-assinatura {
    margin-top: 3rem;
    padding: 2rem;
    text-align: center;
    color: #e0e0e0;
}

.estatuto-assinatura p {
    line-height: 1.8;
}

@media (max-width: 768px) {
    .estatuto-capitulo {
        padding: 1rem;
    }

    .estatuto-artigo {
        padding: 0.8rem;
    }
}
/* FORMAS DE PAGAMENTO */
.pagamento-section {
    margin-top: 2.5rem;
    padding: 2rem;
    background: #0d2417;
    border-radius: 8px;
    border: 2px solid #d4af37;
}

.pagamento-opcoes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.pagamento-item {
    background: #123822;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #d4af37;
    text-align: center;
}

.pagamento-item h4 {
    color: #ffd76a;
    margin-top: 0;
    margin-bottom: 0.8rem;
    font-size: 1.15rem;
}

.pagamento-item p {
    color: #e0e0e0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.qrcode-img {
    width: 200px;
    height: 200px;
    margin: 1rem auto;
    display: block;
    border-radius: 8px;
    border: 3px solid #d4af37;
    padding: 10px;
    background: #ffffff;
}

.dados-bancarios {
    background: #0d2417;
    padding: 1.2rem;
    border-radius: 6px;
    text-align: left;
    border: 1px solid #d4af37;
}

.dados-bancarios p {
    margin: 0.4rem 0;
    font-size: 0.9rem;
}

.dados-bancarios strong {
    color: #ffd76a;
}

.pagamento-nota {
    font-size: 0.85rem;
    color: #b0b0b0;
    font-style: italic;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .pagamento-section {
        padding: 1.5rem;
    }

    .qrcode-img {
        width: 160px;
        height: 160px;
    }
}
/* FORMAS DE PAGAMENTO */
.pagamento-section {
    margin-top: 2.5rem;
    padding: 2rem;
    background: #0d2417;
    border-radius: 8px;
    border: 2px solid #d4af37;
}

.pagamento-opcoes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.pagamento-item {
    background: #123822;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #d4af37;
    text-align: center;
}

.pagamento-item h4 {
    color: #ffd76a;
    margin-top: 0;
    margin-bottom: 0.8rem;
    font-size: 1.15rem;
}

.pagamento-item p {
    color: #e0e0e0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.qrcode-img {
    width: 200px;
    height: 200px;
    margin: 1rem auto;
    display: block;
    border-radius: 8px;
    border: 3px solid #d4af37;
    padding: 10px;
    background: #ffffff;
}

.dados-bancarios {
    background: #0d2417;
    padding: 1.2rem;
    border-radius: 6px;
    text-align: left;
    border: 1px solid #d4af37;
}

.dados-bancarios p {
    margin: 0.4rem 0;
    font-size: 0.9rem;
}

.dados-bancarios strong {
    color: #ffd76a;
}

.pagamento-nota {
    font-size: 0.85rem;
    color: #b0b0b0;
    font-style: italic;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .pagamento-section {
        padding: 1.5rem;
    }

    .qrcode-img {
        width: 160px;
        height: 160px;
    }
}
