:root {
    --primary-blue: #000080;
    --primary-blue-light: #1a1a9e;
    --primary-blue-dark: #000060;
    --primary-red: #CC0000;
    --primary-red-dark: #990000;
    --bg-white: #FFFFFF;
    --bg-light: #F0F4F8;
    --bg-card: #F6F7F8;
    --text-primary: #1A1A1A;
    --text-secondary: #6B7280;
    --text-muted: #9CA3AF;
    --whatsapp-green: #25D366;
    --border-color: #E5E7EB;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

[data-theme="dark"] {
    --primary-blue: #1a1a9e;
    --primary-blue-light: #2a2ab0;
    --primary-blue-dark: #000080;
    --bg-white: #1A1A2E;
    --bg-light: #16213E;
    --bg-card: #1F2937;
    --text-primary: #F0F0F0;
    --text-secondary: #A0A0B0;
    --text-muted: #6B7280;
    --border-color: #2D3748;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeSpeed;
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
    transition: background-color var(--transition-normal), color var(--transition-normal);
}

img, video, iframe {
    content-visibility: auto;
}

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

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--primary-blue);
    color: white;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    z-index: 10000;
    font-weight: 600;
    text-decoration: none;
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: 16px;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: var(--bg-white);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    contain: layout style;
    transition: background-color var(--transition-normal), box-shadow var(--transition-normal);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    flex-shrink: 1;
}

.logo-icon {
    width: 42px;
    height: 42px;
    object-fit: contain;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.logo-text {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}

.logo-text-full {
    display: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    flex-shrink: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 500;
    transition: color var(--transition-normal);
    white-space: nowrap;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width var(--transition-normal);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-blue);
}

.theme-toggle {
    background: none;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    color: var(--text-secondary);
    flex-shrink: 0;
}

.theme-toggle:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2.5px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: transform var(--transition-normal), opacity var(--transition-normal);
    transform-origin: center;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}
.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

.hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    contain: layout paint;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slideshow .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    will-change: opacity;
}

.hero-slideshow .slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 128, 0.75) 0%,
        rgba(0, 0, 96, 0.85) 100%
    );
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
    padding: 0 16px;
}

.hero h1 {
    font-size: clamp(28px, 5vw, 56px);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.15;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(16px, 2.5vw, 22px);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 28px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-schedule {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.schedule-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
}

.schedule-item .icon {
    color: rgba(255, 255, 255, 0.9);
}

.icon {
    width: 20px;
    height: 20px;
    color: var(--primary-blue);
}

.icon-small {
    width: 16px;
    height: 16px;
}

.slideshow-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}

.slideshow-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    padding: 0;
}

.slideshow-dot.active {
    background: var(--primary-red);
    transform: scale(1.2);
}

.slideshow-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: background-color var(--transition-normal), transform var(--transition-normal), box-shadow var(--transition-normal);
    min-height: 48px;
    -webkit-tap-highlight-color: transparent;
}

.btn-primary {
    background: var(--primary-red);
    color: var(--bg-white);
}

.btn-primary:hover {
    background: var(--primary-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(204, 0, 0, 0.3);
}

.btn-secondary {
    background: var(--primary-red);
    color: var(--bg-white);
    padding: 10px 20px;
    font-size: 14px;
    border-radius: var(--radius-sm);
}

.btn-secondary:hover {
    background: var(--primary-red-dark);
}

.btn-whatsapp {
    background: var(--whatsapp-green);
    color: var(--bg-white);
    padding: 16px 32px;
    font-size: 16px;
    text-align: center;
    word-break: break-word;
}

.btn-whatsapp:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
}

.btn-donate {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
    color: white;
    padding: 16px 40px;
    font-size: 18px;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(204, 0, 0, 0.3);
}

.btn-donate:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(204, 0, 0, 0.4);
}

.section {
    padding: 64px 0;
    contain: layout style;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.section-header::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-red);
    margin: 16px auto 0;
    border-radius: 2px;
}

.section-header h2 {
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.section-header p {
    font-size: clamp(15px, 2vw, 18px);
    color: var(--text-secondary);
}

.section-header.light h2,
.section-header.light p {
    color: var(--bg-white);
}

.section-header.light::after {
    background: rgba(255, 255, 255, 0.5);
}

.section-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    color: var(--primary-blue);
}

[data-theme="dark"] .section-icon {
    color: var(--primary-blue-light);
}

.daily-verse {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    position: relative;
    overflow: hidden;
}

.daily-verse::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    pointer-events: none;
}

.daily-verse::after {
    content: '✝';
    position: absolute;
    bottom: 20px;
    left: 30px;
    font-size: 120px;
    color: rgba(255, 255, 255, 0.03);
    pointer-events: none;
}

.verse-card {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    animation: verseFadeIn 1s ease-out;
    position: relative;
}

.verse-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    color: rgba(255, 255, 255, 0.6);
}

.verse-icon svg {
    width: 100%;
    height: 100%;
}

.verse-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 24px;
}

.verse-text {
    font-size: clamp(17px, 2.5vw, 22px);
    line-height: 1.8;
    color: var(--bg-white);
    font-style: italic;
    font-weight: 400;
    margin: 0 0 20px;
    border: none;
    padding: 0;
    quotes: "\201C" "\201D";
}

.verse-text::before {
    content: open-quote;
    font-size: 40px;
    line-height: 0;
    vertical-align: -14px;
    color: rgba(255, 255, 255, 0.3);
    margin-right: 4px;
}

.verse-text::after {
    content: close-quote;
    font-size: 40px;
    line-height: 0;
    vertical-align: -14px;
    color: rgba(255, 255, 255, 0.3);
    margin-left: 4px;
}

.verse-reference {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    font-style: normal;
    display: block;
    margin-bottom: 20px;
}

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

.verse-share-btn {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all var(--transition-fast);
}

.verse-share-btn:hover {
    background: rgba(255, 255, 255, 0.25);
}

.verse-share-btn svg {
    width: 16px;
    height: 16px;
}

.verse-text.loading {
    opacity: 0.5;
    font-style: normal;
}

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

.campamento {
    background: #FFF5ED;
}

[data-theme="dark"] .campamento {
    background: #1a1510;
}

.campamento-header {
    margin-bottom: 40px;
}

.section-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #E8751A;
    margin-bottom: 8px;
}

.campamento-header h2 {
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 800;
    color: var(--text-primary);
    font-style: italic;
}

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

.stat-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.stat-number {
    display: block;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: #E8751A;
    line-height: 1.2;
    margin-bottom: 6px;
}

.stat-label {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.camp-gallery {
    margin-bottom: 48px;
}

.camp-gallery-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 24px;
}

.camp-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.camp-gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #e5e7eb;
}

.camp-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.camp-gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-normal), visibility var(--transition-normal);
    cursor: zoom-out;
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.gallery-lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
    cursor: default;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 28px;
    font-size: 40px;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
    opacity: 0.8;
    transition: opacity var(--transition-fast);
    z-index: 10000;
}

.lightbox-close:hover {
    opacity: 1;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 48px;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    cursor: pointer;
    padding: 12px 18px;
    border-radius: 50%;
    line-height: 1;
    opacity: 0.7;
    transition: opacity var(--transition-fast), background var(--transition-fast);
    z-index: 10000;
}

.lightbox-nav:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

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

.testimonial-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.quote-icon {
    font-size: 48px;
    font-weight: 700;
    color: #E8751A;
    line-height: 1;
    margin-bottom: 12px;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 16px;
}

.author-info h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.author-info span {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.campamento-cta {
    text-align: center;
    margin-top: 40px;
}

.btn-ver-mas {
    display: inline-block;
    padding: 14px 48px;
    font-size: 16px;
    font-weight: 600;
    color: #E8751A;
    background: transparent;
    border: 2px solid #E8751A;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: background-color var(--transition-normal), color var(--transition-normal), transform var(--transition-normal);
}

.btn-ver-mas:hover {
    background: #E8751A;
    color: #fff;
    transform: translateY(-2px);
}

.eventos {
    background: var(--bg-light);
    position: relative;
}

.eventos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5 L30 55 M5 30 L55 30' stroke='%23000080' stroke-width='0.5' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.event-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    border-left: 4px solid var(--primary-red);
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.event-date {
    background: var(--primary-blue);
    color: white;
    padding: 16px 20px;
    text-align: center;
}

.event-date .day {
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
}

.event-date .month {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.event-content {
    padding: 20px;
}

.event-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.event-content p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.event-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    color: var(--text-muted);
}

.event-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    line-height: 1.2;
}

.event-meta svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    stroke-width: 2;
}

.donaciones {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.donaciones::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.donaciones-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.donaciones h2 {
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 700;
    margin-bottom: 16px;
}

.donaciones p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
    line-height: 1.7;
}

.donaciones-options {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.donations-info {
    margin-top: 24px;
    font-size: 14px;
    opacity: 0.8;
}

.newsletter {
    background: var(--bg-white);
    padding: 48px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.newsletter-text h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.newsletter-text p {
    font-size: 15px;
    color: var(--text-secondary);
}

.newsletter-form {
    display: flex;
    gap: 12px;
    flex: 1;
    max-width: 500px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 15px;
    font-family: inherit;
    background: var(--bg-light);
    color: var(--text-primary);
    transition: border-color var(--transition-fast);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.newsletter-form button {
    padding: 14px 28px;
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--transition-fast);
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: var(--primary-blue-dark);
}

.about {
    background: var(--bg-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.about-text h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.mission h3,
.vision h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.mission p,
.vision p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.team h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.team-member {
    background: var(--bg-white);
    padding: 20px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.team-member:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.member-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
    border-radius: 50%;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 24px;
}

.team-member h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.team-member p {
    font-size: 12px;
    color: var(--text-secondary);
}

.predicas {
    background: var(--bg-white);
}

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

.video-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.video-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.youtube-facade {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

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

.facade-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.85;
    transition: opacity var(--transition-fast), transform var(--transition-fast);
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}

.youtube-facade:hover .facade-play-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: 16px;
}

.video-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.video-info p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.video-info .video-date {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 8px;
}

.virtual {
    background: var(--primary-blue);
    color: var(--bg-white);
}

.virtual-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 769px) {
    .virtual-content {
        grid-template-columns: 1fr 320px;
        gap: 32px;
    }
}

.video-player-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.video-player {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 400px;
    background: #000;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.video-player iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.live-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-red);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: var(--bg-white);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.play-button-large {
    width: 80px;
    height: 80px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform var(--transition-normal);
}

.play-button-large:hover {
    transform: scale(1.1);
}

.play-button-large svg {
    width: 32px;
    height: 32px;
    color: var(--bg-white);
    margin-left: 4px;
}

.video-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    flex-wrap: wrap;
    gap: 8px;
}

.viewers {
    display: flex;
    align-items: center;
    gap: 8px;
}

.viewers svg {
    color: var(--bg-white);
}

.prayer-panel {
    background: var(--bg-white);
    padding: 24px;
    border-radius: var(--radius-lg);
    color: var(--text-primary);
}

.prayer-panel h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.prayer-panel > p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.prayer-panel textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 14px;
    resize: vertical;
    margin-bottom: 16px;
    background: var(--bg-light);
    color: var(--text-primary);
}

.prayer-panel input[type="text"],
.prayer-panel input[type="email"] {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 14px;
    margin-bottom: 12px;
    background: var(--bg-light);
    color: var(--text-primary);
}

.prayer-panel input[type="text"]::placeholder,
.prayer-panel input[type="email"]::placeholder {
    color: var(--text-muted);
}

.prayer-panel input[type="text"]:focus,
.prayer-panel input[type="email"]:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.prayer-panel textarea::placeholder {
    color: var(--text-muted);
}

.prayer-panel textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.form-success {
    background: #10B981;
    color: white;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    font-size: 14px;
    display: none;
}

.form-success.visible {
    display: block;
}

.form-error {
    background: var(--primary-red);
    color: white;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    font-size: 14px;
    display: none;
}

.form-error.visible {
    display: block;
}

.cta {
    background: var(--bg-light);
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.cta-content p {
    font-size: clamp(15px, 2vw, 18px);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 32px;
}

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: var(--whatsapp-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    color: white;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    color: var(--text-primary);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-fast);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

.footer {
    background: var(--primary-blue);
    color: var(--bg-white);
    padding: 48px 0 24px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 32px;
}

.footer-brand h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.footer-brand p {
    font-size: 14px;
    opacity: 0.9;
}

.footer-links {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    font-size: 14px;
    margin-bottom: 8px;
    opacity: 0.9;
}

.footer-column a {
    color: var(--bg-white);
    text-decoration: none;
    transition: opacity var(--transition-fast);
}

.footer-column a:hover {
    opacity: 0.7;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 36px;
    height: 36px;
    background: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-normal);
}

.social-icon:hover {
    transform: scale(1.1);
}

.social-icon svg {
    width: 18px;
    height: 18px;
    color: var(--primary-blue);
}

.footer-map {
    margin-top: 32px;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 200px;
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    font-size: 12px;
    opacity: 0.8;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .nav-container {
        padding: 0 24px;
    }

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

    .camp-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }

    .footer-links {
        gap: 32px;
    }

    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .daily-verse {
        padding: 40px 0;
    }

    .verse-card {
        padding: 24px 12px;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 24px;
        gap: 4px;
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
        z-index: 999;
        transform: translateX(100%);
        transition: transform var(--transition-normal);
    }

    .nav-links.active {
        display: flex;
        transform: translateX(0);
    }

    .nav-links a {
        font-size: 17px;
        padding: 14px 0;
        border-bottom: 1px solid var(--border-color);
        display: block;
    }

    .nav-links a::after {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }


    .hero {
        padding: 90px 16px 48px;
        min-height: 100svh;
    }

    .hero-schedule {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .schedule-item {
        font-size: 14px;
    }

    .video-grid,
    .events-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

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

    .camp-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .camp-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .stat-card {
        padding: 20px 16px;
    }

    .section {
        padding: 48px 0;
    }

    .btn {
        padding: 12px 24px;
        font-size: 15px;
    }

    .btn-whatsapp {
        padding: 14px 24px;
        font-size: 15px;
        width: 100%;
        max-width: 400px;
    }

    .btn-whatsapp svg {
        flex-shrink: 0;
    }

    .btn-donate {
        padding: 14px 32px;
        font-size: 16px;
    }

    .prayer-panel {
        max-width: 100%;
    }

    .lightbox-nav {
        font-size: 32px;
        padding: 8px 14px;
    }

    .lightbox-close {
        top: 12px;
        right: 16px;
        font-size: 36px;
    }

    .footer-links {
        flex-direction: column;
        gap: 24px;
    }

    .footer-bottom p {
        font-size: 11px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }

    .whatsapp-tooltip {
        display: none;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 12px;
        max-width: 140px;
    }

    .logo-icon {
        width: 36px;
        height: 36px;
    }

    .hero {
        padding: 80px 12px 40px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 14px;
        width: 100%;
        max-width: 320px;
    }

    .btn-whatsapp {
        padding: 14px 20px;
    }

    .camp-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }

    .camp-gallery-item {
        border-radius: var(--radius-sm);
    }

    .stat-card {
        padding: 16px 12px;
        border-radius: var(--radius-md);
    }

    .testimonial-card {
        padding: 24px 20px;
    }

    .video-player {
        border-radius: var(--radius-md);
    }

    .verse-card {
        padding: 20px 8px;
    }

    .daily-verse::before,
    .daily-verse::after {
        display: none;
    }

    .prayer-panel {
        padding: 20px 16px;
        border-radius: var(--radius-md);
    }

    .prayer-panel h3 {
        font-size: 18px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .team-member {
        padding: 16px 12px;
    }

    .member-avatar {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }

    .footer {
        padding: 36px 0 20px;
    }

    .footer-brand h3 {
        font-size: 16px;
    }

    .donaciones-options {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 360px) {
    .logo-text {
        font-size: 11px;
        max-width: 120px;
    }

    .camp-stats {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .hero-content {
        padding: 0 8px;
    }

    .nav-links a {
        font-size: 16px;
        padding: 12px 0;
    }
}

@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 80px 20px 40px;
    }

    .hero h1 {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .hero-subtitle {
        margin-bottom: 16px;
    }

    .hero-schedule {
        margin-bottom: 20px;
    }
}

@supports (padding: env(safe-area-inset-bottom)) {
    .footer-bottom {
        padding-bottom: calc(16px + env(safe-area-inset-bottom));
    }

    .nav-links {
        padding-bottom: env(safe-area-inset-bottom);
    }

    .whatsapp-float {
        bottom: calc(24px + env(safe-area-inset-bottom));
    }
}

@media (min-width: 1200px) {
    .container {
        padding: 0 40px;
    }

    .nav-container {
        padding: 0 40px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero-slideshow .slide {
        transition: none;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
