/* --- VARIABLES DE COLOR (Identidad Misionera) --- */
:root {
    --verde-selva: #1b4332; /* Verde profundo */
    --verde-mate: #40916c;  /* Verde más vibrante */
    --tierra-colorada: #c13e27; /* Terracota / Tierra roja */
    --fondo-claro: #f4f7f6; /* Fondo blanco/crema */
    --texto-principal: #1b4332; /* Texto oscuro */
    --texto-secundario: #4a5c52; /* Texto gris/verdoso */
}

/* --- RESET Y ESTILOS BASE --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--fondo-claro);
    color: var(--texto-principal);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}

/* --- FONDO CON EFECTO (Opcional: puedes reemplazar el background-image con una foto de Misiones) --- */
.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradiente claro para que el logo con fondo blanco se disimule o resalte bien */
    background: linear-gradient(135deg, rgba(244,247,246,0.97) 0%, rgba(255,255,255,0.92) 100%),
                url('https://images.unsplash.com/photo-1598436531464-672ceef0d06b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    z-index: -1;
}

/* --- HEADER / LOGO --- */
header {
    padding: 1rem 5% 0 5%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.logo-img {
    max-height: 360px; /* Tamaño mucho más grande e imponente */
    width: auto;
    /* El mix-blend-mode multiply hace que el fondo blanco de la imagen se vuelva transparente sobre fondos claros */
    mix-blend-mode: multiply; 
}

/* --- BADGE SUPERIOR --- */
.top-banner {
    width: 100%;
    text-align: center;
    padding-top: 1.5rem;
}

/* --- CONTENIDO PRINCIPAL --- */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0.5rem 5% 2rem 5%;
    max-width: 900px;
    margin: 0 auto;
}

.badge {
    display: inline-block;
    background-color: rgba(64, 145, 108, 0.15);
    border: 1px solid rgba(64, 145, 108, 0.3);
    color: var(--verde-selva);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1 {
    font-size: clamp(1.8rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    color: #183755;
    margin-bottom: 1.5rem;
}

h1 span {
    color: var(--tierra-colorada);
}

p.subtitle {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: #c24023;
    max-width: 700px;
}

/* --- BOTONES DE REDES (CTA) --- */
.cta-container {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-wa {
    background-color: #25D366;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-wa:hover {
    background-color: #1ebe57;
    transform: translateY(-3px);
}

.btn-tg {
    background-color: #0088cc;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
}

.btn-tg:hover {
    background-color: #0077b5;
    transform: translateY(-3px);
}

/* --- FOOTER --- */
footer {
    padding: 2rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--texto-secundario);
}