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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: white;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1001;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
}

header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 107, 53, 0.3) 20%, 
        rgba(255, 154, 86, 0.4) 50%, 
        rgba(255, 107, 53, 0.3) 80%, 
        transparent 100%);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    position: relative;
    min-height: 60px;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 0 0 auto;
    max-width: 35%;
}

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

.nav-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 0 0 auto;
    gap: 1rem;
}

.processor-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px;
    flex-shrink: 0;
}

.logo {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2d3748;
    white-space: nowrap;
    letter-spacing: -0.3px;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0.25rem;
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #ff6b35, #ff9a56);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #ff6b35;
}

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

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #4a5568;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 107, 53, 0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 1000;
}

.mobile-menu.active {
    display: block;
    animation: slideDown 0.3s ease-out;
}

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

.mobile-nav-links {
    list-style: none;
    padding: 1rem 0;
}

.mobile-nav-links li {
    margin: 0;
}

.mobile-nav-links a {
    display: block;
    padding: 1rem 2rem;
    color: #4a5568;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.mobile-nav-links a:hover {
    background: rgba(255, 107, 53, 0.05);
    color: #ff6b35;
    border-left-color: #ff6b35;
}

.donate-btn {
    background: linear-gradient(45deg, #ff6b35, #ff9a56);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
    border: 2px solid transparent;
    white-space: nowrap;
    flex-shrink: 0;
    cursor: pointer;
    font-family: inherit;
}

.donate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Hero Section */
.hero {
    color: white;
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.hero-countdown {
    max-width: 1000px;
    margin: 3rem auto 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.hero-countdown h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.hero-countdown-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-countdown-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1rem;
    min-width: 100px;
}

.hero-countdown-number {
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
    color: white;
}

.hero-countdown-label {
    font-size: 0.9rem;
    opacity: 0.9;
    color: white;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a"><stop offset="0" stop-color="%23ffffff" stop-opacity=".1"/><stop offset="1" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="180" fill="url(%23a)"/><circle cx="800" cy="300" r="120" fill="url(%23a)"/><circle cx="300" cy="700" r="150" fill="url(%23a)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.1;
}

.hero-quote {
    font-size: 1.6rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    font-weight: 300;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Content Layout */
.hero-content-layout {
    display: grid;
    grid-template-columns: 1fr;
    align-items: flex-start;
    gap: 4rem;
    max-width: 1400px;
    margin: 1rem auto 2rem;
}

.hero-video-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 1rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 350px;
    overflow: hidden;
}

.hero-video-placeholder {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 350px;
    background: url('cdn/share.png') center center / cover no-repeat;
    border-radius: 15px;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.hero-video-placeholder:hover {
    transform: scale(1.05);
}

.hero-video-placeholder .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.hero-video-placeholder:hover .play-icon {
    background: rgba(255, 107, 53, 0.8);
    transform: translate(-50%, -50%) scale(1.1);
}

.hero-content-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    height: 100%;
    justify-content: flex-start;
    align-self: flex-start;
}

.hero-titles {
    text-align: center;
    margin-bottom: 1.5rem;
}

.hero-titles h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.1;
    color: white;
}

.hero-titles .hero-quote {
    font-size: 1.8rem;
    font-style: italic;
    margin-bottom: 1rem;
    opacity: 0.95;
    font-weight: 300;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    color: white;
}

/* Hero Background Slider */
.hero-background-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-color: #ff6b35; /* Fallback color */
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: heroFade 35s infinite;
    transform: scale(1.1); /* Ken Burns effect start */
}

.hero::after { /* Dark overlay for text readability */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, transparent 60%);
    z-index: 1;
}

.hero .container {
    z-index: 2; /* Ensure content is above the overlay */
}

/* Animation timing for 5 images */
.hero-bg-image:nth-child(1) { animation-delay: 0s; }
.hero-bg-image:nth-child(2) { animation-delay: 7s; }
.hero-bg-image:nth-child(3) { animation-delay: 14s; }
.hero-bg-image:nth-child(4) { animation-delay: 21s; }
.hero-bg-image:nth-child(5) { animation-delay: 28s; }

@keyframes heroFade {
    0% { opacity: 0; transform: scale(1.1); }
    10% { opacity: 1; } /* Fade in */
    25% { opacity: 1; transform: scale(1); } /* Hold and zoom out */
    35% { opacity: 0; } /* Fade out */
    100% { opacity: 0; }
}

/* Hero Text adjustments */
.hero-text-content h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
    font-weight: 800;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-text-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
    font-weight: 400;
    font-style: italic;
    opacity: 0.9;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

/* Replace h2 styles with h1 */
.hero-text-content h2 { display: none; }

.hero-content {
    width: 100%;
}

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

/* Progress Section */
.progress-section {
    background: white;
    padding: 4rem 0;
    text-align: center;
}

.progress-container {
    max-width: 800px;
    margin: 0 auto;
}

.progress-bar {
    background: #e2e8f0;
    border-radius: 25px;
    height: 40px;
    overflow: hidden;
    margin: 2rem 0;
    position: relative;
}

.progress-fill {
    background: linear-gradient(45deg, #ff6b35, #ff9a56);
    height: 100%;
    width: 10%;
    border-radius: 25px;
    transition: width 0.5s ease;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
    animation: shimmer 2s infinite;
}

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

.progress-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #ff6b35;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
}

/* Sections */
.section {
    padding: 4rem 0;
}

.section:nth-child(even) {
    background: #f8fafc;
}

.section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2d3748;
}

/* Styles for section-title-with-logo */
.section-title-with-logo {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title-with-logo .chaplin-logo-and-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px; /* Space between logo and text */
    margin-bottom: 1rem;
}

.section-title-with-logo .chaplin-logo {
    max-width: 180px; /* Adjust as needed */
    height: auto;
}

.section-title-with-logo .chaplin-logo-and-text p {
    font-size: 2.2rem; /* Make text prominent */
    font-weight: 600;
    color: #2d3748;
    margin: 0; /* Remove default paragraph margin */
}

.section-title-with-logo h2 {
    font-size: 2.5rem;
    color: #ff6b35; /* Highlight 'Cambalandia' */
    margin-top: 0;
}

@media (max-width: 768px) {
    .section-title-with-logo .chaplin-logo-and-text {
        flex-direction: column; /* Stack logo and text on small screens */
        gap: 5px;
    }
    .section-title-with-logo .chaplin-logo {
        max-width: 120px;
    }
    .section-title-with-logo .chaplin-logo-and-text p {
        font-size: 1.5rem;
    }
    .section-title-with-logo h2 {
        font-size: 2rem;
    }
}




.story-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(45deg, #ff9a56, #ff6b35);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-image-container {
    flex: 0 0 300px;
    margin: 0 2rem;
    position: relative;
}

.timeline-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.timeline-image:hover {
    transform: scale(1.05);
}

.timeline-content-container {
    flex: 1;
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.timeline-content-container:hover {
    border-color: #ff6b35;
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.timeline-content-container::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: #ff6b35;
    border: 4px solid white;
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 0 4px #ff6b35;
}

.timeline-item:nth-child(odd) .timeline-content-container::before {
    right: -42px;
}

.timeline-item:nth-child(even) .timeline-content-container::before {
    left: -42px;
}

.timeline-year {
    color: #ff6b35;
    font-weight: bold;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.timeline-year::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #ff6b35;
    border-radius: 50%;
}

.timeline-content {
    color: #4a5568;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* How to Help Section */
.help-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.help-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.help-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border-color: #ff6b35;
}

.help-card.coming-soon {
    position: relative;
}

.help-card.coming-soon .help-icon,
.help-card.coming-soon h3,
.help-card.coming-soon p,
.help-card.coming-soon .cta-button {
    position: relative;
    z-index: 2;
}

.help-card.coming-soon .cta-button {
    opacity: 0.7;
    cursor: not-allowed;
}

.help-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ff9a56, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.help-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.help-card p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #ff9a56, #ff6b35);
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 154, 86, 0.3);
}

.cta-button.secondary {
    background: linear-gradient(45deg, #2b9cb8, #1e7a8c);
}

.cta-button.secondary:hover {
    box-shadow: 0 10px 20px rgba(43, 156, 184, 0.3);
}

/* Help Section Background */
#ayudar {
    background: linear-gradient(135deg, rgba(255, 154, 86, 0.08) 0%, rgba(255, 107, 53, 0.05) 100%), url('cdn/20170225_090722.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

#ayudar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.92);
    z-index: 1;
}

#ayudar .container {
    position: relative;
    z-index: 2;
}

/* Implant Info */
.implant-info {
    background: linear-gradient(135deg, #ff9a56 0%, #ff6b35 100%);
    color: white;
    border-radius: 20px;
    padding: 3rem;
    margin: 2rem 0;
}

.implant-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.implant-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.implant-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

/* Contact Section */
.contact {
    background: #2d3748;
    color: white;
    text-align: center;
    padding: 4rem 0;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    color: white;
    transition: all 0.3s;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Wittgenstein Quote */
.philosophy-quote {
    background: #f8fafc;
    padding: 3rem;
    text-align: center;
    font-style: italic;
    font-size: 1.2rem;
    color: #4a5568;
    border-left: 5px solid #ff6b35;
    margin: 2rem 0;
}

.quote-author {
    margin-top: 1rem;
    font-weight: bold;
    color: #ff6b35;
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-links {
        gap: 1.5rem;
    }
    
    .nav-links a {
        font-size: 0.85rem;
    }
    
    .logo {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 0.5rem 0;
        min-height: 50px;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-left {
        gap: 0.75rem;
        max-width: 50%;
    }
    
    .nav-center {
        display: none;
    }
    
    .nav-right {
        gap: 0.75rem;
    }
    
    .logo {
        font-size: 0.95rem;
    }
    
    .processor-icon {
        width: 28px;
        height: 28px;
    }
    
    .donate-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .mobile-menu-toggle {
        padding: 0.4rem;
        font-size: 1.3rem;
    }
    
    .help-options {
        grid-template-columns: 1fr;
    }
    
    /* Timeline Mobile Styles */
    .story-timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        margin-left: 60px;
        margin-bottom: 3rem;
    }
    
    .timeline-image-container {
        flex: none;
        width: 100%;
        max-width: 250px;
        margin: 0 0 1rem 0;
    }
    
    .timeline-image {
        height: 200px;
    }
    
    .timeline-content-container {
        width: 100%;
    }
    
    .timeline-item:nth-child(odd) .timeline-content-container::before,
    .timeline-item:nth-child(even) .timeline-content-container::before {
        left: -42px;
        top: 20px;
    }
    
    .timeline-year {
        font-size: 1.2rem;
    }
    
    .timeline-content {
        font-size: 1rem;
    }
}

/* Event Banner Styles */
.event-banner {
    background: linear-gradient(90deg, #ff6b35 0%, #ff9a56 100%);
    color: white;
    padding: 1.5rem 0;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    z-index: 999; /* Below header, above other content */
}

.event-banner .banner-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.event-banner p {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.3;
}

.event-banner p strong {
    font-weight: 700;
}

.event-banner .cta-button.small-button {
    padding: 0.7rem 1.5rem;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 25px;
    color: white;
    transition: all 0.3s ease;
}

.event-banner .cta-button.small-button:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: white;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Event Details Section */
#evento {
    background: #f8fafc;
}

.event-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.event-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.event-image {
    width: 100%;
    height: 350px; /* Ampliado para mejor apreciación */
    object-fit: cover;
}

.event-info-text {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.event-info-text h3 {
    font-size: 1.8rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.event-info-text p {
    color: #4a5568;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.event-meta {
    margin-bottom: 2rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #4a5568;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.meta-item i {
    color: #ff6b35;
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
}

.event-info-text .cta-button {
    align-self: flex-start;
}

.map-container {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.map-container iframe {

    width: 100%;

    height: 100%;

    border: none;

}



/* Scroll Down Arrow */

.scroll-down-arrow {

    position: absolute;

    bottom: 30px;

    left: 50%;

    transform: translateX(-50%);

    color: white;

    font-size: 2rem;

    z-index: 5;

    animation: bounce 2s infinite;

    transition: opacity 0.3s;

}



.scroll-down-arrow:hover {

    opacity: 0.8;

}



@keyframes bounce {

    0%, 20%, 50%, 80%, 100% {

        transform: translateX(-50%) translateY(0);

    }

    40% {

        transform: translateX(-50%) translateY(-20px);

    }

    60% {

        transform: translateX(-50%) translateY(-10px);

    }

}





@media (max-width: 768px) {

    .event-banner .banner-container {

        flex-direction: column;

        gap: 1rem;

    }
    .event-banner p {
        font-size: 1.1rem;
    }
    .event-banner .cta-button.small-button {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

/* Floating Action Button */
.fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    transition: all 0.3s;
    z-index: 1000;
}

.fab:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

/* Donation Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease-out;
}

.modal-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.donation-modal {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #999;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-header h2 {
    color: #ff6b35;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.modal-header p {
    color: #666;
    font-size: 1rem;
}

.donation-content {
    text-align: center;
}

.qr-code {
    display: block;
    margin: 1.5rem auto;
    max-width: 320px;
    width: 90%;
    height: auto;
    aspect-ratio: 1;
    border-radius: 15px;
    transition: transform 0.3s ease;
    object-fit: contain;
    cursor: pointer;
}

.qr-code:hover {
    transform: scale(1.03);
}

.qr-placeholder {
    max-width: 100%;
    width: 100%;
    max-height: 300px;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #ff9a56, #ff6b35);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 auto 1rem;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.qr-placeholder:hover {
    transform: scale(1.02);
}

.qr-instructions {
    color: #333;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.coming-soon {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    border-radius: 15px;
    padding: 2rem;
    margin: 1.5rem 0;
    border-left: 4px solid #2196f3;
}

.coming-soon h3 {
    color: #1976d2;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.coming-soon p {
    color: #555;
    margin-bottom: 1rem;
}

.thank-you-section {
    background: rgba(255, 154, 86, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 2rem;
    border: 1px solid rgba(255, 154, 86, 0.3);
}

.thank-you-section h3 {
    color: #ff6b35;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.whatsapp-contact {
    background: #25d366;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.whatsapp-contact i {
    margin-right: 0.5rem;
}

.bolivia-header {
    text-align: center;
    margin-bottom: 1rem;
}

.bolivia-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.share-section {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    border: 1px solid rgba(255, 154, 86, 0.2);
}

.share-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.share-btn {
    background: linear-gradient(45deg, #ff9a56, #ff6b35);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 154, 86, 0.3);
}

.share-btn.secondary {
    background: linear-gradient(45deg, #6c757d, #495057);
}

.share-btn.secondary:hover {
    box-shadow: 0 5px 15px rgba(108, 117, 125, 0.3);
}

/* Share Modal specific styles */
.share-image-container img {
    transition: transform 0.3s ease;
    max-height: 300px;
}

.share-image-container img:hover {
    transform: scale(1.02);
}

/* Social media button colors */
.cta-button[style*="background: #25d366"]:hover {
    background: #20b358 !important;
}

.cta-button[style*="background: #4267b2"]:hover {
    background: #365899 !important;
}

.cta-button[style*="background: #1da1f2"]:hover {
    background: #0d8bd9 !important;
}

.cta-button[style*="background: #e4405f"]:hover {
    background: #c13584 !important;
}

.cta-button[style*="background: #000000"]:hover {
    background: #333333 !important;
}

/* Mobile responsiveness for modal */
@media (max-width: 768px) {
    .donation-modal {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .qr-placeholder,
    .qr-code {
        max-width: 100%;
        width: 100%;
        height: auto;
        max-height: 250px;
        aspect-ratio: 1;
        margin-left: auto;
        margin-right: auto;
        object-fit: contain;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    
    .qr-placeholder {
        font-size: 1rem;
    }
    
    .bolivia-header h3 {
        font-size: 1rem;
    }
    
    .share-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .share-btn {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
}

/* Footer */
footer {
    background: #2d3748;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 2rem;
}

footer p {
    margin: 0;
    font-size: 1rem;
    opacity: 0.8;
}

/* Lightbox Modal Styles */
.lightbox-overlay {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
}

.lightbox-overlay.active {
    display: flex;
    animation: fadeIn 0.3s;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80%;
    animation: slideUp 0.4s;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: #bbb;
    text-decoration: none;
}

.lightbox-download-btn {
    display: block;
    width: 200px;
    margin: 20px auto;
    padding: 12px 20px;
    background: #ff6b35;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.lightbox-download-btn:hover {
    background-color: #ff9a56;
}