:root {
    --primary: #1e293b;    /* Azul marinho profundo */
    --accent: #f59e0b;     /* Laranja para botões */
    --bg-light: #ffffff;   /* Fundo branco */
    --bg-alt: #dae6f2;     /* Cinza claro */
    --gold: #b45309;       /* Dourado */
    --red: #36c277;        /* Tom de verde (conforme seu código) */
    --red2: #1dad60;       /* Tom de verde escuro */
    --blue: #addcf7;
    --text-muted: #475569;
    --text-baner: #033987;
}

* { margin:0; padding:0; box-sizing:border-box; }

body {
    font-family: 'Segoe UI', system-ui, Roboto;
    background: var(--bg-light);
    color: var(--primary);
    line-height: 1.6;
}

/* --- NAVEGAÇÃO --- */
.navbar-topo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 10px 5%;
    display: fixed;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-container img {
    height: 75px;
    width: auto;
}

.logo-container .text {
    color: var(--text-baner);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.menu {
    display: flex;
    gap: 25px;
}

.menu a {
    color: var(--text-baner);
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.menu a:hover {
    color: var(--accent);
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: var(--text-baner);
    transition: 0.3s;
}

/* RESPONSIVIDADE HEADER */
@media (max-width: 992px) {
    .menu-toggle {
        display: block;
    }

    .menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-out;
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
        display: flex;
    }

    .menu.active {
        max-height: 500px;
    }

    .menu a {
        padding: 20px;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
}

header { 
    background-color: #228B22; 
    padding: 20px; 
    box-shadow: 0 4px 6px rgba(0,0,0,0.1); 
    margin-top: 95px; /* <--- ADICIONE ESTA LINHA. Ajuste o valor 80px se precisar de mais ou menos espaço */
}

/* --- HERO SECTION --- */
.hero {
    height: 100vh;
    min-height: 650px;
    background: linear-gradient(rgba(255,255,255,0.4), rgba(255,255,255,0.6)), 
                url('imagens/jesus-volta.png') center/cover no-repeat fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 60px;
}

.hero-content {
    max-width: 850px;
    padding: 0 20px;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--text-baner);
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(255,255,255,0.8);
}

.hero h4 {
    font-size: 1.7rem;
    margin-bottom: 1rem;
    color: var(--text-baner);
    font-weight: 550;
}

.hero .subtitle {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: #04476e;
    font-weight: 600;
}

.frases-button {
    background: color-mix(in srgb, var(--blue), transparent 50%);
    color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid white;
}

.cta-button {
    background: var(--red);
    color: white;
    padding: 18px 45px;
    font-size: 1.2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 10px 20px rgba(245,158,11,0.3);
    text-transform: uppercase;
}

.cta-button:hover {
    transform: translateY(-3px);
    background: #358f5f;
    box-shadow: 0 15px 25px rgba(245,158,11,0.4);
}

/* --- SEÇÕES E CARDS --- */
section {
    padding: 100px 5%;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--text-baner);
    font-weight: 800;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    transition: 0.4s;
    border: 1px solid #c5d5eb;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0,0,0,0.1);
}

.card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.card-body {
    padding: 30px;
}

.card-body h3 {
    margin-bottom: 12px;
    color: var(--text-baner);
    font-size: 1.4rem;
}

.card-body p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.study-link {
    color: var(--red2);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
}

/* --- FOOTER INDEPENDENTE --- */
.main-footer {
    background-color: #2c3e50;
    padding: 60px 5% 40px;
    color: white;
    text-align: center;
}

.footer-menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 30px;
}

.footer-menu a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: 0.3s;
}

.footer-menu a:hover {
    color: #f1c40f; /* Hover Amarelo solicitado */
}

.social-links a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    transition: 0.3s;
}

.social-links a:hover {
    color: #f1c40f;
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    color: var(--primary);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20% { transform: translateY(0); }
    50% { transform: translateY(15px); }
}

/* AJUSTES FINAIS MOBILE */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.2rem; }
    .hero h4 { font-size: 1.3rem; }
    .footer-menu { flex-direction: column; gap: 15px; }
}
		
