/* =============================================================
   EEBM — STYLES PRINCIPAL
   Paleta: Azul marino oscuro (#0f1f3d), Dorado suave (#b8960c),
           Crema (#f7f4ef), Blanco puro (#ffffff), Gris cálido (#6b6560)
   Tipografía: Cormorant Garamond (display) + Jost (body)
   ============================================================= */

/* ---- RESET & VARIABLES ---- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --navy:        #0f1f3d;
    --navy-light:  #1a3260;
    --navy-dark:   #080f1e;
    --gold:        #b8960c;
    --gold-light:  #d4ae3a;
    --gold-pale:   #f0e6b8;
    --cream:       #f7f4ef;
    --cream-dark:  #ede8e0;
    --white:       #ffffff;
    --warm-gray:   #6b6560;
    --light-gray:  #c8c3bc;
    --text:        #2a2520;
    --text-light:  #6b6560;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body:    'Jost', 'Helvetica Neue', sans-serif;

    --radius-sm:   6px;
    --radius:      12px;
    --radius-lg:   20px;
    --radius-xl:   32px;

    --shadow-sm:   0 2px 12px rgba(15,31,61,0.08);
    --shadow:      0 8px 32px rgba(15,31,61,0.12);
    --shadow-lg:   0 20px 60px rgba(15,31,61,0.18);

    --transition:  all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --trans-fast:  all 0.18s ease;

    --container:   1180px;
    --header-h:    76px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- TIPOGRAFÍA ---- */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.15;
    color: var(--navy);
}

/* ---- BOTONES ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 28px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.88rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: var(--transition);
    gap: 8px;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy-dark);
    border: 2px solid var(--gold);
}
.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(184,150,12,0.35);
}

.btn-light {
    background: var(--white);
    color: var(--navy);
    border: 2px solid var(--white);
}
.btn-light:hover {
    background: var(--cream);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.55);
    backdrop-filter: blur(4px);
}
.btn-outline-light:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-sm { padding: 9px 20px; font-size: 0.82rem; }
.btn-lg { padding: 16px 36px; font-size: 0.92rem; }
.mt-2 { margin-top: 1.5rem; }

/* ---- UTILIDADES ---- */
.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--gold-pale);
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 1rem;
}

.section-header {
    text-align: center;
    max-width: 660px;
    margin: 0 auto 4rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-intro {
    font-size: 1.05rem;
    color: var(--warm-gray);
    font-weight: 300;
    line-height: 1.8;
}

.section {
    padding: 100px 0;
}

/* ---- ANIMACIONES SCROLL ---- */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
    transition-delay: var(--delay, 0s);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-in {
    animation: fadeInUp 0.9s cubic-bezier(0.4,0,0.2,1) both;
    animation-delay: 0.2s;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* =============================================
   HEADER
   ============================================= */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--header-h);
    transition: var(--transition);
}

.site-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(8,15,30,0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}

.site-header.scrolled::before {
    background: rgba(8,15,30,0.96);
    border-bottom-color: rgba(184,150,12,0.2);
}

.header-inner {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    z-index: 1;
}

.header-logo {
    width: 44px;
    height: 44px;
    object-fit: contain;
    flex-shrink: 0;
}

.header-brand-text {
    display: flex;
    flex-direction: column;
}

.header-brand-name {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.3;
    letter-spacing: 0.025em;
    word-spacing: 0.05em;
    max-width: 200px;
}

.header-brand-tagline {
    font-size: 0.65rem;
    color: var(--gold-light);
    letter-spacing: 0.08em;
    font-weight: 400;
    font-family: var(--font-body);
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    z-index: 1;
}

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

.nav-link {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    padding: 8px 10px;
    border-radius: var(--radius-sm);
    transition: var(--trans-fast);
    position: relative;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--white);
    background: rgba(255,255,255,0.08);
}

.nav-link.active { color: var(--gold-light); }

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
    z-index: 1;
}

/* Selector de idiomas */
.lang-switcher {
    display: flex;
    gap: 6px;
    align-items: center;
}

.lang-flag {
    display: block;
    border-radius: 3px;
    overflow: hidden;
    opacity: 0.65;
    transition: var(--trans-fast);
    line-height: 0;
    border: 2px solid transparent;
}
.lang-flag:hover { opacity: 1; }
.lang-flag.active {
    opacity: 1;
    border-color: var(--gold-light);
    border-radius: 3px;
}

/* Botón hamburguesa */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
}
.menu-toggle span {
    display: block;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   HERO
   ============================================= */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-carousel {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease, transform 8s ease;
    transform: scale(1.06);
    background-color: var(--navy-dark);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(8,15,30,0.72) 0%,
        rgba(8,15,30,0.45) 50%,
        rgba(8,15,30,0.6) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: var(--header-h);
}

.hero-text { max-width: 700px; }

.hero-eyebrow {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 24px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.82);
    max-width: 520px;
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* Controles del carrusel */
.hero-controls {
    position: absolute;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-arrow {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid rgba(255,255,255,0.4);
    border-radius: 50%;
    color: var(--white);
    transition: var(--trans-fast);
    backdrop-filter: blur(4px);
}
.hero-arrow:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
}

.hero-dots { display: flex; gap: 8px; }

.hero-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    transition: var(--trans-fast);
    padding: 0;
}
.hero-dot.active {
    background: var(--gold-light);
    width: 24px;
    border-radius: 4px;
}

/* Versículo ticker */
.verse-ticker {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 3;
    background: rgba(8,15,30,0.75);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(184,150,12,0.3);
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-style: italic;
    color: rgba(255,255,255,0.88);
    font-weight: 300;
}

.verse-icon {
    width: 18px;
    height: 18px;
    color: var(--gold-light);
    flex-shrink: 0;
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 52px;
    right: 40px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.scroll-mouse {
    width: 22px;
    height: 34px;
    border: 2px solid rgba(255,255,255,0.45);
    border-radius: 11px;
    display: flex;
    justify-content: center;
    padding-top: 5px;
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    background: var(--gold-light);
    border-radius: 2px;
    animation: scrollWheel 1.8s ease infinite;
}

@keyframes scrollWheel {
    0%   { opacity: 1; transform: translateY(0); }
    80%  { opacity: 0; transform: translateY(8px); }
    100% { opacity: 0; transform: translateY(0); }
}

/* =============================================
   ABOUT / QUIÉNES SOMOS
   ============================================= */
.about-section {
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.about-image-wrap {
    position: relative;
}

.about-img-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    background: var(--navy-light);
    position: relative;
}

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

.about-img-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.about-img-placeholder svg { width: 48px; height: 48px; }

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gold);
    color: var(--navy-dark);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}
.about-badge-num {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}
.about-badge-txt {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.2;
}

.about-body {
    color: var(--warm-gray);
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 2rem;
}

.vm-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vm-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius);
    border-left: 3px solid var(--gold);
    box-shadow: var(--shadow-sm);
}

.vm-icon {
    width: 38px;
    height: 38px;
    background: var(--gold-pale);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
}
.vm-icon svg { width: 18px; height: 18px; }

.vm-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
}

.vm-text {
    font-size: 0.9rem;
    color: var(--warm-gray);
    line-height: 1.65;
}

/* Propósitos */
.purposes-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.purpose-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.purpose-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transition: transform 0.35s ease;
}

.purpose-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}
.purpose-card:hover::before { transform: scaleX(1); }

.purpose-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 300;
    color: var(--gold-pale);
    line-height: 1;
    margin-bottom: 12px;
}

.purpose-icon {
    width: 44px;
    height: 44px;
    background: var(--navy);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--gold-light);
}
.purpose-icon svg { width: 20px; height: 20px; }

.purpose-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 10px;
}

.purpose-desc {
    font-size: 0.85rem;
    color: var(--warm-gray);
    line-height: 1.65;
}

/* =============================================
   PARALLAX BANNER
   ============================================= */
.parallax-banner {
    position: relative;
    height: 360px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.parallax-bg {
    position: absolute;
    inset: -60px 0;
    background-size: cover;
    background-position: center;
    background-color: var(--navy-dark);
    will-change: transform;
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8,15,30,0.82), rgba(15,31,61,0.72));
}

.parallax-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.parallax-quote p {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-style: italic;
    font-weight: 300;
    color: var(--white);
    line-height: 1.5;
    margin-bottom: 1rem;
    text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.parallax-quote cite {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-light);
}

/* =============================================
   QUÉ NOS DIFERENCIA
   ============================================= */
.diff-section { background: var(--white); }

.diff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.diff-card {
    padding: 36px 28px;
    border-radius: var(--radius);
    background: var(--cream);
    border: 1px solid var(--cream-dark);
    transition: var(--transition);
}

.diff-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    background: var(--white);
}

.diff-icon-wrap {
    width: 52px;
    height: 52px;
    background: var(--navy);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--gold-light);
}
.diff-icon-wrap svg { width: 22px; height: 22px; }

.diff-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 10px;
}

.diff-text {
    font-size: 0.9rem;
    color: var(--warm-gray);
    line-height: 1.7;
}

/* =============================================
   QUÉ CREEMOS — ACORDEÓN
   ============================================= */
.beliefs-section { background: var(--cream); }

.beliefs-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.belief-item {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--cream-dark);
    overflow: hidden;
    transition: box-shadow 0.25s ease;
}

.belief-item.open {
    box-shadow: var(--shadow-sm);
    border-color: rgba(184,150,12,0.2);
}

.belief-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    text-align: left;
    transition: background 0.2s ease;
}

.belief-trigger:hover { background: var(--cream); }

.belief-trigger-inner {
    display: flex;
    align-items: center;
    gap: 14px;
}

.belief-icon {
    width: 36px;
    height: 36px;
    background: var(--gold-pale);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
}
.belief-icon svg { width: 16px; height: 16px; }

.belief-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy);
}

.belief-chevron {
    color: var(--warm-gray);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}
.belief-chevron svg { width: 18px; height: 18px; }
.belief-item.open .belief-chevron { transform: rotate(180deg); }

.belief-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}

.belief-item.open .belief-body { max-height: 300px; }

.belief-body p {
    padding: 0 24px 24px 74px;
    font-size: 0.93rem;
    color: var(--warm-gray);
    line-height: 1.8;
}

/* =============================================
   HORARIO
   ============================================= */
.schedule-section { background: var(--navy); }

.schedule-section .section-label {
    background: rgba(184,150,12,0.2);
    color: var(--gold-light);
}

.schedule-section .section-title { color: var(--white); }

.schedule-section .section-intro { color: rgba(255,255,255,0.65); }

.schedule-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 780px;
    margin: 0 auto 2rem;
}

.schedule-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px 28px;
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}

.schedule-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(184,150,12,0.3);
}

.schedule-card.highlight {
    background: rgba(184,150,12,0.12);
    border-color: rgba(184,150,12,0.3);
}

.schedule-icon {
    width: 48px;
    height: 48px;
    background: var(--gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--navy-dark);
}
.schedule-icon svg { width: 20px; height: 20px; }

.schedule-card:not(.highlight) .schedule-icon {
    background: rgba(255,255,255,0.1);
    color: var(--white);
}

.schedule-info { flex: 1; }

.schedule-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2px;
}

.schedule-sub {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
}

.schedule-day-tag {
    display: inline-block;
    margin-top: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-light);
    background: rgba(184,150,12,0.15);
    padding: 3px 8px;
    border-radius: 100px;
}

.schedule-time {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold-light);
    white-space: nowrap;
}

.schedule-note {
    text-align: center;
    color: rgba(255,255,255,0.55);
    font-size: 0.88rem;
    max-width: 700px;
    margin: 0 auto;
}
.schedule-note a {
    color: var(--gold-light);
    text-decoration: underline;
}

/* =============================================
   UBICACIÓN
   ============================================= */
.location-section { background: var(--white); }

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
}

.contact-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 28px;
}

.contact-detail-icon {
    width: 42px;
    height: 42px;
    background: var(--gold-pale);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
}
.contact-detail-icon svg { width: 18px; height: 18px; }

.contact-detail h4 {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--light-gray);
    margin-bottom: 4px;
}

.contact-detail p, .contact-detail small {
    font-size: 0.95rem;
    color: var(--text);
}
.contact-detail small { color: var(--warm-gray); font-size: 0.82rem; }
.contact-detail a:hover { color: var(--gold); }

.location-map-wrap { height: 100%; }

.map-container {
    height: 420px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--cream-dark);
}

/* =============================================
   CONTACTO
   ============================================= */
.contact-section { background: var(--cream); }

.contact-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Formulario */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
}

.form-group--full { margin-bottom: 20px; }

.form-group label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--warm-gray);
}

.form-group input,
.form-group textarea {
    padding: 13px 16px;
    border: 1.5px solid var(--cream-dark);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--white);
    transition: var(--trans-fast);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(15,31,61,0.08);
}

.form-group input.error,
.form-group textarea.error { border-color: #c0392b; }

.form-error-msg {
    font-size: 0.78rem;
    color: #c0392b;
    display: none;
}
.form-group.has-error .form-error-msg { display: block; }

.form-group textarea { resize: vertical; min-height: 130px; }

.form-alert {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    font-size: 0.9rem;
}

.form-alert svg { width: 18px; height: 18px; flex-shrink: 0; }

.form-alert--success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.form-alert--error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Tarjeta lateral de contacto */
.contact-aside-card {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    color: var(--white);
    text-align: center;
}

.contact-aside-logo {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.contact-aside-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 6px;
    line-height: 1.3;
}

.contact-aside-tagline {
    font-size: 0.82rem;
    color: var(--gold-light);
    letter-spacing: 0.06em;
    font-style: italic;
    font-family: var(--font-display);
    margin-bottom: 28px;
}

.contact-aside-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
    margin-bottom: 28px;
}

.contact-aside-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.8);
    transition: color 0.2s;
}
.contact-aside-item svg { width: 16px; height: 16px; color: var(--gold-light); flex-shrink: 0; }
.contact-aside-item:hover { color: var(--white); }

.contact-aside-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: var(--trans-fast);
}
.social-link:hover {
    background: var(--gold);
    color: var(--navy-dark);
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.7);
}

.footer-top { padding: 72px 0 48px; }

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 48px;
}

.footer-logo-wrap {
    display: inline-block;
    margin-bottom: 16px;
}
.footer-logo-wrap img {opacity: 0.85; }

.footer-church-name {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1.3;
}

.footer-tagline-verse {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.9rem;
    color: var(--gold-light);
    line-height: 1.5;
    opacity: 0.8;
}

.footer-col-title {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 18px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-nav a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    transition: color 0.2s;
}
.footer-nav a:hover { color: var(--white); }

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
}
.footer-contact-list li svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; color: var(--gold-light); }
.footer-contact-list a:hover { color: var(--white); }

.footer-social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    transition: color 0.2s;
}
.footer-social-link:hover { color: var(--gold-light); }

.footer-langs {
    display: flex;
    gap: 8px;
}

.footer-langs a {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.4);
    padding: 4px 8px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 4px;
    transition: var(--trans-fast);
}
.footer-langs a:hover,
.footer-langs a.active {
    color: var(--gold-light);
    border-color: var(--gold-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-copy, .footer-love {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
}

/* =============================================
   BOTÓN SCROLL TO TOP
   ============================================= */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 46px;
    height: 46px;
    background: var(--gold);
    color: var(--navy-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: var(--transition);
}
.scroll-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.scroll-top:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
}
.scroll-top svg { width: 18px; height: 18px; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
    .purposes-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
    :root { --header-h: 66px; }
    .section { padding: 72px 0; }

    .main-nav {
        position: fixed;
        top: var(--header-h);
        left: 0; right: 0;
        background: var(--navy-dark);
        border-bottom: 1px solid rgba(255,255,255,0.08);
        padding: 24px;
        transform: translateY(-110%);
        transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
        justify-content: flex-start;
    }
    .main-nav.open { transform: translateY(0); }

    .nav-list { flex-direction: column; gap: 4px; width: 100%; }
    .nav-link { display: block; padding: 12px 16px; font-size: 0.88rem; }

    .menu-toggle { display: flex; }
    .header-cta { display: none; }
    .header-brand-tagline { display: none; }

    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-image-wrap { max-width: 440px; }
    .about-badge { display: none; }

    .purposes-grid { grid-template-columns: repeat(2, 1fr); }

    .diff-grid { grid-template-columns: repeat(2, 1fr); }

    .location-grid { grid-template-columns: 1fr; }
    .map-container { height: 300px; }

    .contact-grid { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .hero-title { font-size: clamp(2.4rem, 10vw, 3.2rem); }
    .hero-actions { flex-direction: column; }
    .hero-scroll-indicator { display: none; }

    .purposes-grid { grid-template-columns: 1fr; }
    .diff-grid { grid-template-columns: 1fr; }

    .form-row { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }

    .section-title { font-size: clamp(1.8rem, 7vw, 2.4rem); }

    .header-brand-name { font-size: 0.75rem; }
    .lang-switcher { gap: 4px; }
}

/* =============================================
   PASTOR — Sección del Pastor
   ============================================= */
.pastor-section {
    background: var(--white);
    overflow: hidden;
}

.pastor-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 80px;
    align-items: start;
}

/* Columna foto */
.pastor-photo-col { position: relative; }

.pastor-photo-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 3/4;
    background: var(--navy);
}

.pastor-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.6s ease;
}

.pastor-photo-wrap:hover .pastor-photo {
    transform: scale(1.03);
}

/* Borde decorativo dorado */
.pastor-photo-wrap::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: calc(var(--radius-lg) + 3px);
    background: linear-gradient(135deg, var(--gold), transparent 60%);
    z-index: -1;
}

.pastor-photo-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-dark);
    box-shadow: 0 4px 16px rgba(184,150,12,0.45);
}
.pastor-photo-badge svg { width: 22px; height: 22px; }

.pastor-name-card {
    background: var(--navy);
    border-radius: var(--radius);
    padding: 22px 28px;
    margin-top: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pastor-name-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.pastor-name {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.pastor-role {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 4px;
}

.pastor-church {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    font-style: italic;
    font-family: var(--font-display);
}

/* Columna mensaje */
.pastor-message-col { padding-top: 16px; }

.pastor-quote-mark {
    font-family: var(--font-display);
    font-size: 8rem;
    line-height: 0.6;
    color: var(--gold-pale);
    margin-bottom: 1.5rem;
    margin-left: -8px;
    font-weight: 700;
}

.pastor-message { border: none; padding: 0; }

.pastor-msg-text {
    font-family: var(--font-display);
    font-size: 1.12rem;
    font-style: italic;
    font-weight: 300;
    color: var(--warm-gray);
    line-height: 1.9;
    margin-bottom: 1.4rem;
}

.pastor-msg-text:first-child {
    font-size: 1.22rem;
    color: var(--text);
    font-weight: 400;
}

.pastor-signature {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 2.5rem 0;
    padding: 20px 0;
    border-top: 1px solid var(--cream-dark);
}

.pastor-sig-line {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    flex-shrink: 0;
    border-radius: 2px;
}

.pastor-sig-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pastor-sig-name {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy);
}

.pastor-sig-verse {
    font-size: 0.82rem;
    color: var(--warm-gray);
    font-style: italic;
    font-family: var(--font-display);
}

.pastor-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-outline-navy {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
    padding: 13px 28px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.88rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-outline-navy:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
}

/* Responsive pastor */
@media (max-width: 1000px) {
    .pastor-grid {
        grid-template-columns: 340px 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .pastor-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .pastor-photo-wrap { max-width: 360px; margin: 0 auto; }
    .pastor-name-card { max-width: 360px; margin: 20px auto 0; }
    .pastor-quote-mark { font-size: 5rem; }
    .pastor-msg-text { font-size: 1rem; }
}

/* =============================================
   HORARIO — TIMELINE REDISEÑADO
   ============================================= */

.schedule-day-block {
    max-width: 820px;
    margin: 0 auto 56px;
}

.schedule-day-block:last-of-type { margin-bottom: 0; }

.schedule-day-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.schedule-day-icon {
    width: 44px;
    height: 44px;
    background: var(--gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-dark);
    flex-shrink: 0;
}
.schedule-day-icon svg { width: 20px; height: 20px; }

.thursday-icon {
    background: rgba(255,255,255,0.12);
    color: var(--white);
}

.schedule-day-name {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: -0.01em;
}

/* Timeline */
.schedule-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    padding-left: 120px;
}

.schedule-timeline::before {
    content: '';
    position: absolute;
    left: 108px;
    top: 16px;
    bottom: 16px;
    width: 2px;
    background: rgba(255,255,255,0.1);
}

.schedule-entry {
    display: grid;
    grid-template-columns: 110px 20px 1fr auto;
    align-items: center;
    gap: 0 16px;
    margin-left: -120px;
    padding: 18px 20px 18px 0;
    border-radius: var(--radius);
    margin-bottom: 4px;
    transition: background 0.2s ease;
}

.schedule-entry:hover {
    background: rgba(255,255,255,0.04);
}

.schedule-entry.highlight:hover {
    background: rgba(184,150,12,0.1);
}

.schedule-entry-time {
    text-align: right;
    padding-right: 0;
}

.schedule-entry-time span {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gold-light);
    white-space: nowrap;
}

.schedule-entry-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--gold);
    border: 3px solid var(--navy);
    box-shadow: 0 0 0 2px var(--gold);
    flex-shrink: 0;
    margin: 0 auto;
    z-index: 1;
    position: relative;
}

.coffee-dot  { background: var(--warm-gray); box-shadow: 0 0 0 2px var(--warm-gray); }
.women-dot   { background: #d4536c; box-shadow: 0 0 0 2px #d4536c; }

.schedule-entry-info { flex: 1; padding-left: 4px; }

.schedule-entry-info h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2px;
}

.schedule-entry-info p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
}

.schedule-entry-icon {
    width: 36px;
    height: 36px;
    background: rgba(184,150,12,0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    flex-shrink: 0;
}
.schedule-entry-icon svg { width: 16px; height: 16px; }

.coffee-icon { background: rgba(107,101,96,0.2); color: var(--light-gray); }
.women-icon  { background: rgba(212,83,108,0.15); color: #f08090; }

/* Nota especial tercer domingo */
.schedule-special-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 8px 0 0 130px;
    padding: 10px 16px;
    background: rgba(184,150,12,0.08);
    border-left: 2px solid var(--gold);
    border-radius: 0 6px 6px 0;
    font-size: 0.82rem;
    font-style: italic;
    color: rgba(255,255,255,0.6);
    font-family: var(--font-display);
}

/* Entrada mujeres */
.schedule-entry.women .schedule-entry-info h4 { color: #f08090; }

/* =============================================
   SECCIÓN GRUPOS
   ============================================= */
.groups-section { background: var(--cream); }

.groups-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.group-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px 22px;
    border: 1px solid var(--cream-dark);
    border-top: 3px solid var(--navy);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.group-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

/* Colores distintivos por grupo */
.women-card  { border-top-color: #d4536c; }
.prayer-card { border-top-color: var(--navy); }
.youth-card  { border-top-color: var(--gold); }
.kids-card   { border-top-color: #2e8b57; }

.group-card-icon {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    color: var(--gold-light);
}
.women-card  .group-card-icon { background: #d4536c; color: #fff; }
.prayer-card .group-card-icon { background: var(--navy); color: var(--gold-light); }
.youth-card  .group-card-icon { background: var(--gold); color: var(--navy-dark); }
.kids-card   .group-card-icon { background: #2e8b57; color: #fff; }
.group-card-icon svg { width: 20px; height: 20px; }

.group-card-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.25;
}

.group-card-text {
    font-size: 0.87rem;
    color: var(--warm-gray);
    line-height: 1.7;
    flex: 1;
}

.group-card-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--warm-gray);
    background: var(--cream);
    padding: 5px 10px;
    border-radius: 100px;
    width: fit-content;
}

/* CTA hacia Google Sites */
.groups-cta {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.btn-groups {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--navy);
    color: var(--white);
    border: 2px solid var(--navy);
    padding: 16px 36px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.92rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: var(--transition);
    text-decoration: none;
}

.btn-groups:hover {
    background: var(--navy-light);
    border-color: var(--navy-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(15,31,61,0.25);
}

.groups-cta-sub {
    font-size: 0.82rem;
    color: var(--warm-gray);
    font-style: italic;
    font-family: var(--font-display);
}

/* Responsive horario */
@media (max-width: 768px) {
    .schedule-timeline { padding-left: 90px; }
    .schedule-timeline::before { left: 78px; }
    .schedule-entry { grid-template-columns: 80px 16px 1fr auto; margin-left: -90px; }
    .schedule-entry-time span { font-size: 0.78rem; }
    .schedule-special-note { margin-left: 96px; }
    .groups-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 500px) {
    .schedule-timeline { padding-left: 0; }
    .schedule-timeline::before { display: none; }
    .schedule-entry {
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
        margin-left: 0;
        padding: 16px;
        background: rgba(255,255,255,0.05);
        border-radius: var(--radius);
        margin-bottom: 8px;
    }
    .schedule-entry-time { grid-column: 1; }
    .schedule-entry-dot { display: none; }
    .schedule-entry-info { grid-column: 1 2; }
    .schedule-entry-icon { grid-row: 1; grid-column: 2; }
    .schedule-special-note { margin-left: 0; }
    .groups-grid { grid-template-columns: 1fr; }
}
