@import url('https://fonts.googleapis.com/css2?family=Crimson+Pro:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

:root {
    --azul-profundo: #0F2B42;
    --azul-lago: #1D5F8A;
    --azul-medio: #3A87B5;
    --azul-cielo: #6DB3D9;
    --azul-hielo: #EAF3FA;
    --verde-bosque: #1A4534;
    --verde-musgo: #276B50;
    --verde-salvia: #3D8B6E;
    --verde-suave: #E4F2EC;
    --acento: #4E97B8;
    --acento-suave: #7FC0D8;
    --acento-claro: #D0E9F3;
    --fondo: #F7F9FB;
    --blanco: #FFFFFF;
    --texto: #1A2332;
    --texto-medio: #4A5B6E;
    --texto-suave: #8494A5;
    --borde: #DFE5EC;
    --sombra-sm: 0 1px 3px rgba(15,43,66,0.06);
    --sombra-md: 0 4px 20px rgba(15,43,66,0.08);
    --sombra-lg: 0 12px 40px rgba(15,43,66,0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--texto);
    background: var(--fondo);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-wrap: anywhere;
}

h1, h2, h3, h4 {
    font-family: 'Crimson Pro', serif;
    font-weight: 500;
    color: var(--azul-profundo);
}

img { max-width: 100%; display: block; }

/* texto corrido justificado con guionado (los datos y listas quedan a la izquierda) */
.bloque > p,
.vc-body > p,
.historia-texto > p,
.que-es-body > p,
.bio > p,
.diac-texto > p,
.semi-text > p,
.ubic-info > p {
    text-align: justify;
    hyphens: auto;
    -webkit-hyphens: auto;
}

.ico { width: 36px; height: 36px; stroke: currentColor; fill: none; stroke-width: 1.2; stroke-linecap: round; stroke-linejoin: round; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
/* Revelado al scrollear.
   El contenido es visible por defecto: la animacion solo se activa si el JS
   marca el documento con .js-reveal. Asi, si el script falla o el navegador
   no lo soporta, nunca queda una seccion invisible. */
.js-reveal .animate-in {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.35s ease-out, transform 0.35s ease-out;
}
.js-reveal .animate-in.visible {
    opacity: 1;
    transform: none;
}
@media (prefers-reduced-motion: reduce) {
    .js-reveal .animate-in { opacity: 1; transform: none; transition: none; }
}

/* ===== TOPBAR ===== */
.topbar {
    background: var(--azul-profundo);
    padding: 10px 0;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.3px;
}
.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.topbar-social {
    display: flex;
    gap: 14px;
    align-items: center;
}
.topbar-social a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s;
    font-size: 0.72rem;
}
.topbar-social a:hover { color: white; }

/* ===== NAVBAR ===== */
.navbar {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--borde);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: var(--sombra-md); }
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 40px;
    max-width: 1140px;
    margin: 0 auto;
}
.nav-left, .nav-right { display: flex; gap: 6px; flex: 1; }
.nav-right { justify-content: flex-end; }

/* Hamburger button */
.nav-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}
.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--azul-profundo);
    margin: 5px 0;
    transition: all 0.3s;
    border-radius: 1px;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.nav-mobile-menu {
    display: none;
    flex-direction: column;
    gap: 0;
    background: var(--blanco);
    border-top: 1px solid var(--borde);
    padding: 8px 0;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
    padding: 14px 24px;
    text-decoration: none;
    font-size: 0.88rem;
    color: var(--texto-medio);
    border-bottom: 1px solid var(--borde);
    transition: all 0.2s;
}
.nav-mobile-menu a:last-child { border: none; }
.nav-mobile-menu a:hover { background: var(--azul-hielo); color: var(--azul-lago); }
.nav-center {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 32px;
    text-decoration: none;
}
.nav-center img { height: 40px; transition: transform 0.3s; }
.nav-center:hover img { transform: scale(1.05); }
.nav-center-text { text-align: center; line-height: 1.2; }
.nav-center-text .title {
    font-family: 'Crimson Pro', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--azul-profundo);
}
.nav-center-text .sub {
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--texto-suave);
    font-weight: 400;
}
.nav-link {
    padding: 8px 14px;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 400;
    color: var(--texto-medio);
    transition: all 0.3s;
    border-radius: 6px;
    position: relative;
}
.nav-link:hover { color: var(--azul-lago); background: var(--azul-hielo); }

/* ===== CONTAINER ===== */
.container { max-width: 1140px; margin: 0 auto; padding: 0 40px; }

/* ===== HERO ===== */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 580px;
}
.hero-left {
    background: linear-gradient(165deg, var(--azul-profundo) 0%, #163D4F 50%, var(--verde-bosque) 100%);
    display: flex;
    align-items: center;
    padding: 70px 60px 70px 80px;
    position: relative;
    overflow: hidden;
}
.hero-left::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 80%, rgba(77,151,184,0.12) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(29,95,138,0.1) 0%, transparent 50%);
}
.hero-left::after {
    content: '';
    position: absolute;
    right: -50px;
    top: 0;
    bottom: 0;
    width: 100px;
    background: inherit;
    clip-path: polygon(0 0, 0 100%, 100% 100%);
    z-index: 2;
}
.hero-left-content {
    position: relative;
    z-index: 3;
    animation: fadeUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.2s both;
}
.hero-left .eyebrow {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--acento-suave);
    margin-bottom: 22px;
    font-weight: 400;
}
.hero-left h1 {
    font-size: 3rem;
    color: var(--blanco);
    line-height: 1.12;
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: -0.5px;
}
.hero-left h1 em {
    font-style: italic;
    font-weight: 300;
}
.hero-left p {
    color: rgba(255,255,255,0.55);
    font-size: 0.92rem;
    line-height: 1.85;
    margin-bottom: 36px;
    max-width: 380px;
    font-weight: 300;
}
.hero-btns { display: flex; gap: 12px; }
.btn {
    padding: 13px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.82rem;
    transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
    border: none;
    cursor: pointer;
    letter-spacing: 0.3px;
}
.btn-gold {
    background: var(--verde-musgo);
    color: white;
    box-shadow: 0 2px 12px rgba(39,107,80,0.3);
}
.btn-gold:hover {
    background: var(--verde-salvia);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39,107,80,0.35);
}
.btn-ghost {
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.75);
    background: rgba(255,255,255,0.05);
}
.btn-ghost:hover {
    border-color: rgba(255,255,255,0.4);
    color: white;
    background: rgba(255,255,255,0.1);
}
.hero-right {
    background-image: url('img/prelatura.jpg');
    background-size: cover;
    background-position: center 40%;
    position: relative;
    animation: fadeIn 1.2s ease 0.4s both;
}
.hero-right::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(22,61,79,0.2) 0%, transparent 30%),
                linear-gradient(0deg, rgba(15,43,66,0.08) 0%, transparent 30%);
}

/* ===== EVANGELIO STRIP ===== */
.evangelio-strip {
    border-top: 1px solid var(--borde);
    border-bottom: 1px solid var(--borde);
    background: var(--blanco);
    transition: background 0.4s;
}
.evangelio-strip:hover { background: var(--azul-hielo); }
.evangelio-link {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 32px 40px;
    max-width: 1140px;
    margin: 0 auto;
    text-decoration: none;
    color: var(--texto);
}
.evangelio-accent {
    width: 3px;
    height: 44px;
    background: linear-gradient(to bottom, var(--verde-musgo), var(--azul-lago));
    border-radius: 2px;
    flex-shrink: 0;
    transition: height 0.4s cubic-bezier(0.16,1,0.3,1);
}
.evangelio-strip:hover .evangelio-accent { height: 52px; }
.evangelio-ico-wrap { flex-shrink: 0; }
.evangelio-ico-wrap svg {
    width: 26px; height: 26px;
    stroke: var(--verde-musgo);
    fill: none; stroke-width: 1.3;
    opacity: 0.5;
    transition: opacity 0.3s;
}
.evangelio-strip:hover .evangelio-ico-wrap svg { opacity: 1; }
.evangelio-body { flex: 1; min-width: 0; }
.evangelio-label {
    font-size: 0.56rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--acento);
    font-weight: 500;
    margin-bottom: 4px;
}
.evangelio-title {
    font-family: 'Crimson Pro', serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--azul-profundo);
}
.evangelio-title i {
    font-weight: 300;
    color: var(--texto-medio);
    margin-left: 4px;
}
.evangelio-arrow {
    flex-shrink: 0;
    font-size: 1.1rem;
    color: var(--texto-suave);
    transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
}
.evangelio-strip:hover .evangelio-arrow {
    color: var(--verde-musgo);
    transform: translateX(5px);
}
@media (max-width: 768px) {
    .evangelio-link { padding: 24px; gap: 18px; }
    .evangelio-accent { display: none; }
    .evangelio-title { font-size: 1.05rem; }
    .evangelio-title i { display: block; margin-left: 0; margin-top: 2px; }
}

/* ===== SECTIONS ===== */
.section { padding: 90px 0; }
.section-header { margin-bottom: 50px; }
.section-header .overline {
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 4.5px;
    color: var(--acento);
    font-weight: 500;
    margin-bottom: 10px;
}
.section-header h2 {
    font-size: 2.3rem;
    font-weight: 400;
    letter-spacing: -0.3px;
}
.section-header p {
    color: var(--texto-suave);
    font-size: 0.9rem;
    max-width: 440px;
    margin-top: 10px;
    font-weight: 300;
    line-height: 1.65;
}
.section-header.center { text-align: center; }
.section-header.center p { margin: 10px auto 0; }
.bg-soft { background: var(--azul-hielo); }

/* ===== POST PLACEHOLDERS ===== */
.posts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.post-placeholder {
    background: var(--blanco);
    border: 1px dashed var(--borde);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}
.post-ph-img {
    height: 180px;
    background: linear-gradient(135deg, var(--azul-hielo), var(--verde-suave));
    display: flex;
    align-items: center;
    justify-content: center;
}
.post-ph-body { padding: 24px; }
.post-ph-line {
    height: 10px;
    background: var(--borde);
    border-radius: 5px;
    margin-bottom: 10px;
    opacity: 0.6;
}
.post-ph-line.short { height: 8px; opacity: 0.4; }

/* ===== NOVEDADES PLACEHOLDERS ===== */
.novedades-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.nov-placeholder {
    background: var(--blanco);
    border: 1px dashed var(--borde);
    border-radius: 12px;
    overflow: hidden;
}
.nov-ph-thumb {
    height: 130px;
    background: linear-gradient(135deg, var(--verde-suave), var(--azul-hielo));
}
.nov-ph-body { padding: 18px; }

/* ===== PARROQUIAS CARDS ===== */
.parr-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.parr-card {
    background: var(--blanco);
    border: 1px solid var(--borde);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: var(--texto);
    transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
    display: flex;
    flex-direction: column;
    position: relative;
}
.parr-card:hover {
    box-shadow: var(--sombra-lg);
    transform: translateY(-6px);
    border-color: var(--azul-lago);
}
.parr-card-img {
    height: 140px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.parr-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 50%, rgba(15,43,66,0.15));
}
.parr-card-body {
    padding: 18px 18px 14px;
    flex: 1;
}
.parr-card-body h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1.3;
}
.parr-card-body p {
    font-size: 0.75rem;
    color: var(--texto-suave);
    font-weight: 300;
}
.parr-card-arrow {
    position: absolute;
    bottom: 14px;
    right: 16px;
    font-size: 1.1rem;
    color: var(--texto-suave);
    transition: all 0.3s;
    opacity: 0;
}
.parr-card:hover .parr-card-arrow {
    opacity: 1;
    color: var(--azul-lago);
    transform: translateX(4px);
}

/* ===== HORARIOS BANNER ===== */
.horarios-banner {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--sombra-lg);
}
.horarios-banner-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 40%;
}
.horarios-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(165deg, rgba(15,43,66,0.88), rgba(26,69,52,0.82));
}
.horarios-banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 50px 40px;
}
.horarios-banner-content h2 {
    color: white;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 10px;
}
.horarios-banner-content p {
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
    font-weight: 300;
    max-width: 420px;
    margin: 0 auto 24px;
    line-height: 1.6;
}

/* ===== FB + AYUDA ===== */
.duo-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.duo-card {
    border-radius: 12px;
    padding: 40px;
    transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
}
.duo-card:hover { transform: translateY(-4px); }
.duo-fb {
    background: var(--blanco);
    border: 1px solid var(--borde);
    box-shadow: var(--sombra-sm);
}
.duo-fb h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}
.duo-fb p {
    color: var(--texto-medio);
    font-size: 0.85rem;
    margin-bottom: 24px;
    font-weight: 300;
    line-height: 1.65;
}
.fb-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1877F2;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.82rem;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(24,119,242,0.25);
}
.fb-btn:hover { background: #1565d8; box-shadow: 0 4px 16px rgba(24,119,242,0.35); }
.duo-ayuda {
    background: linear-gradient(155deg, var(--azul-profundo), var(--verde-bosque));
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: var(--sombra-lg);
}
.duo-ayuda::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 90% 10%, rgba(78,151,184,0.15) 0%, transparent 50%);
}
.duo-ayuda > * { position: relative; z-index: 1; }
.duo-ayuda h3 {
    font-size: 1.4rem;
    color: var(--acento-suave);
    margin-bottom: 12px;
}
.duo-ayuda p {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    margin-bottom: 24px;
    line-height: 1.7;
    font-weight: 300;
}

/* ===== OBISPO ===== */
.obispo-card {
    max-width: 840px;
    margin: 0 auto;
    background: var(--blanco);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--borde);
    display: grid;
    grid-template-columns: 300px 1fr;
    box-shadow: var(--sombra-md);
}
.obispo-foto {
    background-image: url('img/naturaleza.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}
.obispo-foto::after {
    content: 'Foto del Obispo';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15,43,66,0.35);
    color: rgba(255,255,255,0.5);
    font-size: 0.88rem;
    font-style: italic;
}
.obispo-info { padding: 44px; }
.obispo-info h3 {
    font-size: 1.65rem;
    margin-bottom: 4px;
}
.obispo-info .cargo {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 3.5px;
    color: var(--acento);
    margin-bottom: 22px;
    font-weight: 400;
}
.obispo-info p {
    color: var(--texto-medio);
    line-height: 1.9;
    font-size: 0.88rem;
    font-weight: 300;
}

/* ===== TIMELINE ===== */
.timeline {
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    padding-left: 48px;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 17px;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: linear-gradient(to bottom, var(--acento), var(--borde));
}
.timeline-item {
    position: relative;
    margin-bottom: 44px;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-item::before {
    content: '';
    position: absolute;
    left: -37px;
    top: 7px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--acento);
    box-shadow: 0 0 0 4px var(--azul-hielo);
}
.timeline-item .year {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--azul-profundo);
    margin-bottom: 4px;
}
.timeline-item p {
    color: var(--texto-medio);
    font-size: 0.88rem;
    line-height: 1.7;
    font-weight: 300;
}

/* ===== PASTORAL CARDS ===== */
.pastoral-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.p-card {
    background: var(--blanco);
    border: 1px solid var(--borde);
    border-radius: 12px;
    padding: 32px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
    position: relative;
    overflow: hidden;
}
.p-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--verde-musgo);
    transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
.p-card:hover::after { width: 100%; left: 0; }
.p-card:hover {
    box-shadow: var(--sombra-md);
    transform: translateY(-4px);
}
.p-card .p-icon {
    margin-bottom: 16px;
    color: var(--azul-lago);
    display: flex;
    justify-content: center;
    transition: color 0.3s;
}
.p-card:hover .p-icon { color: var(--verde-musgo); }
.p-card h4 {
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 6px;
}
.p-card p {
    font-size: 0.76rem;
    color: var(--texto-suave);
    line-height: 1.5;
    font-weight: 300;
}

/* ===== MOVIMIENTOS ===== */
.mov-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.mov-item {
    background: var(--blanco);
    border-left: 3px solid var(--acento-suave);
    border-radius: 0 10px 10px 0;
    padding: 26px;
    border-top: 1px solid var(--borde);
    border-right: 1px solid var(--borde);
    border-bottom: 1px solid var(--borde);
    transition: all 0.3s;
}
.mov-item:hover {
    border-left-color: var(--verde-musgo);
    box-shadow: var(--sombra-sm);
    transform: translateX(4px);
}
.mov-item h4 { font-size: 0.92rem; font-weight: 600; margin-bottom: 4px; }
.mov-item p { font-size: 0.78rem; color: var(--texto-suave); font-weight: 300; }

/* ===== CLERO ===== */
.clero-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.c-card {
    background: var(--blanco);
    border: 1px solid var(--borde);
    border-radius: 12px;
    padding: 34px 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
.c-card:hover {
    box-shadow: var(--sombra-md);
    border-color: var(--azul-lago);
    transform: translateY(-4px);
}
.c-card .c-initial {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Crimson Pro', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    transition: transform 0.3s;
}
.c-card:hover .c-initial { transform: scale(1.1); }
.c-card .c-initial.c1 { background: var(--azul-lago); }
.c-card .c-initial.c2 { background: var(--verde-bosque); }
.c-card .c-initial.c3 { background: var(--azul-profundo); }
.c-card .c-initial.c4 { background: var(--acento); }
.c-card h4 { font-size: 0.92rem; font-weight: 600; margin-bottom: 6px; }
.c-card p { font-size: 0.78rem; color: var(--texto-suave); line-height: 1.5; font-weight: 300; }

/* ===== SEMINARIO ===== */
.seminario-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    align-items: center;
}
.seminario-img {
    height: 340px;
    border-radius: 12px;
    background-image: url('img/peregrinacion.jpg');
    background-size: cover;
    background-position: center;
    box-shadow: var(--sombra-lg);
    position: relative;
}
.seminario-text .overline-sm {
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 4.5px;
    color: var(--acento);
    font-weight: 500;
    margin-bottom: 10px;
}
.seminario-text h3 {
    font-size: 1.55rem;
    margin-bottom: 14px;
}
.seminario-text p {
    color: var(--texto-medio);
    font-size: 0.88rem;
    line-height: 1.85;
    font-weight: 300;
    margin-bottom: 12px;
}
.seminario-links { display: flex; gap: 10px; margin-top: 20px; }
.btn-sm {
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
}
.btn-sm-fill {
    background: var(--verde-bosque);
    color: white;
    box-shadow: 0 2px 8px rgba(26,69,52,0.2);
}
.btn-sm-fill:hover { background: var(--verde-musgo); transform: translateY(-1px); }
.btn-sm-outline {
    border: 1px solid var(--borde);
    color: var(--texto-medio);
    background: transparent;
}
.btn-sm-outline:hover { border-color: var(--azul-lago); color: var(--azul-lago); }

/* ===== FOOTER ===== */
.footer {
    background: var(--azul-profundo);
    color: rgba(255,255,255,0.5);
    padding: 60px 0 24px;
    position: relative;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--verde-bosque), var(--azul-lago), var(--acento));
}
.footer-inner {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}
.footer h4 {
    color: var(--acento-suave);
    font-size: 0.85rem;
    margin-bottom: 18px;
    font-weight: 500;
}
.footer p, .footer li { font-size: 0.8rem; line-height: 2.1; }
.footer ul { list-style: none; }
.footer a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 300;
}
.footer a:hover { color: var(--acento-suave); }
.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}
.footer-brand img { height: 44px; opacity: 0.8; }
.footer p { font-weight: 300; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 22px;
    text-align: center;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.2);
    font-weight: 300;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .pastoral-grid { grid-template-columns: repeat(2, 1fr); }
    .clero-grid { grid-template-columns: repeat(2, 1fr); }
    .mov-list { grid-template-columns: 1fr; }
    .parr-cards { grid-template-columns: repeat(2, 1fr); }
    .posts-grid { grid-template-columns: 1fr; }
    .novedades-grid { grid-template-columns: repeat(2, 1fr); }
    .congre-grid { grid-template-columns: 1fr; }
    .mov-card-grid { grid-template-columns: 1fr; }
    .pastoral-area-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    /* Navbar hamburger */
    .nav-hamburger { display: block; }
    .nav-left, .nav-right { display: none; }
    .nav-inner { justify-content: center; padding: 8px 16px; position: relative; }
    .nav-center { padding: 0 8px; }
    .nav-center img { height: 36px; }
    .nav-center-text .title { font-size: 0.95rem; }
    .nav-center-text .sub { font-size: 0.5rem; letter-spacing: 2px; }

    /* Topbar */
    .topbar { padding: 6px 0; font-size: 0.65rem; }
    .topbar .container { padding: 0 16px; justify-content: center; }
    .topbar .container > span { display: none; }
    .topbar-social { gap: 12px; }

    /* Container */
    .container { padding: 0 20px; }

    /* Sections */
    .section { padding: 50px 0; }

    /* Hero */
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-right { min-height: 260px; }
    .hero-left { padding: 36px 24px; }
    .hero-left::after { display: none; }
    .hero-left::before { display: none; }
    .hero-left h1 { font-size: 2rem; }
    .hero-left p { font-size: 0.85rem; margin-bottom: 24px; }
    .hero-btns { flex-direction: column; gap: 10px; }
    .hero-btns .btn { text-align: center; }

    /* Evangelio */
    .evangelio-link { padding: 20px; gap: 14px; }
    .evangelio-accent { display: none; }
    .evangelio-title { font-size: 1rem; }
    .evangelio-title i { display: block; margin-left: 0; margin-top: 2px; }

    /* Posts & Novedades */
    .posts-grid { grid-template-columns: 1fr; gap: 16px; }
    .novedades-grid { grid-template-columns: 1fr; gap: 16px; }
    .post-ph-img { height: 140px; }

    /* Parroquias */
    .parr-cards { grid-template-columns: 1fr; gap: 14px; }

    /* Horarios banner */
    .horarios-banner { min-height: 200px; }
    .horarios-banner-content { padding: 32px 24px; }
    .horarios-banner-content h2 { font-size: 1.5rem; }

    /* Duo FB + Ayuda */
    .duo-section { grid-template-columns: 1fr; gap: 16px; }
    .duo-card { padding: 28px 24px; }

    /* Page headers */
    .page-header { padding: 36px 20px; }
    .page-header h1 { font-size: 1.8rem; }
    .page-header p { font-size: 0.82rem; }

    /* Inner nav */
    .inner-nav { flex-wrap: nowrap; justify-content: flex-start; overflow-x: auto; gap: 6px; -webkit-overflow-scrolling: touch; }
    .inner-nav a { white-space: nowrap; font-size: 0.78rem; padding: 7px 14px; }

    /* Obispo */
    .obispo-card { grid-template-columns: 1fr; }
    .obispo-foto { min-height: 200px; }
    .obispo-info { padding: 28px 24px; }

    /* Timeline */
    .timeline { padding-left: 36px; }
    .timeline-item { margin-bottom: 30px; }

    /* Clero */
    .clero-grid { grid-template-columns: 1fr; }
    .pastoral-grid { grid-template-columns: 1fr; }

    /* Seminario */
    .seminario-row, .semi-row { grid-template-columns: 1fr; gap: 24px; }
    .seminario-img, .semi-img { height: 220px; }

    /* Footer */
    .footer-inner { grid-template-columns: 1fr; gap: 28px; }
    .footer { padding: 40px 0 20px; }

    /* Ubicacion (nuestra-prelatura) */
    .ubic-grid { grid-template-columns: 1fr; }
    .curia-grid { grid-template-columns: 1fr; }

    /* Diaconos */
    .diaconos-card { flex-direction: column; padding: 28px 24px; }

    /* Caritas */
    .caritas-hero { grid-template-columns: 1fr; }
    .caritas-hero-img { min-height: 220px; }
    .caritas-hero-text { padding: 32px 24px; }
    .caritas-hero-text h1 { font-size: 1.8rem; }
    .equipo-grid { grid-template-columns: 1fr; }
    .contacto-banner { flex-direction: column; text-align: center; padding: 32px 24px; }
}
@media (max-width: 480px) {
    .hero-left h1 { font-size: 1.6rem; }
    .page-header h1 { font-size: 1.5rem; }
    .section-header h2 { font-size: 1.7rem; }
    .parr-card-img { height: 120px; }
}

/* ===== PAGE HEADER (subpaginas) ===== */
.page-header {
    padding: 50px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-header-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.page-header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(165deg, rgba(15,43,66,0.88) 0%, rgba(22,61,79,0.82) 50%, rgba(26,69,52,0.85) 100%);
}
.page-header--no-img {
    background: linear-gradient(165deg, var(--azul-profundo) 0%, #163D4F 50%, var(--verde-bosque) 100%);
}
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 70%, rgba(77,151,184,0.08) 0%, transparent 50%);
}
.page-header .overline,
.page-header h1,
.page-header > p { position: relative; z-index: 2; }
.page-header .overline {
    font-size: 0.58rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--acento-suave);
    font-weight: 400;
    margin-bottom: 12px;
}
.page-header h1 {
    font-family: 'Crimson Pro', serif;
    font-size: 2.4rem;
    color: white;
    font-weight: 400;
    letter-spacing: -0.3px;
    margin-bottom: 8px;
}
.page-header p {
    color: rgba(255,255,255,0.45);
    font-size: 0.88rem;
    font-weight: 300;
    max-width: 500px;
    margin: 0 auto;
}
.breadcrumb {
    padding: 14px 0;
    background: var(--blanco);
    border-bottom: 1px solid var(--borde);
    font-size: 0.78rem;
    color: var(--texto-suave);
}
.breadcrumb a {
    color: var(--texto-medio);
    text-decoration: none;
    transition: color 0.3s;
}
.breadcrumb a:hover { color: var(--azul-lago); }
.breadcrumb span { margin: 0 8px; color: var(--borde); }

/* ===== INNER NAV (subpage sections) ===== */
.inner-nav {
    display: flex;
    gap: 6px;
    justify-content: center;
    flex-wrap: wrap;
}
.inner-nav a {
    padding: 8px 16px;
    border: 1px solid var(--borde);
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.82rem;
    color: var(--texto-medio);
    transition: all 0.3s;
    font-weight: 400;
}
.inner-nav a:hover, .inner-nav a.active {
    background: rgba(15,43,66,0.85);
    color: white;
    border-color: rgba(15,43,66,0.85);
    backdrop-filter: blur(4px);
}

/* ===== REDES SOCIALES - componente unificado del sitio ===== */
/* Flex en vez de grid: con grid las columnas vacias quedaban reservadas y,
   cuando habia menos botones que columnas, el bloque se veia corrido a la
   izquierda. Asi se centran siempre, sean 1, 2 o 5. */
.redes-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    max-width: 800px;
    margin: 0 auto;
}
.red-item {
    flex: 1 1 250px;
    max-width: 340px;
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--blanco);
    border: 1px solid var(--borde);
    border-radius: 12px;
    padding: 16px 20px;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
}
.red-item:hover {
    border-color: var(--azul-lago);
    transform: translateY(-2px);
    box-shadow: var(--sombra-sm);
}
.red-ico {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.red-ico svg { width: 19px; height: 19px; }
.red-ico.fb { background: #1877F2; }
.red-ico.ig { background: linear-gradient(135deg,#833AB4,#E1306C,#F77737); }
.red-ico.yt { background: #FF0000; }
.red-ico.tk { background: #010101; }
.red-ico.web { background: var(--azul-lago); }
.red-entidad {
    font-size: 0.87rem;
    color: var(--azul-profundo);
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 2px;
}
.red-tipo {
    font-size: 0.68rem;
    color: var(--texto-suave);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

/* ===== CAPILLAS - componente unificado ===== */
.capillas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(290px, 100%), 1fr));
    gap: 16px;
    max-width: 940px;
    margin: 0 auto;
}
.capilla-card {
    background: var(--blanco);
    border: 1px solid var(--borde);
    border-radius: 12px;
    padding: 22px 24px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
.capilla-card:hover {
    box-shadow: var(--sombra-md);
    border-color: var(--azul-cielo);
    transform: translateY(-2px);
}
/* foto opcional: solo la usan las capillas de las que tenemos imagen */
.capilla-foto {
    width: calc(100% + 48px);
    max-width: none;
    margin: -22px -24px 16px;
    height: 150px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}
.capilla-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.capilla-ico {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: var(--verde-suave);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.capilla-ico svg { width: 20px; height: 20px; stroke: var(--verde-musgo); fill: none; stroke-width: 1.3; }
.capilla-card h4 {
    font-size: 0.98rem;
    color: var(--azul-profundo);
    font-weight: 500;
    line-height: 1.3;
}
.capilla-ubic {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    font-size: 0.79rem;
    color: var(--texto-suave);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 14px;
}
.capilla-ubic svg { width: 13px; height: 13px; stroke: var(--texto-suave); fill: none; stroke-width: 1.6; flex-shrink: 0; margin-top: 3px; }
.capilla-horario {
    margin-top: auto;
    background: var(--azul-hielo);
    border-radius: 8px;
    padding: 10px 14px;
    display: flex;
    gap: 9px;
    align-items: flex-start;
    font-size: 0.8rem;
    color: var(--azul-profundo);
    font-weight: 500;
    line-height: 1.5;
}
.capilla-horario svg { width: 14px; height: 14px; stroke: var(--azul-lago); fill: none; stroke-width: 1.6; flex-shrink: 0; margin-top: 2px; }
.capilla-horario.sin-dato { background: var(--fondo); color: var(--texto-suave); font-weight: 400; }
.capilla-horario.sin-dato svg { stroke: var(--texto-suave); }

/* ===== AVISO DE HORARIOS EN ACTUALIZACION ===== */
.aviso-horarios {
    max-width: 640px;
    margin: 0 auto;
    background: var(--azul-hielo);
    border-radius: 10px;
    padding: 24px 28px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.aviso-horarios svg { width: 24px; height: 24px; stroke: var(--azul-lago); fill: none; stroke-width: 1.4; flex-shrink: 0; margin-top: 2px; }
.aviso-horarios p { font-size: 0.87rem; color: var(--texto-medio); line-height: 1.75; font-weight: 300; }
