@font-face {
font-family: 'DM Sans';
font-style: normal;
font-weight: 400 700;
font-display: swap;
src: url('../fonts/maranatha-argentina-dm-sans-latin.woff2') format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
font-family: 'Outfit';
font-style: normal;
font-weight: 300 900;
font-display: swap;
src: url('../fonts/maranatha-argentina-outfit-latin.woff2') format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
:root {
--white: #FFFFFF;
--black: #000000;
--yellow: #FFDE59;
--yellow-hover: #FFE57A;
--yellow-dark: #E6C84F;
--dark-bg: #0A0A0A;
--dark-surface: #141414;
--dark-card: #1A1A1A;
--dark-border: #2A2A2A;
--light-bg: #FAFAF8;
--light-surface: #FFFFFF;
--light-card: #F5F5F0;
--gray-100: #F5F5F5;
--gray-200: #E8E8E8;
--gray-300: #D1D1D1;
--gray-400: #A0A0A0;
--gray-500: #6B6B6B;
--gray-600: #444444;
--gray-700: #2A2A2A;
--tr: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: 110px; background: var(--dark-bg); }
/* REGLAS IMPORTANTES PARA SOBREESCRIBIR WORDPRESS */
body {
font-family: 'DM Sans', -apple-system, sans-serif !important;
background: var(--dark-bg) !important;
color: var(--white) !important;
overflow-x: hidden;
-webkit-font-smoothing: antialiased;
margin: 0 !important;
padding: 0 !important;
}
body.maranatha-form-frame {
background: var(--dark-surface) !important;
overflow: hidden;
}
h1, h2, h3, .section-title {
font-family: 'Outfit', sans-serif !important;
letter-spacing: -0.02em !important;
color: inherit;
line-height: 1.15;
}
p {
font-family: 'DM Sans', sans-serif !important;
}
/* REUSABLES */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0);
white-space: nowrap; border-width: 0; }
button { font-family: inherit; }
a:focus-visible, button:focus-visible, [role="button"]:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 2px solid var(--yellow); outline-offset: 4px; }
/* CUSTOM ICONS Y RUTAS SVG */
.custom-icon { width: 22px; height: 22px; object-fit: contain; }
.bank-icon { width: 20px; height: 20px; object-fit: contain; }
.bank-logo-lg { width: 24px; height: 24px; object-fit: contain; }
/* YOUVERSION MÁSCARA AMARILLA */
.yv-footer-icon {
background-color: var(--yellow);
-webkit-mask: url('../media/maranatha-argentina-youversion-footer.svg') no-repeat center;
mask: url('../media/maranatha-argentina-youversion-footer.svg') no-repeat center;
-webkit-mask-size: contain;
mask-size: contain;
width: 22px;
height: 22px;
display: inline-block;
transition: var(--tr);
}
/* ANIMACIONES DE SWIPE Y OCULTAR LEYENDA EN PC */
@media (min-width: 769px) {
    .swipe-hint { display: none !important; }
}

.swipe-left { animation: slideLeftAnim 0.3s cubic-bezier(0.25, 1, 0.5, 1) forwards; }
.swipe-right { animation: slideRightAnim 0.3s cubic-bezier(0.25, 1, 0.5, 1) forwards; }

@keyframes slideLeftAnim {
    0% { opacity: 0; transform: translateX(60px); }
    100% { opacity: 1; transform: translateX(0); }
}
@keyframes slideRightAnim {
    0% { opacity: 0; transform: translateX(-60px); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes slideLeft {
    0% { opacity: 0; transform: translateX(40px); }
    100% { opacity: 1; transform: translateX(0); }
}
@keyframes slideRight {
    0% { opacity: 0; transform: translateX(-40px); }
    100% { opacity: 1; transform: translateX(0); }
}
/* FLOATING NAV */
.floating-nav { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 1000; display: flex; align-items: center; gap: 4px; background: rgba(20,20,20,0.94);
backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.08); border-radius: 50px; padding: 8px 10px; box-shadow: 0 8px 32px rgba(0,0,0,0.5); }
.nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 8px 14px; border-radius: 24px; text-decoration: none; color: var(--gray-400);
font-size: 10px; font-weight: 600; letter-spacing: 0.03em; transition: var(--tr); cursor: pointer; }
.nav-item svg { width: 22px; height: 22px; transition: var(--tr); }
.nav-item.active { color: var(--yellow); background: rgba(255,222,89,0.08); }
.nav-item.active svg { stroke: var(--yellow); }
.nav-cta { background: var(--yellow); color: var(--black) !important; padding: 12px 24px; border-radius: 50px; font-weight: 800; font-size: 13px; text-decoration: none; letter-spacing: 0.03em;
transition: var(--tr); white-space: nowrap; font-family: 'Outfit', sans-serif !important; margin-left: 4px; }
/* HOVER FIX */
@media (hover: hover) {
.nav-item:hover { color: var(--yellow); background: rgba(255,222,89,0.08); }
.nav-item:hover svg { stroke: var(--yellow); }
.nav-cta:hover { background: var(--yellow-hover); transform: scale(1.03); }
.btn-primary:hover { background: var(--yellow-hover) !important; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,222,89,0.3); }
.btn-secondary:hover { background: rgba(255,255,255,0.1) !important; border-color: rgba(255,255,255,0.2); }
.about-media:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); transform: scale(1.01); }
.about-media:hover::after { opacity: 1; }
.activity-card:hover { transform: translateY(-6px); border-color: rgba(255,222,89,0.28); box-shadow: 0 18px 44px rgba(0,0,0,0.34); }
.activity-card:hover .activity-card-preview, .location-card:hover .location-map-img, .about-media:hover .about-media-img { transform: scale(1.04); }
.predica-card:hover { border-color: rgba(255,222,89,0.25); transform: translateY(-4px); box-shadow: 0 14px 34px rgba(0,0,0,0.24); }
.predica-card:hover .youtube-lite__thumb img { transform: scale(1.04); }
.predica-thumb:hover .play-sm { transform: scale(1.1); box-shadow: 0 0 24px rgba(255,222,89,0.3); }
.play-btn:hover { transform: scale(1.08); box-shadow: 0 0 40px rgba(255,222,89,0.3); }
.location-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.btn-dark:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.social-icon:hover { border-color: var(--yellow); background: rgba(255,222,89,0.08); }
.footer-socials a:hover { border-color: var(--yellow); background: rgba(255,222,89,0.08); }
.footer-col a:hover { color: var(--yellow); }
.faq-question:hover { color: var(--yellow); }
.modal-close:hover { background: rgba(255,255,255,0.15); }
.book-modal-btn.amazon:hover { box-shadow: 0 8px 24px rgba(247,169,42,0.3); }
.book-modal-btn.free:hover { border-color: var(--yellow); color: var(--yellow); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
.bank-link:hover { border-color: var(--yellow); color: var(--yellow); }
.activity-nav-btn:hover { color: var(--yellow) !important; }
.stat-item:hover { transform: translateY(-4px); border-color: rgba(230,200,79,0.38); box-shadow: 0 18px 38px rgba(0,0,0,0.08); }
}
.btn-primary:active, .btn-secondary:active, .btn-dark:active, .nav-cta:active, .book-modal-btn:active { transform: translateY(1px) scale(0.99); }
/* TOP HEADER & WP ADMIN BAR FIX */
.top-header { position: fixed; top: 0; left: 0; right: 0; z-index: 999; display: flex; justify-content: center; align-items: center;
padding: 16px 24px; background: transparent; transition: background 0.4s ease, padding 0.4s ease; }
body.admin-bar .top-header { top: 32px; }
.top-header.scrolled { background: rgba(10,10,10,0.92); backdrop-filter: blur(16px); padding: 12px 24px; box-shadow: 0 4px 24px rgba(0,0,0,0.2); }
.logo-wrap { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-iso { width: 36px; height: 36px; border-radius: 50%; object-fit: contain; }
.logo-text { font-family: 'Outfit', sans-serif !important; font-weight: 800; font-size: 18px; color: var(--white); letter-spacing: -0.01em; }
.logo-text span { color: var(--yellow); }
.language-switch { position: absolute; right: 24px; top: 50%; transform: translateY(-50%); display: inline-flex; align-items: center; gap: 6px; padding: 5px; border: 1px solid rgba(255,255,255,0.12); border-radius: 999px; background: rgba(20,20,20,0.62); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.language-switch__link { display: inline-flex; align-items: center; justify-content: center; min-width: 34px; height: 28px; padding: 0 8px; border-radius: 999px; color: var(--gray-300); font-family: 'Outfit', sans-serif !important; font-size: 12px; font-weight: 800; text-decoration: none; transition: color 0.25s ease, background 0.25s ease; }
.language-switch__link.is-active { background: var(--yellow); color: var(--black); }
.language-switch__divider { width: 1px; height: 16px; background: rgba(255,255,255,0.12); }
/* HERO */
.hero { position: relative; min-height: 100vh; min-height: 100dvh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: clamp(96px, 15vh, 120px) 24px 132px; overflow: hidden; }
.hero-video-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; opacity: 0; pointer-events: none; transition: opacity 0.8s ease; }
.hero-video-bg.is-ready { opacity: 0.50; }
.hero-bg { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.7) 60%, var(--dark-bg) 100%); z-index: 1; }
.hero-video-placeholder { position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 40%, rgba(255,222,89,0.06) 0%, transparent 60%), radial-gradient(ellipse at 70% 60%, rgba(255,222,89,0.04) 0%, transparent 50%), var(--dark-bg);
z-index: 0; }
.hero-content { position: relative; z-index: 2; max-width: 720px; width: 100%; margin-top: clamp(-100px, -10vh, -48px); }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 20px; background: rgba(255,222,89,0.1); border: 1px solid rgba(255,222,89,0.2); border-radius: 50px;
font-size: 13px; font-weight: 600; color: var(--yellow); margin-bottom: 32px; letter-spacing: 0.03em; }
.hero-badge-dot { width: 6px; height: 6px; background: var(--yellow); border-radius: 50%; animation: pulse-dot 2s ease-in-out infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.4)} }
.hero h1 { font-family: 'Outfit', sans-serif !important; font-size: clamp(40px,8vw,72px) !important; font-weight: 900 !important; line-height: 1.05 !important; margin-bottom: 20px; color: var(--white);
}
/* ESTADO VERDE PARA REUNIONES DE HOY */
.hero-badge.is-today {
    background: rgba(74, 222, 128, 0.1);
    border-color: rgba(74, 222, 128, 0.2);
    color: #4ade80;
}
.hero-badge.is-today .hero-badge-dot {
    background: #4ade80;
}
.hero h1 em { font-style: normal !important; color: var(--yellow) !important; }
.hero-subtitle { font-size: clamp(16px,2.5vw,20px); color: var(--gray-400); line-height: 1.6; max-width: 520px; margin: 0 auto 40px; }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 16px 36px; background: var(--yellow) !important; color: var(--black) !important;
font-family: 'Outfit', sans-serif !important; font-size: 16px; font-weight: 700; border-radius: 50px; text-decoration: none; transition: var(--tr); border: none; cursor: pointer; min-height: 54px;
}
.btn-secondary { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 16px 36px; background: rgba(255,255,255,0.06) !important; color: var(--white) !important;
font-family: 'Outfit', sans-serif !important; font-size: 16px; font-weight: 600; border-radius: 50px; text-decoration: none; transition: var(--tr); border: 1px solid rgba(255,255,255,0.12); min-height: 54px;
}
.hero-address { margin-top: 48px; display: flex; align-items: center; gap: 10px; justify-content: center; font-size: 14px; color: var(--gray-400); }
.hero-address svg { width: 18px; height: 18px; stroke: var(--yellow); }
@media (min-width: 769px) and (max-height: 760px) {
.hero { padding-top: 84px; padding-bottom: 112px; }
.hero-content { max-width: 680px; margin-top: -40px; }
.hero-badge { margin-bottom: 18px; padding: 6px 16px; font-size: 12px; }
.hero h1 { font-size: clamp(38px, 5.8vw, 56px) !important; margin-bottom: 14px; }
.hero-subtitle { max-width: 500px; margin-bottom: 24px; font-size: 16px; line-height: 1.45; }
.hero-buttons { gap: 12px; }
.btn-primary, .btn-secondary { min-height: 48px; padding: 12px 28px; font-size: 14px; }
.hero-address { margin-top: 24px; font-size: 13px; }
.floating-nav { bottom: 16px; padding: 7px 9px; }
.nav-item { padding: 7px 12px; }
.nav-item svg { width: 20px; height: 20px; }
.nav-cta { padding: 11px 21px; }
}
@media (min-width: 769px) and (max-height: 560px) {
.top-header { padding-top: 10px; padding-bottom: 10px; }
.logo-iso { width: 30px; height: 30px; }
.logo-text { font-size: 15px; }
.hero { padding-top: 64px; padding-bottom: 88px; }
.hero-content { max-width: 620px; margin-top: -18px; }
.hero-badge { margin-bottom: 12px; padding: 5px 14px; font-size: 11px; }
.hero h1 { font-size: clamp(32px, 5vw, 44px) !important; margin-bottom: 10px; }
.hero-subtitle { max-width: 470px; margin-bottom: 16px; font-size: 14px; line-height: 1.35; }
.btn-primary, .btn-secondary { min-height: 42px; padding: 10px 24px; font-size: 13px; }
.hero-address { display: none; }
.floating-nav { bottom: 10px; padding: 6px 8px; }
.nav-item { gap: 3px; padding: 5px 10px; font-size: 9px; }
.nav-item svg { width: 18px; height: 18px; }
.nav-cta { padding: 9px 18px; font-size: 12px; }
}
/* SECTIONS */
.section-light { background: var(--light-bg) !important; color: var(--gray-700) !important; padding: 100px 24px; position: relative; scroll-margin-top: 170px; }
.section-dark { background: var(--dark-bg) !important; color: var(--white) !important; padding: 100px 24px; position: relative; scroll-margin-top: 170px; }
.section-inner { max-width: 1100px; margin: 0 auto; width: 100%; }
.section-label { display: inline-flex; align-items: center; gap: 8px; font-family: 'Outfit', sans-serif !important; font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
margin-bottom: 16px; }
.section-label-dark { color: var(--yellow); }
.section-label-light { color: var(--gray-500); }
.section-title { font-family: 'Outfit', sans-serif !important; font-weight: 800; font-size: clamp(32px,5vw,48px); line-height: 1.15; margin-bottom: 20px; }
.section-subtitle { font-size: 17px; line-height: 1.7; max-width: 600px; }
.section-subtitle-dark { color: var(--gray-400); }
.section-subtitle-light { color: var(--gray-500); }
/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-top: 48px; }
.about-media { aspect-ratio: 4/3; border-radius: 24px; background: var(--light-card); display: flex; align-items: center; justify-content: center; overflow: hidden; border: 1px solid var(--gray-200);
position: relative; cursor: pointer; transition: var(--tr); }
.about-media-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.about-media-video { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,0.24) 100%); opacity: 0; transition: var(--tr); pointer-events: none; }
.about-gallery-cue { position: absolute; right: 16px; bottom: 16px; z-index: 2; display: inline-flex; align-items: center; gap: 10px; padding: 8px 12px 8px 9px; border-radius: 999px; background: rgba(10,10,10,0.78); color: var(--white); border: 1px solid rgba(255,255,255,0.22); box-shadow: 0 10px 24px rgba(0,0,0,0.24); backdrop-filter: blur(8px); pointer-events: none; }
.about-gallery-stack { position: relative; width: 30px; height: 24px; flex: 0 0 30px; }
.about-gallery-stack span { position: absolute; inset: 4px 2px 2px 6px; border-radius: 5px; border: 1px solid rgba(255,255,255,0.72); background: rgba(255,222,89,0.92); box-shadow: 0 4px 10px rgba(0,0,0,0.22); }
.about-gallery-stack span:nth-child(1) { transform: translate(-4px, -3px) rotate(-8deg); background: rgba(255,255,255,0.88); }
.about-gallery-stack span:nth-child(2) { transform: translate(0, -1px) rotate(4deg); background: rgba(255,255,255,0.7); }
.about-gallery-copy { display: grid; gap: 1px; text-align: left; line-height: 1.05; }
.about-gallery-copy strong { font-size: 12px; font-weight: 800; letter-spacing: 0.01em; }
.about-gallery-copy small { color: rgba(255,255,255,0.7); font-size: 10px; font-weight: 700; }
.media-placeholder { display: flex; flex-direction: column; align-items: center; gap: 12px; color: var(--gray-400); font-size: 14px; }
.media-placeholder svg { width: 48px; height: 48px; stroke: var(--gray-300); }
.about-values { display: flex; gap: 16px; margin-top: 32px; flex-wrap: wrap; }
.value-chip { display: flex; align-items: center; gap: 8px; padding: 10px 20px; background: var(--light-card); border-radius: 50px; font-size: 14px; font-weight: 600;
color: var(--gray-600); border: 1px solid var(--gray-200); white-space: nowrap; }
.value-chip svg { width: 18px; height: 18px; stroke: var(--yellow-dark); flex-shrink: 0; }
.about-stat-strip { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 56px; padding-top: 48px; border-top: 1px solid var(--gray-200); }
.stat-item { text-align: center; padding: 28px 24px; border: 1px solid rgba(42,42,42,0.1); border-radius: 20px; background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(245,245,240,0.86)); box-shadow: 0 10px 30px rgba(0,0,0,0.04); transition: var(--tr); }
.stat-number { font-family: 'Outfit', sans-serif !important; font-size: clamp(36px, 4vw, 46px); font-weight: 850; color: var(--black); line-height: 1; }
.stat-number span { color: var(--yellow-dark); }
.stat-label { font-size: 13px; color: var(--gray-600); margin-top: 10px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; }
/* SECTION DIVIDER */
.section-divider { height: 1px; background: linear-gradient(90deg, transparent, var(--gray-200), transparent); margin: 0; border: none; }
/* ACTIVITY CARDS */
.activities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.activity-card { background: var(--dark-card); border: 1px solid var(--dark-border); border-radius: 20px; overflow: hidden; transition: var(--tr); cursor: pointer; display: flex; flex-direction: column;
}
.activity-card-media { aspect-ratio: 16/10; background: var(--dark-surface); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.activity-card-preview { width: 100%; height: 100%; display: block; object-fit: cover; background-size: cover; background-position: center; transition: transform 0.5s ease; }
.activity-card-body { padding: 0 24px 28px; position: relative; z-index: 1; flex: 1; display: flex; flex-direction: column; }
.activity-age-badge { display: inline-block; align-self: flex-start; padding: 6px 14px; background: var(--yellow); color: var(--black); font-size: 11px; font-weight: 800; border-radius: 50px;
margin-bottom: 12px; letter-spacing: 0.05em; }
.activity-card h3 { font-family: 'Outfit', sans-serif !important; font-size: 22px; font-weight: 700; margin-bottom: 6px; color: var(--white); }
.activity-card .tagline { font-size: 14px; color: var(--yellow); font-weight: 500; font-style: italic; margin-bottom: 12px; }
.activity-card p { font-size: 14px; color: var(--gray-400); line-height: 1.6; margin-bottom: 20px; flex: 1; }
.activity-meta { display: flex; gap: 16px; padding-top: 16px; border-top: 1px solid var(--dark-border); }
.activity-meta-item { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--gray-400); font-weight: 500; }
.activity-meta-item svg { width: 16px; height: 16px; stroke: var(--yellow); }
/* POPUP / MODAL */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.85); backdrop-filter: blur(8px); z-index: 2000; display: flex; align-items: center; justify-content: center; padding: 24px;
visibility: hidden; opacity: 0; pointer-events: none; transition: all 0.3s ease; }
.modal-overlay.active { visibility: visible; opacity: 1; pointer-events: auto; }
.modal { background: var(--dark-card); border: 1px solid var(--dark-border); border-radius: 24px; max-width: 700px; width: 100%; max-height: 90vh; max-height: 90dvh; overflow-y: auto;
position: relative; transform: scale(0.85); transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.modal-overlay.active .modal { transform: scale(1); }
.modal-close { position: absolute; top: 16px; right: 16px; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.08); border: none; color: var(--white);
font-size: 24px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--tr); z-index: 100; line-height: 1; padding-bottom: 4px; }
.modal-header { padding: 32px 32px 0; }
.modal-header .modal-title { font-family: 'Outfit', sans-serif !important; font-size: 28px; font-weight: 800; margin: 0; color: var(--white); padding-right: 40px; }
.modal-body { padding: 24px 32px 32px; }
.activity-nav-btn { background: none; border: none; color: var(--gray-400); font-family: inherit; font-size: 14px; cursor: pointer; font-weight: 600; display: flex; align-items: center;
gap: 8px; transition: var(--tr); }
/* PILLS NAV */
.pills-nav { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.pill { padding: 8px 20px; border-radius: 50px; border: 1px solid var(--dark-border); background: transparent; color: var(--gray-400); font-size: 14px; font-weight: 600;
cursor: pointer; transition: var(--tr); font-family: 'DM Sans', sans-serif; }
.pill.active, .pill:focus, .pill:hover { background: var(--yellow) !important; color: var(--black) !important; border-color: var(--yellow) !important; outline: none; }
/* CAROUSEL */
.carousel-container { position: relative; overflow: hidden; border-radius: 16px; }
.carousel-track { display: flex; transition: transform 0.4s ease; }
.carousel-slide { min-width: 100%; aspect-ratio: 16/9; background: var(--dark-surface); display: flex; align-items: center; justify-content: center; border-radius: 16px; }
.activity-carousel-media { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 16px; }
.carousel-controls { display: flex; gap: 16px; margin-top: 20px; justify-content: center; align-items: center; }
.carousel-btn { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.08); border: 1px solid var(--dark-border); color: var(--white); cursor: pointer; display: flex;
align-items: center; justify-content: center; transition: var(--tr); font-size: 18px; }
.carousel-dots { display: flex; gap: 8px; align-items: center; }
.carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--dark-border); transition: var(--tr); }
.carousel-dot.active { background: var(--yellow); width: 24px; border-radius: 4px; }
/* PASTORS */
.pastors-card { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: center; background: var(--light-card); border-radius: 28px; padding: 56px; margin-top: 48px;
border: 1px solid var(--gray-200); }
.pastor-photo { aspect-ratio: 3/4; border-radius: 20px; background: var(--gray-200); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.pastor-info h3 { font-family: 'Outfit', sans-serif !important; font-size: 32px; font-weight: 800; color: var(--black); margin-bottom: 8px; }
.pastor-role { font-size: 14px; color: var(--yellow-dark); font-weight: 700; margin-bottom: 24px; letter-spacing: 0.05em; text-transform: uppercase; }
.pastor-info p { font-size: 16px; color: var(--gray-600); line-height: 1.7; margin-bottom: 16px; }
.pastor-books { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }
.book-chip { display: flex; align-items: center; gap: 8px; padding: 12px 20px; background: var(--white); border-radius: 12px; font-size: 14px; font-weight: 600;
color: var(--gray-700); border: 1px solid var(--gray-200); transition: var(--tr); cursor: pointer; text-decoration: none; box-shadow: 0 2px 8px rgba(0,0,0,0.02); }
.pastor-social { display: flex; gap: 12px; margin-top: 32px; }
.social-icon { width: 44px; height: 44px; border-radius: 50%; background: var(--white); border: 1px solid var(--gray-200); display: flex; align-items: center; justify-content: center;
transition: var(--tr); cursor: pointer; text-decoration: none; color: var(--black); }
.social-icon svg { width: 22px; height: 22px; fill: var(--black); transition: var(--tr); }
/* PREDICAS SCROLL Y FLECHAS */
.predicas-scroll { display: flex; gap: 24px; overflow-x: auto; padding: 24px 0 24px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.predicas-scroll::-webkit-scrollbar { display: none; }
.predica-card {
    min-width: 320px;
    max-width: 320px;
    scroll-snap-align: start;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--tr);
    flex-shrink: 0;
    cursor: pointer;
}
.predica-thumb { aspect-ratio: 16/9; background: var(--dark-surface); display: flex; align-items: center; justify-content: center; position: relative; }
.predica-card-body { padding: 20px 24px; }
.predica-card-body h4 { font-family: 'Outfit', sans-serif !important; font-size: 18px; font-weight: 700; margin-bottom: 6px; color: var(--white); }
.predica-card-body p { font-size: 14px; color: var(--gray-400); }
/* FLECHAS PARA CARRUSEL DE MENSAJES EN PC */
.predicas-wrapper { position: relative; }
.predicas-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; background: rgba(20,20,20,0.8); border: 1px solid var(--dark-border);
color: var(--white); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--tr); font-size: 18px; z-index: 10; backdrop-filter: blur(4px); margin-top: -12px;
}
.predicas-arrow:hover { background: var(--yellow); color: var(--black) !important; border-color: var(--yellow); }
.predicas-arrow.prev { left: -22px; }
.predicas-arrow.next { right: -22px; }
@media (max-width: 768px) {
.predicas-arrow { display: none !important; }
/* PREDICAS: Forzar que asome la siguiente tarjeta en mobile */
.predica-card {
        min-width: 70vw !important;
        max-width: 70vw !important;
    }
}

/* HINT DE SWIPE EN MOBILE */
.swipe-hint { display: block; text-align: center; color: var(--gray-400); font-size: 13px; margin-bottom: 20px; font-weight: 600; animation: subtle-bounce 2.5s infinite; }
.swipe-hint span { color: var(--yellow); }
@keyframes subtle-bounce { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(6px); } }
/* FEATURED SERMON */
.sermon-featured { margin-top: 40px; border-radius: 24px; overflow: hidden; background: var(--dark-card); border: 1px solid var(--dark-border); }
.sermon-video { aspect-ratio: 16/9; background: var(--dark-surface); display: flex; align-items: center; justify-content: center; position: relative; }
.youtube-lite { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; background: radial-gradient(circle at center, rgba(255,222,89,0.16), rgba(20,20,20,0.92) 56%, var(--dark-surface)); color: var(--yellow); cursor: pointer; display: flex; align-items: center; justify-content: center; overflow: hidden; transition: var(--tr); }
.youtube-lite__thumb { position: absolute; inset: 0; opacity: 0; transition: opacity 0.25s ease; }
.youtube-lite__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.youtube-lite.has-thumbnail .youtube-lite__thumb { opacity: 1; }
.youtube-lite::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,0,0,0.1), rgba(0,0,0,0.48)); opacity: 0.9; z-index: 1; }
.youtube-lite-featured, .sermon-video .youtube-frame { border-radius: 24px 0 0 24px; }
.youtube-lite__play { position: relative; z-index: 2; width: 72px; height: 72px; border-radius: 50%; background: var(--yellow); color: var(--black); display: flex; align-items: center; justify-content: center; box-shadow: 0 16px 40px rgba(0,0,0,0.35); transition: var(--tr); }
.youtube-lite__play svg { width: 34px; height: 34px; margin-left: 4px; }
.youtube-lite:hover .youtube-lite__play { transform: scale(1.06); background: var(--yellow-hover); }
.youtube-frame { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.sermon-info { padding: 32px; }
.sermon-info h3 { font-family: 'Outfit', sans-serif !important; font-size: 26px; font-weight: 800; margin-bottom: 8px; color: var(--white); }
.sermon-series { font-size: 14px; color: var(--yellow); font-weight: 700; margin-bottom: 12px; letter-spacing: 0.05em; }
/* LOCATIONS */
.locations-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(320px,1fr)); gap: 24px; margin-top: 48px; }
.location-card { background: var(--light-card); border: 1px solid var(--gray-200); border-radius: 20px; overflow: hidden; transition: var(--tr); cursor: pointer; }
.location-map-placeholder { aspect-ratio: 16/9; background: var(--gray-200); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.location-map-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.location-card-body { padding: 24px; }
.location-card h3 { font-family: 'Outfit', sans-serif !important; font-size: 22px; font-weight: 800; color: var(--black); margin-bottom: 6px; }
.location-pastors { font-size: 14px; color: var(--gray-600); margin-bottom: 16px; font-weight: 500; }
.location-address { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--gray-600); }
.location-address svg { width: 18px; height: 18px; stroke: var(--yellow-dark); flex-shrink: 0; margin-top: 2px; }
/* FAQ / FE */
.faq-list { margin-top: 48px; max-width: 800px; margin-left: auto; margin-right: auto; }
.faq-item { border-bottom: 1px solid var(--dark-border); }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 28px 0; background: none; border: none; color: var(--white);
font-family: 'Outfit', sans-serif !important; font-size: 20px; font-weight: 700; text-align: left; cursor: pointer; transition: var(--tr); gap: 16px; outline: none; }
.faq-icon { width: 36px; height: 36px; min-width: 36px; border-radius: 50%; background: var(--dark-card); border: 1px solid var(--dark-border); display: flex; align-items: center;
justify-content: center; flex-shrink: 0; transition: var(--tr); }
.faq-item.open .faq-icon { background: var(--yellow); border-color: var(--yellow); }
.faq-item.open .faq-icon svg { stroke: var(--black); transform: rotate(180deg); }
.faq-icon svg { width: 18px; height: 18px; stroke: var(--gray-400); transition: var(--tr); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1); }
.faq-answer-inner { padding: 0 0 28px; }
.faq-answer-inner p { font-size: 16px; color: var(--gray-300); line-height: 1.7; margin-bottom: 16px; }
.faq-answer-inner .verse { font-size: 14px; color: var(--gray-400); font-style: italic; padding-left: 20px; border-left: 3px solid var(--yellow); margin-bottom: 12px; line-height: 1.6; }
/* VISIT */
.visit-section { background: var(--dark-surface) !important; padding: 100px 24px; }
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; max-width: 1100px; margin: 0 auto; width: 100%; align-items: stretch; }
.visit-card { background: var(--dark-surface); border: 1px solid var(--dark-border); border-radius: 24px; padding: 40px; display: flex; flex-direction: column; align-self: start; }
.visit-card h2 { font-family: 'Outfit', sans-serif !important; font-size: 32px; font-weight: 800; margin-bottom: 12px; color: var(--white); }
.visit-card p { color: var(--gray-400); font-size: 16px; margin-bottom: 24px; line-height: 1.6; }
.visit-form-frame { position: relative; width: 100%; min-height: 0; background: var(--dark-surface); }
.visit-form-frame.is-loading { min-height: 320px; }
.visit-form-loader { min-height: 320px; width: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; border: 1px solid var(--dark-border); border-radius: 18px; background: var(--dark-surface); color: var(--gray-300); font-size: 14px; font-weight: 700; }
.visit-form-loader[hidden], .visit-form-frame.is-loaded .visit-form-loader { display: none !important; }
.visit-form-spinner { width: 34px; height: 34px; border: 3px solid rgba(255,255,255,0.12); border-top-color: var(--yellow); border-radius: 50%; animation: maranathaSpin 0.85s linear infinite; }
.visit-form-iframe { display: block; width: 100%; height: 360px; min-height: 0; border: 0; background: var(--dark-surface); opacity: 0; overflow: hidden; transition: opacity 0.25s ease; }
.visit-form-iframe.is-noscript, .visit-form-frame.is-loaded .visit-form-iframe { opacity: 1; }
.visit-form-document { width: 100%; min-height: 0; margin: 0; padding: 0; background: var(--dark-surface); overflow: hidden; }
@keyframes maranathaSpin { to { transform: rotate(360deg); } }

/* FORMINATOR OVERRIDES (Para diseño: "None" en el plugin) */
.visit-card .forminator-custom-form input, .visit-card .forminator-custom-form select, .visit-card .forminator-custom-form textarea, .maranatha-form-frame .forminator-custom-form input, .maranatha-form-frame .forminator-custom-form select, .maranatha-form-frame .forminator-custom-form textarea { width: 100%; height: 56px; padding: 0 20px; background: var(--dark-surface) !important; border: 1px solid var(--dark-border); border-radius: 12px; color: var(--white); font-size: 16px; font-family: 'DM Sans', sans-serif; outline: none; transition: var(--tr); }
.visit-card .forminator-ui, .visit-card .forminator-custom-form, .visit-card .forminator-row, .visit-card .forminator-field, .maranatha-form-frame .forminator-ui, .maranatha-form-frame .forminator-custom-form, .maranatha-form-frame .forminator-row, .maranatha-form-frame .forminator-field { background: var(--dark-surface) !important; }
.visit-card .forminator-custom-form .forminator-input, .visit-card .forminator-custom-form .forminator-textarea, .visit-card .forminator-custom-form .forminator-select, .visit-card .forminator-custom-form .select2-selection, .maranatha-form-frame .forminator-custom-form .forminator-input, .maranatha-form-frame .forminator-custom-form .forminator-textarea, .maranatha-form-frame .forminator-custom-form .forminator-select, .maranatha-form-frame .forminator-custom-form .select2-selection { background-color: var(--dark-surface) !important; }
.visit-card .forminator-custom-form input:focus, .visit-card .forminator-custom-form select:focus, .visit-card .forminator-custom-form textarea:focus, .maranatha-form-frame .forminator-custom-form input:focus, .maranatha-form-frame .forminator-custom-form select:focus, .maranatha-form-frame .forminator-custom-form textarea:focus { border-color: var(--yellow); box-shadow: 0 0 0 4px rgba(255,222,89,0.1); }
.visit-card .forminator-custom-form label, .maranatha-form-frame .forminator-custom-form label { display: block; font-size: 14px; font-weight: 600; color: var(--gray-300); margin-bottom: 8px; text-align: left; }
.visit-card .forminator-custom-form .forminator-button-submit, .maranatha-form-frame .forminator-custom-form .forminator-button-submit { width: 100%; margin-top: 16px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 16px 36px; background: var(--yellow); color: var(--black); font-family: 'Outfit', sans-serif !important; font-size: 16px; font-weight: 700; border-radius: 50px; transition: var(--tr); border: none; cursor: pointer; min-height: 56px; }
.visit-card .forminator-custom-form .forminator-button-submit:hover, .maranatha-form-frame .forminator-custom-form .forminator-button-submit:hover { background: var(--yellow-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,222,89,0.3); }
.visit-card .forminator-custom-form .forminator-row, .maranatha-form-frame .forminator-custom-form .forminator-row { margin-bottom: 20px; text-align: left; }

.visit-map { border-radius: 24px; overflow: hidden; border: 1px solid var(--dark-border); display: flex; width: 100%; }
.visit-map iframe { width: 100%; min-height: 450px; border: none; flex: 1; }
/* CALENDARIO FORMINATOR DARK THEME DEFINITIVO */
#ui-datepicker-div, .ui-datepicker {
    background: var(--dark-card) !important;
    border: 1px solid var(--dark-border) !important;
    border-radius: 16px !important;
    padding: 16px !important;
    box-shadow: 0 16px 40px rgba(0,0,0,0.8) !important;
    font-family: 'DM Sans', sans-serif !important;
    z-index: 9999 !important;
    width: 320px !important; /* Le damos más ancho para que respire */
}

/* Encabezado */
.ui-datepicker .ui-datepicker-header {
    background: transparent !important;
    border: none !important;
    padding: 0 0 16px 0 !important;
}

/* Desplegables de Mes y Año */
.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
    background: var(--dark-surface) !important;
    color: var(--white) !important;
    border: 1px solid var(--dark-border) !important;
    border-radius: 8px !important;
    padding: 6px 12px !important;
    font-family: 'DM Sans', sans-serif !important;
    font-size: 14px !important;
    outline: none !important;
    margin: 0 4px !important;
    cursor: pointer !important;
    width: auto !important;
    min-width: 90px !important; /* Forzamos el ancho para que no corte el año */
}

.ui-datepicker select.ui-datepicker-month:focus,
.ui-datepicker select.ui-datepicker-year:focus {
    border-color: var(--yellow) !important;
}

.ui-datepicker select option {
    background: var(--dark-bg) !important;
    color: var(--white) !important;
}

/* Tabla y Grilla */
.ui-datepicker table, .ui-datepicker-calendar {
    background: transparent !important;
    margin: 0 !important;
    border-collapse: collapse !important;
    width: 100% !important;
}

.ui-datepicker th {
    color: var(--gray-500) !important;
    font-weight: 600 !important;
    padding: 8px 4px !important;
    font-size: 12px !important;
    text-transform: uppercase !important;
    background: transparent !important;
    border: none !important;
}

.ui-datepicker td {
    padding: 2px !important;
    background: transparent !important;
    border: none !important;
}

/* Días */
.ui-datepicker td a,
.ui-datepicker td span,
.ui-datepicker td .ui-state-default {
    background: transparent !important;
    border: 1px solid transparent !important;
    color: var(--gray-300) !important;
    border-radius: 8px !important;
    text-align: center !important;
    transition: var(--tr) !important;
    padding: 8px !important;
    font-weight: 500 !important;
    display: block !important;
    text-decoration: none !important;
}

/* Hover de los días */
.ui-datepicker td a:hover, .ui-datepicker td .ui-state-default:hover {
    background: rgba(255,222,89,0.1) !important;
    color: var(--yellow) !important;
    border-color: rgba(255,222,89,0.3) !important;
}

/* Día seleccionado */
.ui-datepicker td a.ui-state-active,
.ui-datepicker td a.ui-state-highlight,
.ui-datepicker td .ui-state-active {
    background: var(--yellow) !important;
    color: var(--black) !important;
    border-color: var(--yellow) !important;
    font-weight: 800 !important;
}

/* Flechas Prev/Next */
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
    cursor: pointer !important;
    top: 2px !important;
    border: none !important;
    background: transparent !important;
}

.ui-datepicker .ui-icon {
    filter: brightness(0) invert(1) !important;
    opacity: 0.7 !important;
    transition: var(--tr) !important;
}

.ui-datepicker .ui-datepicker-prev:hover .ui-icon,
.ui-datepicker .ui-datepicker-next:hover .ui-icon {
    opacity: 1 !important;
    filter: drop-shadow(0 0 2px var(--yellow)) brightness(0) invert(1) !important;
}
/* Eliminar fondo intercalado (cebrado) de las filas de la tabla */
.ui-datepicker table tr,
.ui-datepicker table tbody tr:nth-child(odd),
.ui-datepicker table tbody tr:nth-child(even) {
    background: transparent !important;
}
/* DONATE */
.donate-section { background: var(--yellow) !important; padding: 100px 24px; text-align: center; }
.donate-section h2 { font-family: 'Outfit', sans-serif !important; font-size: clamp(32px,5vw,48px); font-weight: 900; color: var(--black); margin-bottom: 20px; letter-spacing: -0.02em; }
.donate-section div p { font-size: 18px; color: rgba(0,0,0,0.7); max-width: 540px; margin: 0 auto 40px; line-height: 1.6; font-weight: 500;
}
.donate-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-dark { display: inline-flex; align-items: center; gap: 12px; padding: 18px 36px; background: var(--black) !important; color: var(--white) !important;
font-family: 'Outfit', sans-serif !important; font-size: 16px; font-weight: 700; border-radius: 50px; text-decoration: none; transition: var(--tr); border: none; cursor: pointer; min-height: 56px;
}
.btn-dark svg { width: 22px; height: 22px; }
/* DONATE MODALS */
.donate-info-row { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--dark-border); }
.donate-info-row:last-child { border: none; }
.donate-info-label { font-size: 14px; color: var(--gray-400); }
.donate-info-value { font-size: 15px; font-weight: 600; color: var(--white); text-align: right; }
.donate-info-value.highlight { color: var(--yellow); font-size: 16px; }
.donate-note { margin-top: 24px; padding: 20px; background: rgba(255,222,89,0.08); border: 1px solid rgba(255,222,89,0.15); border-radius: 16px; font-size: 14px; color: var(--gray-300); line-height: 1.6;
}
.donate-note strong { color: var(--yellow); }
.bank-links { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
.bank-link { display: flex; align-items: center; gap: 16px; padding: 16px 20px; background: var(--dark-bg); border: 1px solid var(--dark-border); border-radius: 16px;
color: var(--gray-300); font-size: 14px; font-weight: 500; text-decoration: none; transition: var(--tr); }
/* BOOK MODAL */
.book-modal-body { padding: 24px 32px 40px; text-align: center; }
.book-modal-body p { color: var(--gray-400); font-size: 16px; margin-bottom: 32px; line-height: 1.6; }
.book-modal-buttons { display: flex; flex-direction: column; gap: 16px; }
.book-modal-btn { display: flex; flex-direction: row; align-items: center; justify-content: center; gap: 12px; padding: 16px 24px; border-radius: 16px;
font-family: 'Outfit', sans-serif !important; font-size: 16px; font-weight: 700; text-decoration: none; transition: var(--tr); border: none; cursor: pointer; width: 100%; box-sizing: border-box;
}
.book-modal-btn.amazon { background: #F7A92A !important; color: var(--black) !important; }
.book-modal-btn.free { background: var(--dark-bg) !important; color: var(--white) !important; border: 1px solid var(--dark-border); }
/* FOOTER */
footer { background: var(--dark-bg); color: var(--gray-400); padding: 80px 24px 140px; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand p { font-size: 15px; line-height: 1.7; color: var(--gray-400); max-width: 280px; margin-top: 20px; }
.footer-col h3 { font-family: 'Outfit', sans-serif !important; font-size: 14px; font-weight: 700; color: var(--white); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 24px; }
.footer-col a { display: block; font-size: 15px; color: var(--gray-400); text-decoration: none; padding: 8px 0; transition: var(--tr); }
.footer-legal { max-width: 1100px; margin: 60px auto 0; padding-top: 32px; border-top: 1px solid var(--dark-border); }
.footer-legal-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px; }
.footer-legal-text { font-size: 13px; color: var(--gray-400); line-height: 1.6; }
.footer-socials { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-socials a { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--dark-border); display: flex; align-items: center; justify-content: center;
color: var(--yellow); text-decoration: none; transition: var(--tr); }
.footer-socials a svg { width: 20px; height: 20px; fill: var(--yellow); transition: var(--tr); }
/* RESPONSIVE */
@media (max-width: 900px) {
.footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .top-header { justify-content: flex-start; }
  .top-header.scrolled, .floating-nav, .language-switch, .modal-overlay, .gallery-overlay { backdrop-filter: none; -webkit-backdrop-filter: none; }
  .language-switch { right: 16px; }
  .hero { min-height: calc(100dvh + 112px); justify-content: flex-start; padding-top: 108px; padding-bottom: calc(172px + env(safe-area-inset-bottom)); }
  .hero-content { margin-top: 0; }
  .hero-badge { max-width: calc(100vw - 32px); padding: 7px 12px; gap: 6px; font-size: 10.5px; letter-spacing: 0.01em; line-height: 1.2; white-space: normal; justify-content: center; text-align: center; }
  .hero-badge-dot { flex: 0 0 6px; }
  .hero-badge span { display: block; min-width: 0; overflow: visible; text-overflow: clip; white-space: normal; }
  .about-grid, .pastors-card, .visit-grid { grid-template-columns: 1fr; }
.pastors-card { padding: 32px 24px; }
.about-values { flex-direction: column; align-items: flex-start; width: 100%; gap: 12px; }
.value-chip { width: 100%; justify-content: flex-start; }
.activities-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding-bottom: 16px; margin-right: -24px; padding-right: 24px; }
.activity-card { min-width: 300px; max-width: 300px; scroll-snap-align: start; flex-shrink: 0; }
.visit-map iframe { min-height: 300px; }
.floating-nav { bottom: 16px; padding: 6px; width: 96vw; max-width: 400px; justify-content: space-between; overflow-x: visible; gap: 2px; }
.nav-item { padding: 4px; font-size: 9px; flex-shrink: 1; }
.nav-item svg { width: 18px; height: 18px; }
.nav-cta { padding: 8px 12px; font-size: 11px; margin-left: 2px; }
.mobile-br-10, .mobile-br-cada { display: inline; }
.gallery-overlay { padding: 24px 16px calc(112px + env(safe-area-inset-bottom)) !important; align-items: center !important; }
.gallery-inner { max-width: 94vw !important; }
.gallery-img { height: auto !important; aspect-ratio: 4 / 3 !important; margin-bottom: 0 !important; }
}
@media (max-width: 480px) {
.logo-iso { width: 32px; height: 32px; }
.logo-text { font-size: 15px; }
.language-switch { right: 12px; padding: 4px; gap: 4px; }
.language-switch__link { min-width: 30px; height: 26px; padding: 0 6px; font-size: 11px; }
.hero { padding-left: 16px; padding-right: 16px; padding-top: 104px; }
.hero-content { margin-top: 0; }
.hero-badge { max-width: 100%; font-size: 9.5px; padding: 7px 10px; }
.hero-buttons { flex-direction: column; width: 100%; }
.hero-buttons a { width: 100%; }
.locations-grid { grid-template-columns: 1fr; }
.footer-inner { grid-template-columns: 1fr; text-align: left; }
.footer-legal-inner { flex-direction: column; text-align: center; }
.donate-buttons { flex-direction: column; width: 100%; }
.btn-dark { width: 100%; justify-content: center; }
.about-stat-strip { grid-template-columns: 1fr; gap: 16px; padding-top: 32px; }
.stat-item { padding: 24px 20px; }
.modal-body { padding: 20px 24px 24px; }
.modal-header { padding: 24px 24px 0; }
.pastor-books { flex-direction: column; width: 100%; }
.book-chip { justify-content: center; }
}
/* ANIMATIONS */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1); }
.fade-up.visible { opacity: 1; transform: translateY(0); }
/* GALLERY MODAL */
.gallery-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.95); backdrop-filter: blur(10px); z-index: 2001; display: flex; align-items: center; justify-content: center; padding: 24px;
visibility: hidden; opacity: 0; pointer-events: none; transition: all 0.3s ease; }
.gallery-overlay.active { visibility: visible; opacity: 1; pointer-events: auto; }
.gallery-inner { max-width: 900px; width: 100%; text-align: center; transform: scale(0.85); transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.gallery-overlay.active .gallery-inner { transform: scale(1); }
.gallery-img { width: 100%; aspect-ratio: 16/9; background: var(--dark-surface); border-radius: 16px; display: flex; align-items: center; justify-content: center; color: var(--gray-500); font-size: 16px;
margin-bottom: 24px; box-shadow: 0 16px 40px rgba(0,0,0,0.5); }
.gallery-img-empty { border: 1px dashed var(--dark-border); background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,222,89,0.05)); color: var(--gray-400); font-weight: 700; }
@media (max-width: 768px) {
.gallery-overlay { backdrop-filter: none; -webkit-backdrop-filter: none; }
}
@media (prefers-reduced-motion: reduce) {
*, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.001ms !important; }
.fade-up { opacity: 1; transform: none; }
}
/* CORRECCIÓN DEFINITIVA CARRUSEL DE PRÉDICAS */
.predica-card {
    min-width: 320px !important;
    max-width: 320px !important;
}

@media (max-width: 768px) {
    .predica-card {
        min-width: 70vw !important;
        max-width: 70vw !important;
    }
}
