/* ===== Manantial de Vida — Apple-style Design System ===== */
:root {
    /* Colors — Apple palette */
    --hc-bg: #ffffff;
    --hc-bg-page: #f5f5f7;
    --hc-bg-dark: #000000;
    --hc-bg-dark-2: #1d1d1f;
    --hc-text: #1d1d1f;
    --hc-text-2: #6e6e73;
    --hc-text-3: #86868b;
    --hc-blue: #0071e3;
    --hc-blue-hover: #0076DF;
    --hc-blue-light: #2997ff;
    --hc-border: rgba(0,0,0,0.08);
    --hc-border-light: #d2d2d7;
    --hc-radius: 18px;
    --hc-radius-sm: 12px;
    --hc-radius-pill: 980px;
    --hc-max-w: 1080px;
    --hc-ease: cubic-bezier(0.28, 0.11, 0.32, 1);
    --hc-shadow: 0 4px 24px rgba(0,0,0,0.06);
    --hc-shadow-lg: 0 12px 40px rgba(0,0,0,0.08);
}

/* ===== Reset ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 17px;
    line-height: 1.47059;
    font-weight: 400;
    letter-spacing: -.022em;
    color: var(--hc-text);
    background: var(--hc-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a { color: var(--hc-blue); text-decoration: none; transition: color .2s var(--hc-ease); }
a:hover { color: var(--hc-blue-hover); text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }

.contenedor { max-width: var(--hc-max-w); margin: 0 auto; padding: 0 22px; }

/* ===== Scroll Animations ===== */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .8s var(--hc-ease), transform .8s var(--hc-ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.delay-1 { transition-delay: .1s; }
.fade-up.delay-2 { transition-delay: .2s; }
.fade-up.delay-3 { transition-delay: .3s; }

/* ===== Nav — Apple frosted glass ===== */
.nav {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: rgba(255,255,255,0.72);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--hc-border);
}

.nav-inner {
    max-width: var(--hc-max-w);
    margin: 0 auto;
    padding: 0 22px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-brand img { height: 34px; width: auto; }

.nav-brand-text {
    font-size: 15px;
    font-weight: 600;
    color: var(--hc-text);
    letter-spacing: -.02em;
    line-height: 1.2;
}

.nav-brand-text .sub {
    font-size: 11px;
    font-weight: 400;
    color: var(--hc-text-3);
    letter-spacing: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-links a {
    color: var(--hc-text);
    font-size: 14px;
    font-weight: 400;
    padding: 8px 14px;
    border-radius: var(--hc-radius-pill);
    text-decoration: none;
    transition: background .2s var(--hc-ease), color .2s var(--hc-ease);
}

.nav-links a:hover { background: rgba(0,0,0,0.05); color: var(--hc-text); text-decoration: none; }
.nav-links a.activo { color: var(--hc-blue); font-weight: 500; }

/* Hamburger */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
    padding: 0;
    position: relative;
    z-index: 10001;
}

.nav-toggle span {
    display: block;
    position: absolute;
    left: 4px;
    width: 22px;
    height: 1.5px;
    background: var(--hc-text);
    border-radius: 2px;
    transition: all .3s var(--hc-ease);
    transform-origin: center;
}

.nav-toggle span:nth-child(1) { top: 9px; }
.nav-toggle span:nth-child(2) { top: 14px; }
.nav-toggle span:nth-child(3) { top: 19px; }

.nav-toggle.open span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* ===== Hero — Full viewport, Apple style ===== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: var(--hc-bg-page);
}

.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.65) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding: 120px 22px 100px;
    color: white;
}

.hero-eyebrow {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .02em;
    opacity: .9;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 56px;
    font-weight: 600;
    line-height: 1.07;
    letter-spacing: -.022em;
    margin-bottom: 18px;
    text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 21px;
    font-weight: 400;
    line-height: 1.42;
    opacity: .92;
    margin-bottom: 40px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Apple Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 26px;
    border-radius: var(--hc-radius-pill);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all .2s var(--hc-ease);
    border: none;
    cursor: pointer;
    letter-spacing: -.01em;
    min-height: 44px;
}

.btn-primary {
    background: var(--hc-blue);
    color: white;
}
.btn-primary:hover { background: var(--hc-blue-hover); color: white; text-decoration: none; transform: translateY(-1px); }

.btn-light {
    background: rgba(255,255,255,0.9);
    color: var(--hc-text);
}
.btn-light:hover { background: white; color: var(--hc-text); text-decoration: none; transform: translateY(-1px); }

.btn-ghost {
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: white; color: white; text-decoration: none; }

.btn-outline {
    background: transparent;
    color: var(--hc-blue);
    border: 1.5px solid var(--hc-blue);
}
.btn-outline:hover { background: var(--hc-blue); color: white; text-decoration: none; }

/* ===== Sections ===== */
.seccion { padding: 100px 0; }
.seccion-gris { background: var(--hc-bg-page); }

.seccion-head {
    text-align: center;
    margin-bottom: 60px;
}

.seccion-head h2 {
    font-size: 48px;
    font-weight: 600;
    letter-spacing: -.022em;
    line-height: 1.08;
    color: var(--hc-text);
}

.seccion-head p {
    font-size: 21px;
    font-weight: 400;
    color: var(--hc-text-2);
    margin-top: 14px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.42;
}

/* ===== Versiculo ===== */
.versiculo {
    padding: 80px 22px;
    text-align: center;
    background: var(--hc-bg-page);
    border-top: 1px solid var(--hc-border);
    border-bottom: 1px solid var(--hc-border);
}

.versiculo blockquote {
    font-size: 32px;
    font-weight: 600;
    color: var(--hc-text);
    line-height: 1.3;
    letter-spacing: -.015em;
    max-width: 700px;
    margin: 0 auto;
}

.versiculo cite {
    display: block;
    margin-top: 18px;
    font-size: 15px;
    font-style: normal;
    color: var(--hc-blue);
    font-weight: 500;
}

/* ===== Tarjetas ===== */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.tarjeta {
    background: var(--hc-bg);
    border: 1px solid var(--hc-border);
    border-radius: var(--hc-radius);
    overflow: hidden;
    transition: transform .35s var(--hc-ease), box-shadow .35s var(--hc-ease);
    display: flex;
    flex-direction: column;
}

.tarjeta:hover {
    transform: translateY(-4px);
    box-shadow: var(--hc-shadow-lg);
}

.tarjeta-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.tarjeta-img-ph {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #f5f7fa, #eef2f7);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tarjeta-img-ph svg { width: 40px; height: 40px; color: var(--hc-border-light); }

.tarjeta-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }

.tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--hc-blue);
    background: rgba(0,113,227,0.08);
    padding: 4px 12px;
    border-radius: var(--hc-radius-pill);
    margin-bottom: 12px;
    align-self: flex-start;
    letter-spacing: .01em;
}

.tarjeta h3 {
    font-size: 19px;
    font-weight: 600;
    letter-spacing: -.015em;
    line-height: 1.3;
    margin-bottom: 8px;
}

.tarjeta h3 a { color: var(--hc-text); text-decoration: none; }
.tarjeta h3 a:hover { color: var(--hc-blue); text-decoration: none; }

.tarjeta .resumen {
    font-size: 15px;
    color: var(--hc-text-2);
    line-height: 1.5;
    flex: 1;
}

.tarjeta-foot {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--hc-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--hc-text-3);
}

.tarjeta-foot .leer {
    color: var(--hc-blue);
    font-weight: 500;
    text-decoration: none;
    font-size: 14px;
}
.tarjeta-foot .leer:hover { text-decoration: underline; }

/* ===== Split (Nosotros) ===== */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.split-text h2 {
    font-size: 40px;
    font-weight: 600;
    letter-spacing: -.022em;
    line-height: 1.1;
    margin-bottom: 20px;
}

.split-text p {
    font-size: 17px;
    color: var(--hc-text-2);
    line-height: 1.6;
    margin-bottom: 16px;
}

.split-text .accent-bar {
    width: 40px;
    height: 4px;
    background: var(--hc-blue);
    border-radius: 4px;
    margin-bottom: 24px;
}

.lista-valores {
    list-style: none;
    margin-top: 28px;
}

.lista-valores li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
    font-size: 16px;
    color: var(--hc-text);
    font-weight: 400;
}

.lista-valores li .icon-wrap {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: rgba(0,113,227,0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lista-valores li svg { width: 18px; height: 18px; color: var(--hc-blue); }

.split-img {
    border-radius: var(--hc-radius);
    overflow: hidden;
    box-shadow: var(--hc-shadow-lg);
    aspect-ratio: 4/3;
}

.split-img img { width: 100%; height: 100%; object-fit: cover; }

/* ===== Features (Creencias) ===== */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.feature {
    background: var(--hc-bg);
    border: 1px solid var(--hc-border);
    border-radius: var(--hc-radius);
    padding: 36px 28px;
    text-align: center;
    transition: transform .3s var(--hc-ease), box-shadow .3s var(--hc-ease);
}

.feature:hover { transform: translateY(-3px); box-shadow: var(--hc-shadow); }

.feature .icon-circle {
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
    background: rgba(0,113,227,0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature .icon-circle svg { width: 28px; height: 28px; color: var(--hc-blue); }

.feature h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: -.01em;
}

.feature p {
    font-size: 14px;
    color: var(--hc-text-2);
    line-height: 1.5;
}

/* ===== Eventos ===== */
.eventos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.evento-card {
    background: var(--hc-bg);
    border: 1px solid var(--hc-border);
    border-radius: var(--hc-radius);
    padding: 28px;
    transition: transform .3s var(--hc-ease), box-shadow .3s var(--hc-ease);
    position: relative;
    overflow: hidden;
}

.evento-card:hover { transform: translateY(-4px); box-shadow: var(--hc-shadow-lg); }

.evento-card.pasado { opacity: .55; }

.evento-card .stripe {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--hc-blue);
}

.evento-card.pasado .stripe { background: var(--hc-border-light); }

.evento-date {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 14px;
}

.evento-date .dia {
    font-size: 34px;
    font-weight: 700;
    color: var(--hc-text);
    letter-spacing: -.03em;
    line-height: 1;
}

.evento-date .mes {
    font-size: 15px;
    font-weight: 600;
    color: var(--hc-blue);
    text-transform: uppercase;
    letter-spacing: .02em;
}

.evento-date .anio {
    font-size: 14px;
    color: var(--hc-text-3);
    font-weight: 400;
}

.evento-card h3 {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -.015em;
    margin-bottom: 8px;
}

.evento-card .desc {
    font-size: 15px;
    color: var(--hc-text-2);
    line-height: 1.5;
    margin-bottom: 16px;
}

.evento-card .meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 14px;
    color: var(--hc-text-3);
}

.evento-card .meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.evento-card .meta-item svg { width: 16px; height: 16px; color: var(--hc-blue); }

.evento-badge-pasado {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--hc-text-3);
    background: var(--hc-bg-page);
    padding: 3px 10px;
    border-radius: var(--hc-radius-pill);
    margin-top: 10px;
}

/* ===== Articulo individual ===== */
.articulo { padding: 60px 0 80px; }
.articulo-wrap { max-width: 720px; margin: 0 auto; }

.articulo .tag { margin-bottom: 20px; }

.articulo h1 {
    font-size: 40px;
    font-weight: 600;
    letter-spacing: -.022em;
    line-height: 1.12;
    margin-bottom: 16px;
}

.articulo-meta {
    display: flex;
    gap: 16px;
    font-size: 15px;
    color: var(--hc-text-3);
    margin-bottom: 36px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--hc-border);
}

.articulo-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: var(--hc-radius);
    margin-bottom: 36px;
}

.articulo-contenido {
    font-size: 18px;
    line-height: 1.7;
    color: var(--hc-text);
    letter-spacing: -.003em;
}

.articulo-contenido p { margin-bottom: 20px; }
.articulo-contenido h2 { font-size: 28px; margin: 36px 0 14px; font-weight: 600; letter-spacing: -.02em; }
.articulo-contenido h3 { font-size: 21px; margin: 28px 0 10px; font-weight: 600; }
.articulo-contenido blockquote {
    border-left: 4px solid var(--hc-blue);
    padding: 20px 28px;
    margin: 28px 0;
    background: var(--hc-bg-page);
    border-radius: 0 var(--hc-radius-sm) var(--hc-radius-sm) 0;
    font-size: 19px;
    font-weight: 500;
    color: var(--hc-text);
    line-height: 1.5;
    letter-spacing: -.01em;
}

.volver {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 44px;
    font-size: 15px;
    font-weight: 500;
    color: var(--hc-blue);
    text-decoration: none;
}
.volver:hover { text-decoration: underline; }
.volver svg { width: 16px; height: 16px; }

/* ===== Contacto ===== */
.contacto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contacto-info h3 {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -.018em;
    margin-bottom: 16px;
}

.contacto-info > p {
    font-size: 16px;
    color: var(--hc-text-2);
    line-height: 1.6;
    margin-bottom: 28px;
}

.contacto-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contacto-item .icon-wrap {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(0,113,227,0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contacto-item svg { width: 20px; height: 20px; color: var(--hc-blue); }

.contacto-item .label {
    font-size: 13px;
    color: var(--hc-text-3);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .02em;
    margin-bottom: 2px;
}

.contacto-item .valor {
    font-size: 16px;
    color: var(--hc-text);
    font-weight: 500;
}

.form-card {
    background: var(--hc-bg);
    border: 1px solid var(--hc-border);
    border-radius: var(--hc-radius);
    padding: 36px;
    box-shadow: var(--hc-shadow);
}

.campo { margin-bottom: 18px; }

.campo label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--hc-text);
}

.campo input,
.campo textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--hc-border-light);
    border-radius: var(--hc-radius-sm);
    font-size: 16px;
    font-family: inherit;
    color: var(--hc-text);
    background: var(--hc-bg);
    transition: border-color .2s var(--hc-ease), box-shadow .2s var(--hc-ease);
    -webkit-appearance: none;
}

.campo input:focus,
.campo textarea:focus {
    outline: none;
    border-color: var(--hc-blue);
    box-shadow: 0 0 0 4px rgba(0,113,227,0.12);
}

.campo textarea { min-height: 120px; resize: vertical; }

.btn-full { width: 100%; padding: 14px; font-size: 16px; }

/* ===== Mensaje form ===== */
.msg {
    padding: 14px 18px;
    border-radius: var(--hc-radius-sm);
    margin-bottom: 20px;
    font-size: 15px;
    font-weight: 500;
}

.msg-ok { background: #e8f8ed; color: #1a7a3a; border: 1px solid #c3e8d0; }
.msg-err { background: #fdeaea; color: #c0392b; border: 1px solid #f4c8c8; }

/* ===== Paginacion ===== */
.paginacion {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.paginacion a,
.paginacion span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border: 1px solid var(--hc-border);
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    color: var(--hc-text);
    text-decoration: none;
    transition: all .2s var(--hc-ease);
}

.paginacion a:hover { border-color: var(--hc-blue); color: var(--hc-blue); text-decoration: none; }
.paginacion .actual { background: var(--hc-blue); color: white; border-color: var(--hc-blue); }

/* ===== Footer — Apple dark style ===== */
.footer {
    background: var(--hc-bg-dark);
    color: rgba(255,255,255,0.5);
    padding: 48px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 36px;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: .03em;
}

.footer-col p { font-size: 12px; line-height: 1.6; margin-bottom: 8px; }
.footer-col a {
    color: rgba(255,255,255,0.5);
    font-size: 12px;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color .2s;
}
.footer-col a:hover { color: white; text-decoration: none; }

.footer-col .logo-footer { height: 40px; margin-bottom: 14px; filter: brightness(0) invert(1); opacity: .7; }

.footer-bottom {
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
}

/* ===== Page header ===== */
.page-head {
    background: var(--hc-bg-page);
    padding: 64px 0 52px;
    text-align: center;
    border-bottom: 1px solid var(--hc-border);
}

.page-head h1 {
    font-size: 48px;
    font-weight: 600;
    letter-spacing: -.022em;
    line-height: 1.08;
}

.page-head p {
    font-size: 21px;
    color: var(--hc-text-2);
    margin-top: 12px;
    font-weight: 400;
}

/* ===== 404 ===== */
.not-found {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 22px;
}

.not-found .big {
    font-size: 80px;
    font-weight: 600;
    color: var(--hc-blue);
    line-height: 1;
    letter-spacing: -.04em;
}

.not-found h1 {
    font-size: 24px;
    font-weight: 600;
    margin: 20px 0 10px;
}

.not-found p {
    font-size: 16px;
    color: var(--hc-text-2);
    margin-bottom: 28px;
}

/* ===== Responsive — Mobile first approach ===== */
@media (max-width: 1024px) {
    .hero h1 { font-size: 48px; }
    .seccion-head h2 { font-size: 40px; }
    .split-text h2 { font-size: 34px; }
    .page-head h1 { font-size: 40px; }
    .versiculo blockquote { font-size: 28px; }
}

@media (max-width: 900px) {
    .split { grid-template-columns: 1fr; gap: 40px; }
    .contacto-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    .hero h1 { font-size: 40px; }
    .seccion-head h2 { font-size: 34px; }
    .split-text h2 { font-size: 30px; }
    .articulo h1 { font-size: 32px; }
    .page-head h1 { font-size: 34px; }
    .versiculo blockquote { font-size: 24px; }
    .seccion { padding: 80px 0; }
    .hero-content { padding: 100px 22px 80px; }
}

@media (max-width: 768px) {
    /* Mobile nav — full screen overlay */
    .nav-links {
        display: none;
        position: fixed;
        top: 52px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 22px;
        gap: 2px;
        z-index: 9998;
    }

    .nav-links.open { display: flex; }

    .nav-links a {
        width: 100%;
        padding: 16px;
        font-size: 20px;
        font-weight: 500;
        border-radius: 12px;
        color: var(--hc-text);
    }

    .nav-links a:hover { background: var(--hc-bg-page); }
    .nav-links a.activo { color: var(--hc-blue); }

    .nav-toggle { display: block; }

    .nav-brand-text { font-size: 14px; }
    .nav-brand-text .sub { font-size: 10px; }
    .nav-brand img { height: 30px; }

    /* Hero mobile */
    .hero { min-height: 70vh; }
    .hero h1 { font-size: 34px; }
    .hero-subtitle { font-size: 18px; }
    .hero-content { padding: 80px 22px 60px; }
    .hero-eyebrow { font-size: 13px; }

    /* Sections */
    .seccion { padding: 64px 0; }
    .seccion-head { margin-bottom: 44px; }
    .seccion-head h2 { font-size: 30px; }
    .seccion-head p { font-size: 18px; }

    .articulo h1 { font-size: 28px; }
    .split-text h2 { font-size: 26px; }
    .page-head { padding: 48px 0 40px; }
    .page-head h1 { font-size: 30px; }
    .page-head p { font-size: 18px; }

    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .footer-col .logo-footer { height: 36px; }

    .versiculo { padding: 56px 22px; }
    .versiculo blockquote { font-size: 22px; }

    .form-card { padding: 28px 20px; }
    .contacto-info h3 { font-size: 22px; }
}

@media (max-width: 480px) {
    .contenedor { padding: 0 18px; }
    .nav-inner { padding: 0 18px; }

    .hero { min-height: 65vh; }
    .hero h1 { font-size: 28px; }
    .hero-subtitle { font-size: 16px; margin-bottom: 32px; }
    .hero-eyebrow { font-size: 12px; }
    .hero-content { padding: 70px 18px 50px; }

    .seccion { padding: 56px 0; }
    .seccion-head { margin-bottom: 36px; }
    .seccion-head h2 { font-size: 26px; }
    .seccion-head p { font-size: 16px; }

    .split { gap: 32px; }
    .split-text h2 { font-size: 24px; }
    .split-text p { font-size: 16px; }

    .versiculo { padding: 48px 18px; }
    .versiculo blockquote { font-size: 20px; }

    .page-head { padding: 44px 0 36px; }
    .page-head h1 { font-size: 26px; }
    .page-head p { font-size: 16px; }

    .grid { grid-template-columns: 1fr; }
    .eventos-grid { grid-template-columns: 1fr; }
    .features { grid-template-columns: 1fr; }

    .articulo h1 { font-size: 24px; }
    .articulo-contenido { font-size: 16px; }
    .articulo-img { height: 240px; }

    .btn { padding: 10px 22px; font-size: 14px; }
    .form-card { padding: 24px 16px; }
    .contacto-info h3 { font-size: 20px; }

    .footer { padding: 40px 0 28px; }
    .footer-bottom { font-size: 11px; }

    .not-found .big { font-size: 64px; }
    .not-found h1 { font-size: 20px; }
}

/* ===== Touch targets — minimum 44px on mobile ===== */
@media (max-width: 768px) {
    .btn { min-height: 44px; }
    .nav-links a { min-height: 44px; }
    .campo input, .campo textarea { min-height: 44px; }
    .paginacion a, .paginacion span { min-width: 44px; min-height: 44px; }
}