/* ==========================================================================
   PORTAL CMADM - SYSTEM DESIGN (CLON GIGI STYLING - MINIMALIST GREEN/CREAM)
   ========================================================================== */

/* Design Tokens & Variables */
:root {
    --bg-light: #F4F4F0;
    --bg-dark: #121A16; /* Deepest Forest Green */
    --text-dark: #121A16;
    --text-light: #F4F4F0;
    --text-muted: rgba(18, 26, 22, 0.6);
    --accent: #5C825D; /* Mid Forest/Sage Green */
    --accent-light: #A9B799; /* Light Sage Green */
    --accent-rgb: 92, 130, 93;
    
    --border-dark: rgba(18, 26, 22, 0.08);
    --border-light: rgba(244, 244, 240, 0.08);
    
    --font-sans: 'Outfit', sans-serif;
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-light);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* Noise overlay like reference */
.noise-overlay {
    position: relative;
}

.noise-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.035;
    pointer-events: none;
    z-index: 1;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* Global Typography */
h1, h2, h3, h4 {
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.1;
    text-transform: uppercase;
}

.block {
    display: block;
}

.text-accent {
    color: var(--accent);
}

.dark-bg .text-accent {
    color: var(--accent-light);
}

/* Background Drifting Nebulas */
.glow-orb {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -10;
    opacity: 0.12;
    pointer-events: none;
    mix-blend-mode: multiply;
    animation: driftNebula 25s ease-in-out infinite alternate;
}

.orb-1 {
    background-color: var(--accent);
    top: 10%;
    left: -10%;
}

.orb-2 {
    background-color: var(--accent-light);
    top: 40%;
    right: -10%;
    animation-delay: -5s;
}

.orb-3 {
    background-color: var(--accent);
    bottom: 10%;
    left: 20%;
    animation-delay: -10s;
}

@keyframes driftNebula {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, -40px) scale(1.1); }
    100% { transform: translate(-30px, 60px) scale(0.95); }
}

/* Header & Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(244, 244, 240, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-dark);
    transition: var(--transition-fast);
    transform: translateY(-100%);
}

.navbar.visible {
    transform: translateY(0);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 8px 32px rgba(18, 26, 22, 0.05);
    background-color: rgba(244, 244, 240, 0.9);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
    transition: transform var(--transition-fast);
}

.nav-logo:hover .logo-img {
    transform: scale(1.05);
}

.logo-text-group {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text-main {
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: var(--text-dark);
}

.logo-text-sub {
    font-size: 0.62rem;
    font-weight: 800;
    color: var(--accent);
    text-transform: uppercase;
    max-width: 250px;
    letter-spacing: 0.01em;
    white-space: normal;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    text-decoration: none;
    color: rgba(18, 26, 22, 0.7);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: var(--transition-fast);
    position: relative;
    padding: 4px 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-dark);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.btn-nav {
    background-color: var(--text-dark);
    color: var(--text-light) !important;
    padding: 8px 18px !important;
    border-radius: 50px;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(18, 26, 22, 0.1);
}

.btn-nav:hover {
    background-color: var(--accent);
}

.btn-nav::after {
    display: none !important;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle .material-symbols-outlined {
    font-size: 28px;
    color: var(--text-dark);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 95vh;
    display: flex;
    align-items: center;
    background: linear-gradient(to bottom right, var(--bg-light), rgba(169, 183, 153, 0.08), var(--bg-light));
    overflow: hidden;
    padding-top: 120px;
    padding-bottom: 60px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-container.revealed {
    opacity: 1;
    transform: translateY(0);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: var(--text-dark);
    color: var(--text-light);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-badge .material-symbols-outlined {
    font-size: 14px;
    color: var(--accent-light);
}

.hero-title {
    font-size: 4rem;
    line-height: 0.95;
    font-weight: 900;
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
    max-width: 520px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-fast), transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(92, 130, 93, 0.15);
}

.btn-primary:hover {
    background-color: var(--text-dark);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 24px rgba(18, 26, 22, 0.2);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--text-dark);
    color: var(--text-dark);
}

.btn-secondary:hover {
    background-color: var(--text-dark);
    color: var(--text-light);
    transform: translateY(-3px) scale(1.02);
}

.btn-paypal {
    background-color: #0070ba;
    color: #fff;
}
.btn-paypal:hover {
    background-color: #005ea6;
}

.hero-bullets {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.bullet-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-dark);
}

.bullet-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--accent);
}

.hero-glow-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero-aura {
    position: absolute;
    width: 320px;
    height: 320px;
    background-color: rgba(92, 130, 93, 0.1);
    filter: blur(60px);
    border-radius: 50%;
    z-index: 1;
}

/* Hero Player Card */
.hero-card {
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid var(--border-dark);
    border-radius: 28px;
    padding: 24px;
    width: 100%;
    max-width: 360px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0,0,0,0.02);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: transform 0.15s ease-out, box-shadow 0.3s ease;
    overflow: hidden;
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('Fotos de pastores/Pastores Enderson Tiapa y Ketcy de Tiapa.png');
    background-size: cover;
    background-position: center 25%;
    filter: blur(3px) grayscale(5%);
    opacity: 0.45;
    z-index: 0;
    pointer-events: none;
    border-radius: 28px;
    transition: opacity 0.3s ease;
}

.hero-card.playing::before {
    opacity: 0.55; /* slightly more visible when playing */
}

.hero-player-header,
.hero-player-visualizer-container,
.hero-player-info,
.hero-player-controls {
    position: relative;
    z-index: 2;
}

.hero-card:hover {
    box-shadow: 0 30px 60px rgba(18, 26, 22, 0.06);
}

.hero-player-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--border-dark);
    padding-bottom: 12px;
}

.live-badge {
    background-color: rgba(92, 130, 93, 0.1);
    border: 1px solid var(--accent);
    padding: 4px 10px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--accent);
    display: inline-block;
}

.animate-pulse {
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.2); }
}

.live-text {
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: 0.05em;
}

.station-frequency {
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.hero-player-visualizer-container {
    height: 100px;
    background-color: rgba(18, 26, 22, 0.03);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-dark);
}

.hero-visualizer-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.radio-cover {
    position: relative;
    z-index: 10;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(18, 26, 22, 0.15);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1.5px solid var(--accent);
    overflow: hidden;
}

.hero-radio-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    animation: rotateVinyl 12s linear infinite;
    animation-play-state: paused;
}

.hero-card.playing .hero-radio-logo-img {
    animation-play-state: running;
}

.hero-card.playing .radio-cover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(92, 130, 93, 0.4);
}

.hero-player-info {
    text-align: center;
    margin-bottom: 16px;
}

.hero-player-info h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    font-weight: 800;
    color: var(--text-dark);
}

.hero-player-info p {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.hero-player-controls {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.radio-controls-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.radio-play-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--text-dark);
    color: var(--text-light);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(18, 26, 22, 0.15);
    transition: var(--transition-fast), transform 0.2s ease;
}

.radio-play-btn:hover {
    background-color: var(--accent);
    transform: scale(1.05);
}

.radio-play-btn svg {
    width: 20px;
    height: 20px;
}

.radio-vol-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 10px;
}

.radio-vol-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    color: var(--text-dark);
}

.radio-slider {
    flex: 1;
    -webkit-appearance: none;
    appearance: none;
    height: 4px;
    border-radius: 2px;
    background: rgba(18, 26, 22, 0.1);
    outline: none;
}

.radio-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent);
    cursor: pointer;
    transition: transform var(--transition-fast);
}

.radio-slider::-webkit-slider-thumb:hover {
    transform: scale(1.25);
}

.hidden {
    display: none !important;
}

/* Infinite Marquees */
.marquee-container {
    width: 100vw;
    background-color: var(--text-dark);
    border-bottom: 2px solid rgba(244, 244, 240, 0.1);
    padding: 16px 0;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    width: max-content;
    animation: scrollMarquee 40s linear infinite;
}

.marquee-track span {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--text-light);
    letter-spacing: 0.1em;
    padding-right: 40px;
}

.marquee-container.light {
    background-color: var(--bg-light);
    border-bottom: 2px solid var(--border-dark);
}

.marquee-container.light .marquee-track span {
    color: var(--text-dark);
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    width: max-content;
    animation: scrollMarquee 35s linear infinite;
}

.marquee-content span {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: 0.1em;
    padding-right: 40px;
}

@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Sections Layout */
.section-container {
    padding: 100px 0;
    position: relative;
}

.section-dark {
    background-color: var(--bg-dark);
    color: var(--text-light);
    border-bottom: 1px solid var(--border-light);
}

.section-label {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: var(--accent);
    display: block;
    text-align: center;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.section-dark .section-label {
    color: var(--accent-light);
}

.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 16px;
    font-weight: 900;
}

.section-title-large {
    font-size: 3.2rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 50px auto;
    text-align: center;
    line-height: 1.6;
}

.section-dark .section-desc {
    color: rgba(244, 244, 240, 0.6);
}

/* Leadership Grid */
.pastor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 40px;
    justify-content: center;
}

.leader-card {
    background-color: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--border-dark);
    border-radius: 24px;
    overflow: hidden;
    padding: 24px;
    transition: transform 0.15s ease-out, box-shadow 0.3s ease, border-color 0.3s ease;
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.leader-card:hover {
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(18, 26, 22, 0.05);
}

.leader-image-wrapper {
    position: relative;
    width: 100%;
    height: 320px;
    border-radius: 16px;
    overflow: hidden;
    background-color: var(--bg-light);
    border: 1px solid var(--border-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.leader-img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.leader-card:hover .leader-img {
    transform: scale(1.03);
}

.leader-info h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.leader-role {
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 12px;
}

.leader-bio {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 16px;
}

.leader-socials-container {
    border-top: 1px solid var(--border-dark);
    padding-top: 12px;
}

.socials-label {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
}

.social-links {
    display: flex;
    gap: 8px;
    margin-top: 6px;
}

.social-links a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(18, 26, 22, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.social-links a:hover {
    background-color: var(--text-dark);
    color: var(--text-light);
}

.social-links a svg {
    width: 16px;
    height: 16px;
}

.support-board {
    background-color: rgba(255, 255, 255, 0.8) !important;
}

/* Bento Cards (Ministerios) */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.bento-card {
    background-color: rgba(255, 255, 255, 0.65);
    border: 1px solid var(--border-dark);
    border-radius: 24px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.bento-card:hover {
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(18, 26, 22, 0.05);
}

.bento-icon-box {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background-color: rgba(92, 130, 93, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 24px;
    transition: transform var(--transition-bounce), background-color 0.3s ease;
}

.bento-card:hover .bento-icon-box {
    transform: scale(1.08) rotate(4deg);
    background-color: var(--accent);
    color: var(--text-light);
}

.bento-icon-box .material-symbols-outlined {
    font-size: 22px;
}

.bento-title-small {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.bento-heading {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.2;
}

.bento-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.pillar-link {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-dark);
}

.pillar-link .material-symbols-outlined {
    font-size: 16px;
    transition: transform var(--transition-fast);
}

.bento-card:hover .pillar-link .material-symbols-outlined {
    transform: translateX(4px);
}

.bento-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-card:hover .bento-line {
    transform: scaleX(1);
}

/* Fundamentos Pestañas */
.fundamentos-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    margin-top: 32px;
}

.fundamentos-tab-btn {
    background-color: rgba(244, 244, 240, 0.05);
    border: 1px solid var(--border-light);
    color: var(--text-light);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-fast);
}

.fundamentos-tab-btn:hover {
    background-color: rgba(244, 244, 240, 0.15);
    border-color: var(--accent-light);
}

.fundamentos-tab-btn.active {
    background-color: var(--bg-light);
    color: var(--text-dark);
    border-color: var(--bg-light);
}

.fundamentos-pane {
    display: none;
}

.fundamentos-pane.active {
    display: block;
    animation: fadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.mv-card {
    background-color: rgba(24, 34, 29, 0.8) !important;
    border: 1px solid var(--border-light) !important;
}

.mv-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.mv-icon-box {
    color: var(--accent-light);
}

.mv-icon-box .material-symbols-outlined {
    font-size: 24px;
}

.mv-card .bento-heading {
    margin: 0;
    color: var(--text-light);
}

.mv-card .bento-desc {
    color: rgba(244, 244, 240, 0.7);
    margin: 0;
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.valor-card {
    background-color: rgba(24, 34, 29, 0.8) !important;
    border: 1px solid var(--border-light) !important;
}

.valor-num {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-light);
    display: block;
    margin-bottom: 16px;
    line-height: 1;
}

.valor-card .bento-heading {
    color: var(--text-light);
}

.valor-card .bento-desc {
    color: rgba(244, 244, 240, 0.7);
    margin: 0;
}

.propositos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.proposito-card {
    background-color: rgba(24, 34, 29, 0.8) !important;
    border: 1px solid var(--border-light) !important;
}

.proposito-icon {
    color: var(--accent-light);
    margin-bottom: 20px;
}

.proposito-icon .material-symbols-outlined {
    font-size: 24px;
}

.proposito-card .bento-heading {
    color: var(--text-light);
}

.proposito-card .bento-desc {
    color: rgba(244, 244, 240, 0.7);
    margin: 0;
}

.estrategias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.estrategia-card {
    background-color: rgba(24, 34, 29, 0.8) !important;
    border: 1px solid var(--border-light) !important;
}

.estrategia-header-box {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    color: var(--accent-light);
}

.estrategia-header-box .material-symbols-outlined {
    font-size: 24px;
}

.estrategia-card .bento-heading {
    color: var(--text-light);
    margin: 0;
}

.estrategia-card .bento-desc {
    color: rgba(244, 244, 240, 0.7);
    margin: 0;
}

/* Cobertura Eclesial (Iglesias) */
.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 40px auto 0 auto;
}

.carousel-track-wrapper {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    width: 300%;
}

.carousel-slide {
    width: 33.3333%;
    padding: 0 16px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
}

.slide-image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-light);
    padding: 48px;
    border-radius: 28px;
    border: 1px solid var(--border-dark);
    height: 320px;
}

.carousel-slide-img {
    max-height: 180px;
    width: auto;
    object-fit: contain;
}

.slide-tag {
    background-color: var(--accent);
    color: var(--text-light);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
    margin-bottom: 16px;
}

.slide-title {
    font-size: 2.2rem;
    color: var(--text-light);
    margin-bottom: 16px;
    font-weight: 900;
}

.slide-text {
    color: rgba(244, 244, 240, 0.75);
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.slide-bullets {
    list-style: none;
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.slide-bullets li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(244, 244, 240, 0.85);
    font-weight: 600;
}

.slide-bullets li .material-symbols-outlined {
    color: var(--accent-light);
    font-size: 18px;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(244, 244, 240, 0.1);
    border: 1px solid var(--border-light);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.carousel-btn:hover {
    background-color: var(--bg-light);
    color: var(--text-dark);
    border-color: var(--bg-light);
}

.carousel-btn.btn-left {
    position: absolute;
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-btn.btn-right {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
}

.carousel-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(244, 244, 240, 0.2);
    cursor: pointer;
    transition: var(--transition-fast);
}

.carousel-dots .dot.active {
    background-color: var(--accent-light);
    transform: scale(1.25);
}

.carousel-progress-bar-container {
    width: 120px;
    height: 3px;
    background-color: rgba(244, 244, 240, 0.12);
    margin: 16px auto 0 auto;
    border-radius: 4px;
    overflow: hidden;
}

.carousel-progress-bar {
    width: 0%;
    height: 100%;
    background-color: var(--accent-light);
}

/* Church Directory */
.church-directory-container {
    margin-top: 90px;
}

.directory-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: rgba(244, 244, 240, 0.05);
    border: 1px solid var(--border-light);
    color: var(--text-light);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn:hover {
    background-color: rgba(244, 244, 240, 0.12);
    border-color: var(--accent-light);
}

.filter-btn.active {
    background-color: var(--bg-light);
    color: var(--text-dark);
    border-color: var(--bg-light);
}

.directory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 28px;
}

.church-card {
    background-color: rgba(24, 34, 29, 0.7);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 28px;
    transition: opacity 0.3s ease, transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.church-card:hover {
    border-color: var(--accent-light);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
}

.church-card.hidden {
    display: none !important;
}

.church-card.fade-out {
    opacity: 0;
    transform: scale(0.96);
}

.church-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 16px;
}

.church-card-logo {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.church-card-header h4 {
    font-size: 1.15rem;
    font-weight: 900;
    color: var(--text-light);
}

.network-badge {
    font-size: 0.6rem;
    font-weight: 900;
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: 0.05em;
    display: inline-block;
    margin-bottom: 4px;
}

.network-badge.mishkan {
    background-color: rgba(169, 183, 153, 0.15);
    color: var(--accent-light);
    border: 1px solid rgba(169, 183, 153, 0.3);
}

.network-badge.getsemani {
    background-color: rgba(92, 130, 93, 0.2);
    color: #8bb38c;
    border: 1px solid rgba(92, 130, 93, 0.4);
}

.church-card-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.church-detail {
    display: flex;
    gap: 10px;
    font-size: 0.88rem;
    color: rgba(244, 244, 240, 0.7);
    line-height: 1.4;
}

.church-detail .material-symbols-outlined {
    font-size: 18px;
    color: var(--accent-light);
    flex-shrink: 0;
}

.church-detail strong {
    color: var(--text-light);
    font-weight: 800;
}

.btn-church-web {
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px solid var(--border-light);
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 10px 16px;
    border-radius: 50px;
    background-color: rgba(244, 244, 240, 0.02);
    transition: var(--transition-fast);
}

.btn-church-web:hover {
    background-color: var(--bg-light);
    color: var(--text-dark);
    border-color: var(--bg-light);
}

.btn-church-web .material-symbols-outlined {
    font-size: 16px;
}

/* Radio Live Visualizer Section */
.radio-widget {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--border-dark);
    border-radius: 32px;
    padding: 40px;
    max-width: 580px;
    margin: 40px auto 0 auto;
    box-shadow: 0 30px 60px rgba(18, 26, 22, 0.04);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.player-top {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-bottom: 24px;
}

.player-cover-box {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(18, 26, 22, 0.15);
    background-color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.player-vinyl {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    transition: transform 0.5s ease;
    animation: rotateVinyl 8s linear infinite;
    animation-play-state: paused;
}

.radio-widget.playing .player-vinyl {
    animation-play-state: running;
}

@keyframes rotateVinyl {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.vinyl-center {
    position: absolute;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--bg-light);
    border: 3px solid var(--text-dark);
    z-index: 2;
}

.player-info-container {
    flex: 1;
}

.station-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.badge-live {
    background-color: rgba(92, 130, 93, 0.1);
    color: var(--accent);
    font-size: 0.65rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    border: 1px solid var(--accent);
    display: flex;
    align-items: center;
    gap: 4px;
}

.pulse-icon {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--accent);
    display: inline-block;
    animation: pulse 1.5s ease-in-out infinite;
}

.freq {
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.station-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 2px;
}

.now-playing {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.radio-visualizer-container {
    height: 80px;
    background-color: rgba(18, 26, 22, 0.03);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    margin-bottom: 24px;
    border: 1px solid var(--border-dark);
}

.visualizer-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.player-controls-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.main-play-btn {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
}

.volume-control-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: rgba(18, 26, 22, 0.03);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid var(--border-dark);
    flex: 1;
    max-width: 320px;
}

.vol-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    color: var(--text-dark);
}

.volume-slider {
    flex: 1;
    -webkit-appearance: none;
    appearance: none;
    height: 4px;
    border-radius: 2px;
    background: rgba(18, 26, 22, 0.1);
    outline: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent);
    cursor: pointer;
    transition: transform var(--transition-fast);
}

.volume-slider::-webkit-slider-thumb:hover {
    transform: scale(1.25);
}

.player-schedule-accordion {
    border-top: 1px solid var(--border-dark);
    padding-top: 20px;
}

.schedule-toggle-btn {
    background: none;
    border: none;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 0;
}

.dropdown-icon-symbol {
    font-size: 20px !important;
    transition: transform 0.3s ease;
}

.schedule-toggle-btn.open .dropdown-icon-symbol {
    transform: rotate(180deg);
}

.schedule-content {
    margin-top: 16px;
    animation: fadeIn 0.4s ease;
}

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

.schedule-item {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(18, 26, 22, 0.05);
    padding-bottom: 8px;
}

.schedule-item .time {
    font-weight: 800;
    color: var(--accent);
    white-space: nowrap;
}

.schedule-item .title {
    color: var(--text-muted);
    font-weight: 500;
    text-align: right;
}

/* Contacto y Apoyo Section */
.section-contact {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    margin-top: 40px;
    align-items: start;
}

.contact-form-container {
    background-color: rgba(255, 255, 255, 0.65);
    border: 1px solid var(--border-dark);
    border-radius: 28px;
    padding: 40px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.contact-card-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 24px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid var(--border-dark);
    background-color: rgba(255, 255, 255, 0.5);
    outline: none;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(92, 130, 93, 0.08);
}

.btn-block {
    display: flex;
    width: 100%;
    justify-content: center;
}

.form-feedback {
    font-size: 0.88rem;
    font-weight: 700;
    padding: 12px 18px;
    border-radius: 12px;
}

.form-feedback.success {
    background-color: rgba(92, 130, 93, 0.1);
    color: var(--accent);
    border: 1px solid rgba(92, 130, 93, 0.2);
}

.side-info-giving {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.info-card {
    padding: 32px;
}

.info-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background-color: rgba(92, 130, 93, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.info-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.giving-title {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.giving-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.giving-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Instagram / Social Feed */
.section-social {
    padding: 100px 0 140px 0;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.social-img-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 280px;
    border: 1px solid var(--border-dark);
    cursor: pointer;
}

.social-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-hover-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(18, 26, 22, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--text-light);
    opacity: 0;
    transition: opacity var(--transition-fast);
    z-index: 5;
}

.social-img-card:hover img {
    transform: scale(1.05);
}

.social-img-card:hover .social-hover-overlay {
    opacity: 1;
}

.social-hover-overlay .material-symbols-outlined {
    font-size: 28px;
}

.social-hover-overlay span {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Floating Persistent Radio Player Widget */
.radio-floating-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background-color: rgba(244, 244, 240, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-dark);
    box-shadow: 0 16px 40px rgba(18, 26, 22, 0.08);
    border-radius: 50px;
    padding: 10px 14px 10px 20px;
    display: flex;
    align-items: center;
    gap: 24px;
    z-index: 999;
    animation: slideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    max-width: 480px;
}

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

.floating-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.floating-radio-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 50%;
    animation: rotateVinyl 10s linear infinite;
    animation-play-state: paused;
}

.radio-floating-widget.playing .floating-radio-icon {
    animation-play-state: running;
}

.floating-station-title {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.floating-live-box {
    display: flex;
    align-items: center;
    gap: 4px;
    background-color: rgba(92, 130, 93, 0.1);
    border: 1.5px solid var(--accent);
    padding: 2px 8px;
    border-radius: 50px;
    scale: 0.88;
}

.floating-live-ring {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--accent);
    display: inline-block;
    animation: pulse 1.5s infinite;
}

.floating-live-text {
    font-size: 0.55rem;
    font-weight: 900;
    color: var(--accent);
}

.mini-equalizer {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 16px;
    width: 24px;
}

.eq-bar {
    width: 2px;
    background-color: var(--accent);
    border-radius: 1px;
    height: 2px;
    transition: height 0.1s ease;
}

.mini-equalizer.active .bar-1 { animation: eqAnim 0.6s infinite alternate; }
.mini-equalizer.active .bar-2 { animation: eqAnim 0.8s infinite alternate -0.2s; }
.mini-equalizer.active .bar-3 { animation: eqAnim 0.7s infinite alternate -0.4s; }
.mini-equalizer.active .bar-4 { animation: eqAnim 0.9s infinite alternate -0.1s; }
.mini-equalizer.active .bar-5 { animation: eqAnim 0.5s infinite alternate -0.3s; }

@keyframes eqAnim {
    0% { height: 2px; }
    100% { height: 16px; }
}

.floating-right {
    display: flex;
    align-items: center;
}

.floating-play-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--text-dark);
    color: var(--text-light);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(18, 26, 22, 0.12);
    transition: var(--transition-fast);
}

.floating-play-btn:hover {
    background-color: var(--accent);
}

.floating-play-btn svg {
    width: 14px;
    height: 14px;
}

/* Custom Interactive Cursor Dot & Trail */
.custom-cursor {
    width: 32px;
    height: 32px;
    border: 1.5px solid var(--text-dark);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.custom-cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
}

.custom-cursor.expand {
    width: 64px;
    height: 64px;
    background-color: rgba(92, 130, 93, 0.08);
    border-color: var(--accent);
}

/* Footer Gigi Style */
.footer-gigi {
    background-color: var(--bg-dark);
    color: var(--text-light);
    border-top: 1px solid var(--border-light);
    padding: 80px 0 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 60px;
}

.col-main {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-desc {
    font-size: 0.88rem;
    color: rgba(244, 244, 240, 0.6);
    line-height: 1.6;
    max-width: 320px;
}

.footer-col h4 {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-light);
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(244, 244, 240, 0.7);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 700;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--text-light);
    padding-left: 4px;
}

.footer-links-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links-contact li {
    display: flex;
    gap: 10px;
    font-size: 0.88rem;
    color: rgba(244, 244, 240, 0.7);
    line-height: 1.4;
}

.footer-links-contact li .material-symbols-outlined {
    font-size: 18px;
    color: var(--accent-light);
}

.footer-bottom-row {
    border-top: 1px solid var(--border-light);
    padding: 30px 0;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: rgba(244, 244, 240, 0.4);
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(244, 244, 240, 0.4);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--text-light);
}

/* Custom Pastor Banner and Card Images */
.pastoral-banner-wrapper {
    width: 100%;
    max-height: 450px;
    border-radius: 28px;
    overflow: hidden;
    margin-bottom: 40px;
    border: 1px solid var(--border-dark);
    box-shadow: 0 12px 36px rgba(18, 26, 22, 0.05);
}

.pastoral-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.pastoral-banner-wrapper:hover .pastoral-banner-img {
    transform: scale(1.03);
}

.church-pastor-photo-container {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid var(--border-light);
    background-color: rgba(18, 26, 22, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.church-pastor-img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    transition: transform 0.5s ease;
}

.church-card:hover .church-pastor-img {
    transform: scale(1.05);
}


.featured-leader-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.leader-card.featured-leader {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 36px;
    max-width: 900px;
    width: 100%;
    padding: 36px;
    border-color: rgba(92, 130, 93, 0.3);
    background-color: rgba(255, 255, 255, 0.85);
    box-shadow: 0 16px 48px rgba(18, 26, 22, 0.05);
}

.leader-card.featured-leader:hover {
    border-color: var(--accent);
    box-shadow: 0 20px 48px rgba(92, 130, 93, 0.12);
}

.leader-card.featured-leader .leader-image-wrapper {
    width: 320px;
    height: 420px;
    flex-shrink: 0;
}

.leader-card.featured-leader .leader-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.leader-card.featured-leader .leader-info h3 {
    font-size: 1.6rem;
    margin-bottom: 0;
}

.leader-card.featured-leader .leader-bio {
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.leader-card.featured-leader .leader-socials-container {
    margin-top: 8px;
    border-top: 1px solid var(--border-dark);
    padding-top: 16px;
}

@media (max-width: 768px) {
    .leader-card.featured-leader {
        flex-direction: column;
        align-items: stretch;
        padding: 24px;
        gap: 24px;
    }
    
    .leader-card.featured-leader .leader-image-wrapper {
        width: 100%;
        height: 340px;
    }
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

@media (max-width: 1024px) {
    .hero-title { font-size: 3.2rem; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .carousel-slide { grid-template-columns: 1fr; gap: 24px; }
    .slide-image-wrapper { height: 240px; }
}

@media (max-width: 768px) {
    .menu-toggle { display: block; }
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--bg-light);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        padding: 40px;
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        border-top: 1px solid var(--border-dark);
        z-index: 999;
    }
    
    .nav-links.open {
        transform: translateX(0);
    }
    
    .logo-text-sub { display: none !important; }
    
    .hero-container { grid-template-columns: 1fr; gap: 40px; }
    .hero-text-content { text-align: center; display: flex; flex-direction: column; align-items: center; }
    .hero-cta { justify-content: center; }
    .hero-bullets { justify-content: center; }
    
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    
    .carousel-btn.btn-left { left: 10px; }
    .carousel-btn.btn-right { right: 10px; }
    
    .custom-cursor, .custom-cursor-dot { display: none !important; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.4rem; }
    .section-title { font-size: 2.2rem; }
    .form-row { grid-template-columns: 1fr; }
    .radio-widget { padding: 24px; }
    .player-top { flex-direction: column; text-align: center; }
    .volume-control-box { max-width: 100%; }
}

/* Photo Labels and Multiple Pastors Photo Grid */
.photo-label {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(18, 26, 22, 0.85);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: #F4F4F0;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 6px 10px;
    text-align: center;
    z-index: 10;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.church-pastors-photos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.church-pastors-photos-grid .church-pastor-photo-container {
    margin-bottom: 0;
    height: 140px;
}

/* ==========================================================================
   GALERÍA DE IMPACTO ECLESIAL (MISHKAN & GETSEMANÍ)
   ========================================================================== */
.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.gallery-tab-btn {
    background-color: transparent;
    color: rgba(244, 244, 240, 0.65);
    border: 1px solid rgba(244, 244, 240, 0.15);
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-tab-btn:hover {
    border-color: var(--accent-light);
    color: var(--bg-light);
}

.gallery-tab-btn.active {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(92, 130, 93, 0.3);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    transition: opacity 0.4s ease;
}

.gallery-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 240px;
    cursor: pointer;
    border: 1px solid var(--border-dark);
    background-color: #121A16;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.gallery-card.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    border-color: var(--accent-light);
}

.gallery-img-wrapper {
    width: 100%;
    height: 100%;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card:hover .gallery-img {
    transform: scale(1.06);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(18, 26, 22, 0.9) 0%, rgba(18, 26, 22, 0.4) 70%, transparent 100%);
    padding: 40px 20px 20px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-caption {
    color: var(--text-light);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.gallery-caption .material-symbols-outlined {
    font-size: 1rem;
    color: var(--accent-light);
}

/* ==========================================================================
   LIGHTBOX PREMIUM
   ========================================================================== */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 16, 13, 0.97);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.active {
    display: flex;
    opacity: 1;
}

.lightbox-content-wrapper {
    position: relative;
    max-width: 85%;
    max-height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
    transform: scale(0.97);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-modal.active .lightbox-content {
    transform: scale(1);
}

.lightbox-caption {
    margin-top: 20px;
    color: rgba(244, 244, 240, 0.9);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    background: rgba(18, 26, 22, 0.6);
    padding: 8px 16px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: rgba(244, 244, 240, 0.7);
    font-size: 36px;
    font-weight: 200;
    cursor: pointer;
    z-index: 100001;
    transition: color 0.3s, transform 0.3s;
    user-select: none;
}

.lightbox-close:hover {
    color: var(--accent-light);
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(244, 244, 240, 0.8);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100000;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    outline: none;
}

.lightbox-nav:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--text-light);
    transform: scale(1.05);
}

.lightbox-nav .material-symbols-outlined {
    font-size: 2rem;
}

.lightbox-nav.btn-prev {
    left: 40px;
}

.lightbox-nav.btn-next {
    right: 40px;
}

@media (max-width: 768px) {
    .lightbox-nav {
        width: 45px;
        height: 45px;
    }
    .lightbox-nav.btn-prev {
        left: 15px;
    }
    .lightbox-nav.btn-next {
        right: 15px;
    }
    .lightbox-close {
        top: 20px;
        right: 25px;
        font-size: 32px;
    }
    .gallery-card {
        height: 200px;
    }
    .lightbox-content {
        max-height: 65vh;
    }
}

/* --- SECCIÓN PODCAST DIARIO --- */
.podcast-layout {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.podcast-player-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.podcast-phone-frame {
    width: 320px;
    height: 568px;
    background: #0f1412;
    border: 10px solid #1a221f;
    border-radius: 40px;
    box-shadow: var(--shadow-xl), 0 0 30px rgba(44, 94, 67, 0.15);
    position: relative;
    overflow: hidden;
}

/* Teléfono Notch */
.podcast-phone-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 18px;
    background: #1a221f;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    z-index: 10;
}

.podcast-phone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    position: relative;
}

.podcast-phone-screen iframe {
    width: 100%;
    height: 100%;
    border: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.podcast-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0d1210;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
    transition: opacity 0.3s ease;
}

.podcast-loader .spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(44, 94, 67, 0.1);
    border-radius: 50%;
    border-top-color: var(--accent);
    animation: spin 1s ease-in-out infinite;
}

.podcast-playlist-container {
    background: rgba(26, 34, 31, 0.3);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 30px;
    height: 568px;
    display: flex;
    flex-direction: column;
}

.playlist-heading {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--bg-light);
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.podcast-playlist {
    flex: 1;
    overflow-y: auto;
    padding-right: 8px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Personalizar barra de desplazamiento */
.podcast-playlist::-webkit-scrollbar {
    width: 5px;
}
.podcast-playlist::-webkit-scrollbar-track {
    background: transparent;
}
.podcast-playlist::-webkit-scrollbar-thumb {
    background: rgba(44, 94, 67, 0.3);
    border-radius: 10px;
}

.podcast-item {
    display: flex;
    gap: 15px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 12px;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-align: left;
}

.podcast-item:hover {
    background: rgba(44, 94, 67, 0.1);
    border-color: rgba(44, 94, 67, 0.3);
    transform: translateY(-2px);
}

.podcast-item.active {
    background: rgba(44, 94, 67, 0.2);
    border-color: var(--accent);
    box-shadow: 0 4px 15px rgba(44, 94, 67, 0.2);
}

.podcast-item-thumb {
    width: 70px;
    height: 90px;
    border-radius: 8px;
    object-fit: cover;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.podcast-item-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.podcast-item-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--bg-light);
    margin-bottom: 5px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.podcast-item-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.podcast-error {
    color: #e74c3c;
    font-size: 0.9rem;
    text-align: center;
    margin-top: 20px;
}

/* Responsividad */
@media (max-width: 992px) {
    .podcast-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .podcast-playlist-container {
        height: 400px;
    }
}