@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700;900&display=swap');

:root {
    --dark-green: #072d58;
    --gold: #e6a82d;
    --light-bg: #f7f5f2;
    --white: #ffffff;
    --text-dark: #2c2c2c;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--light-bg);
    color: var(--text-dark);
    padding-top: 80px; /* Adiciona espaço para o menu fixo */
}

/* --- NOVO: ESTILOS DO MENU --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    height: 80px;
    max-width: 1300px;
    margin: 0 auto;
}

.nav-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-green);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--gold);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--dark-green);
    transition: all 0.3s ease-in-out;
}

/* --- SEÇÃO PRINCIPAL (HERO) --- */
.hero {
    background-color: var(--dark-green);
    color: var(--white);
    padding: 2rem 5%;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-image img {
    max-width: 500px;
    width: 100%;
    border-radius: 10px;
}

.hero-text {
    max-width: 500px;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--gold);
}

.hero-text .subtitle {
    font-size: 1.2rem;
    margin: 1rem 0;
    opacity: 0.9;
}

.hero-text .price {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 2rem 0;
}

.btn-buy {
    background-color: var(--gold);
    color: var(--dark-green);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-buy:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* --- SEÇÃO DESTAQUE DA ESTAMPA --- */
.highlight-section {
    padding: 4rem 5%;
    background: var(--white);
}
.highlight-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}
.highlight-art img {
    max-width: 400px;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.highlight-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.highlight-text p {
    line-height: 1.7;
    margin-bottom: 1rem;
}
.highlight-text .verse {
    display: block;
    font-weight: 700;
    color: var(--gold);
    font-size: 1.2rem;
    margin-top: 1.5rem;
}


/* --- SEÇÃO DE QUALIDADE --- */
.quality-section {
    padding: 4rem 5%;
}
.quality-section h2, .purchase-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}
.quality-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.quality-item {
    text-align: center;
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.quality-item i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
}
.quality-item h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

/* --- SEÇÃO INFO (PAGAMENTO E ENTREGA) --- */
.info-section {
    background-color: var(--dark-green);
    color: var(--white);
    padding: 3rem 5%;
}
.info-container {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}
.info-column h3 {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}
.payment-icons {
    font-size: 2.5rem;
    margin-top: 1rem;
}
.payment-icons span {
    font-size: 1.5rem;
    font-weight: 700;
    vertical-align: middle;
    margin-left: 0.5rem;
}
.payment-icons i, .payment-icons span {
    margin: 0 0.5rem;
}

/* --- SEÇÃO DE COMPRA --- */
.purchase-section {
    padding: 4rem 5%;
    background: var(--white);
}

#purchase-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
#purchase-form input, #purchase-form select, #purchase-form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}
#purchase-form .form-row {
    display: flex;
    gap: 1rem;
}
.form-row select { flex: 3; }
.form-row input { flex: 1; }
#purchase-form textarea {
    resize: vertical;
    min-height: 100px;
}
#form-status {
    text-align: center;
    margin-top: 1rem;
    font-weight: 500;
}
.form-success { color: #0a3d2b; }
.form-error { color: #d9534f; }

/* --- RODAPÉ --- */
footer {
    background-color: var(--text-dark);
    color: var(--white);
    text-align: center;
    padding: 1.5rem 5%;
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 768px) {
    /* NOVO: Estilos para menu mobile */
    .hamburger {
        display: block;
    }
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        height: calc(100vh - 80px);
        text-align: center;
        transition: 0.3s;
        gap: 2rem;
        padding-top: 2rem;
    }
    .nav-menu.active {
        left: 0;
    }
    .nav-link {
        font-size: 1.5rem;
    }
    
    .hero-content, .highlight-content {
        flex-direction: column;
        text-align: center;
    }
    .highlight-text {
        order: 2;
    }
    .quality-grid {
        grid-template-columns: 1fr;
    }
    .info-container {
        flex-direction: column;
    }
}

@media (max-width: 500px) {
    body { padding-top: 70px; }
    .navbar, header { height: 70px; }
    .nav-menu { top: 70px; }
    
    .hero-text h1 { font-size: 2.8rem; }
    .hero-text .price { font-size: 2rem; }
    .highlight-text h2, .quality-section h2, .purchase-section h2 { font-size: 2rem; }
    #purchase-form .form-row { flex-direction: column; }
}
/* --- ESTILOS DO NOVO RODAPÉ --- */
.site-footer {
    background-color: var(--text-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 3rem 5% 1rem;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 2rem;
}

.footer-column h3 {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.footer-column p {
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.contact-info p i {
    color: var(--gold);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.social-icons {
    margin-top: 1.5rem;
}

.social-icons a {
    color: var(--white);
    font-size: 1.5rem;
    margin-right: 1rem;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.social-icons a:hover {
    color: var(--gold);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0.5rem 0;
}

.footer-bottom a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
}
.footer-bottom a:hover {
    text-decoration: underline;
}

/* Ajustes responsivos para o rodapé */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-column {
        margin-bottom: 1.5rem;
    }
    .contact-info p i {
        /* Esconde o ícone para não quebrar a linha no centro */
        display: none; 
    }
}

/* --- SEÇÕES ADICIONAIS DE SERVIÇOS --- */
.extra-services-section {
    padding: 4rem 5%;
}

.extra-services-section.bg-white {
    background: var(--white);
}

.extra-services-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Inverte a ordem das colunas */
.extra-services-content.reverse {
    flex-direction: row-reverse;
}

.extra-services-image {
    flex-shrink: 0;
}

.extra-services-image img {
    max-width: 450px;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.extra-services-text .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.extra-services-text .text-muted {
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Lista de Vantagens (Igrejas) */
.features-list {
    list-style: none;
    margin-bottom: 2.5rem;
}
.features-list li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}
.features-list li i {
    color: var(--gold);
    font-size: 1.5rem;
    margin-right: 15px;
    width: 25px;
}

/* Lista de Processo (Empresas) */
.process-list {
    list-style: none;
    margin-bottom: 2.5rem;
}
.process-list li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}
.process-list li span {
    background-color: var(--gold);
    color: var(--dark-green);
    font-weight: 700;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

/* Botão Secundário */
.btn-secondary {
    background-color: var(--dark-green);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 2px solid var(--dark-green);
}
.btn-secondary:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.btn-secondary i {
    margin-right: 10px;
}


/* Responsividade para as novas seções */
@media (max-width: 992px) {
    .extra-services-content,
    .extra-services-content.reverse {
        flex-direction: column;
        text-align: center;
    }
    .extra-services-text .section-title {
        text-align: center;
    }
    .features-list li, .process-list li {
        justify-content: center;
    }
}

/* --- ESTILOS PARA A PÁGINA 'NOSSA EMPRESA' --- */

/* Cabeçalho da Página (Título) */
.page-header {
    background-color: var(--dark-green);
    color: var(--white);
    padding: 3rem 5%;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0.5rem auto 0;
}

/* Conteúdo da Página da Empresa */
.company-section {
    padding: 4rem 5%;
    background-color: var(--white);
}

.company-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.company-text {
    flex: 1;
    max-width: 700px;
}

.company-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.company-text .lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-dark);
}

.company-image {
    flex-shrink: 0;
}

.company-image img {
    max-width: 400px;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* Responsividade para a página da empresa */
@media (max-width: 992px) {
    .company-content {
        flex-direction: column;
    }

    .company-image {
        margin-top: 2rem;
    }
}

/* Outros diversos */
a.link-bco:active  {text-decoration: none; color:#FFF;}
a.link-bco:hover   {text-decoration: none; color:#CCC;}
a.link-bco:link    {text-decoration: none; color:#FFF;}
a.link-bco:visited {text-decoration: none; color:#FFF;}