/* === SECCIÓN CINE DE EVENTOS === */
.events-cinema-section {
    background: linear-gradient(135deg, #0a1929 0%, #0f2b4d 50%, #1a3a5c 100%);
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
}

/* Partículas flotantes */
.cinema-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    background: #FFD700;
    border-radius: 50%;
    opacity: 0.3;
    animation: floatParticle 20s infinite linear;
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) translateX(0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.5;
        transform: translateY(90vh) translateX(20px) scale(1);
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100px) translateX(-20px) scale(0);
        opacity: 0;
    }
}

/* Rayos de luz */
.cinema-light-rays {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    animation: lightPulse 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

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

/* Header */
.events-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.events-tag {
    display: inline-block;
    background: rgba(255, 215, 0, 0.15);
    color: #FFD700;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}




.events-title {
    font-size: 3.5rem;
    color: #fff;
    margin: 0 0 15px 0;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    background: linear-gradient(135deg, #FFD700 0%, #fff 50%, #FFD700 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s linear infinite;
}

@keyframes shine {
    to { background-position: 200% center; }
}

.events-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.title-decoration {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
    margin: 25px auto 0;
}

/* Carrusel Container */
.events-carousel-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 80px;
    z-index: 2;
}

.events-carousel-track {
    position: relative;
    height: 750px;
    perspective: 1500px;
}

/* Slide */
.event-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(150px) rotateY(-25deg) scale(0.8);
    transition: all 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
    filter: blur(5px);
}

.event-slide.active {
    opacity: 1;
    transform: translateX(0) rotateY(0) scale(1);
    pointer-events: all;
    z-index: 10;
    filter: blur(0);
}

/* Flyer */
.event-flyer.featured {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 30px 80px rgba(0,0,0,0.5),
        0 0 0 1px rgba(255, 215, 0, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Ken Burns Layer */
.ken-burns-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* === EFECTO DE SCROLL VERTICAL EN IMÁGENES === */
.flyer-poster-img,
.flyer-image-static {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: verticalScroll 15s ease-in-out infinite alternate;
}

@keyframes verticalScroll {
    0% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-15%) scale(1.05);
    }
    100% {
        transform: translateY(-30%) scale(1.1);
    }
}

/* Video del cóndor - movimiento más suave */
.flyer-video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: videoVerticalScroll 20s ease-in-out infinite alternate;
}

@keyframes videoVerticalScroll {
    0% {
        transform: translateY(-5%) scale(1);
    }
    50% {
        transform: translateY(0) scale(1.02);
    }
    100% {
        transform: translateY(5%) scale(1);
    }
}

/* Media */
.flyer-media {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.poster-media {
    height: 450px;
}

.flyer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(10, 25, 41, 0.1) 0%,
        rgba(10, 25, 41, 0.4) 50%,
        rgba(10, 25, 41, 0.95) 100%
    );
    z-index: 2;
}

/* Scanline */
.flyer-scanline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(255, 215, 0, 0.1) 50%,
        transparent 100%
    );
    animation: scanline 4s linear infinite;
    pointer-events: none;
    z-index: 3;
}

@keyframes scanline {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

/* Light Sweep */
.light-sweep {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 215, 0, 0.3) 50%,
        transparent 100%
    );
    animation: lightSweep 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 4;
}

@keyframes lightSweep {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Badges flotantes */
.poster-badges-container {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    z-index: 5;
}

.poster-badge {
    background: rgba(255, 215, 0, 0.95);
    color: #0f2b4d;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Esquinas decorativas */
.corner-decoration {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 3px solid #FFD700;
    z-index: 5;
    opacity: 0.7;
}

.corner-decoration.top-left {
    top: 20px;
    left: 20px;
    border-right: none;
    border-bottom: none;
}

.corner-decoration.top-right {
    top: 20px;
    right: 20px;
    border-left: none;
    border-bottom: none;
}

.corner-decoration.bottom-left {
    bottom: 20px;
    left: 20px;
    border-right: none;
    border-top: none;
}

.corner-decoration.bottom-right {
    bottom: 20px;
    right: 20px;
    border-left: none;
    border-top: none;
}

/* Body */
.flyer-body {
    padding: 40px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #fff 0%, #f8f9fa 100%);
    position: relative;
}

.poster-body {
    background: linear-gradient(180deg, #0f2b4d 0%, #1a3a5c 100%);
}

/* Badge */
.flyer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    align-self: flex-start;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.flyer-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.flyer-badge.comercio { background: linear-gradient(135deg, #3498db, #2980b9); color: #fff; }
.flyer-badge.cultura { background: linear-gradient(135deg, #e74c3c, #c0392b); color: #fff; }
.flyer-badge.deporte { background: linear-gradient(135deg, #27ae60, #229954); color: #fff; }

.badge-icon {
    font-size: 1.1rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

/* Heading */
.flyer-heading {
    font-size: 2.3rem;
    color: #0f2b4d;
    margin: 0 0 25px 0;
    font-weight: 800;
    line-height: 1.2;
}

.poster-heading {
    color: #FFD700 !important;
    font-size: 1.8rem !important;
    margin-bottom: 20px !important;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

/* Artists Marquee */
.poster-artists {
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 4px solid #FFD700;
}

.artists-label {
    color: #FFD700;
    font-weight: 700;
    font-size: 0.95rem;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.artists-marquee {
    overflow: hidden;
    position: relative;
    height: 30px;
}

.marquee-content {
    display: flex;
    gap: 15px;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
    color: #fff;
    font-size: 0.95rem;
}

.marquee-content span {
    color: #FFD700;
    font-weight: 600;
}

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

/* Meta */
.flyer-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(15, 43, 77, 0.05);
    border-radius: 12px;
    border-left: 4px solid #FFD700;
}

.poster-meta {
    background: rgba(255, 215, 0, 0.1) !important;
    border-left-color: #FFD700 !important;
}

.meta-item {
    color: #555;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.poster-meta .meta-item {
    color: #fff !important;
}

.meta-item .icon {
    font-size: 1.2rem;
}

/* Text */
.flyer-text {
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
    flex-grow: 1;
    font-size: 1.05rem;
}

/* Footer */
.flyer-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding-top: 25px;
    border-top: 2px solid #f0f0f0;
}

.poster-footer {
    border-top-color: rgba(255, 215, 0, 0.3) !important;
}

/* Botones */
.btn-flyer.primary {
    padding: 16px 35px;
    background: linear-gradient(135deg, #FFD700 0%, #ffc400 100%);
    color: #0f2b4d;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-flyer.primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    transition: left 0.6s;
}

.btn-flyer.primary:hover::before {
    left: 100%;
}

.btn-flyer.primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.6);
}

.btn-arrow {
    transition: transform 0.3s;
}

.btn-flyer.primary:hover .btn-arrow {
    transform: translateX(5px);
}

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
    }
    50% {
        box-shadow: 0 8px 30px rgba(255, 215, 0, 0.8);
    }
}

.btn-flyer.secondary {
    padding: 16px 30px;
    background: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-flyer.secondary:hover {
    background: #FFD700;
    color: #0f2b4d;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

/* Status */
.flyer-status {
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.flyer-status.free { background: #d4edda; color: #155724; border: 2px solid #28a745; }
.flyer-status.open { background: #d1ecf1; color: #0c5460; border: 2px solid #17a2b8; }
.flyer-status.limited { background: #fff3cd; color: #856404; border: 2px solid #ffc107; }

/* Controles */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 215, 0, 0.95);
    color: #0f2b4d;
    border: none;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.carousel-control:hover {
    background: #FFD700;
    transform: translateY(-50%) scale(1.15) rotate(5deg);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
}

.carousel-control.prev { left: 0; }
.carousel-control.next { right: 0; }

/* Barra de progreso */
.progress-bar-container {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin-top: 30px;
    overflow: hidden;
    position: relative;
    z-index: 20;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #FFD700, #ffc400);
    width: 0%;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
    transition: width 0.1s linear;
}

/* Indicadores */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
    position: relative;
    z-index: 20;
}

.indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 2px solid transparent;
}

.indicator.active {
    background: #FFD700;
    width: 45px;
    border-radius: 7px;
    border-color: #fff;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.indicator:hover {
    background: rgba(255, 215, 0, 0.7);
    transform: scale(1.2);
}

/* Autoplay Toggle */
.autoplay-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.15);
    color: #FFD700;
    border: 2px solid rgba(255, 215, 0, 0.4);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.autoplay-toggle:hover {
    background: rgba(255, 215, 0, 0.3);
    transform: scale(1.1);
    border-color: #FFD700;
}

.autoplay-toggle.paused {
    background: rgba(255, 255, 255, 0.05);
    opacity: 0.7;
}

/* CTA */
.events-cta {
    text-align: center;
    margin-top: 70px;
    position: relative;
    z-index: 2;
}

.btn-view-all-events {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 50px;
    background: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-view-all-events::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #FFD700;
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-view-all-events:hover::before {
    left: 0;
}

.btn-view-all-events:hover {
    color: #0f2b4d;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
}

/* ANIMACIONES DE ENTRADA */
.animate-fade-in {
    animation: fadeIn 0.8s ease both;
}

.animate-fade-in-delay {
    animation: fadeIn 0.8s ease 0.3s both;
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease both;
}

.animate-slide-in-left {
    animation: slideInLeft 0.8s ease both;
}

.animate-bounce-in {
    animation: bounceIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) both;
}

.animate-expand {
    animation: expandWidth 1.5s ease 0.5s both;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

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

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounceIn {
    from {
        opacity: 0;
        transform: scale(0.3);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes expandWidth {
    from { width: 0; }
    to { width: 100px; }
}

/* Responsive */
@media (max-width: 768px) {
    .events-cinema-section { padding: 70px 15px; }
    .events-title { font-size: 2rem; letter-spacing: 2px; }
    .events-carousel-container { padding: 0 50px; }
    .events-carousel-track { height: auto; min-height: 800px; }
    .flyer-media { height: 300px; }
    .poster-media { height: 350px; }
    .flyer-body { padding: 25px; }
    .poster-body { padding: 25px 20px; }
    .flyer-heading { font-size: 1.6rem; }
    .poster-heading { font-size: 1.4rem !important; }
    .carousel-control { width: 45px; height: 45px; }
    .flyer-footer { flex-direction: column; align-items: stretch; }
    .btn-flyer.primary, .btn-flyer.secondary { width: 100%; justify-content: center; }
    .autoplay-toggle { width: 40px; height: 40px; top: 10px; right: 10px; }
    .poster-badges-container { flex-direction: column; }
    .poster-badge { font-size: 0.75rem; padding: 8px 15px; }
}


/* ============================================
   SECCIÓN FESTIVAL TRICOLOR ECUATORIANO
   ============================================ */

.festival-tricolor-section {
    position: relative;
    padding: 80px 20px 60px;
    background:  linear-gradient(
            180deg,
            #001f54 0%,
            #003b88 40%,
            #002147 100%
        );
    overflow: hidden;
    min-height: 100vh;
}

/* Fondo con bandas tricolor */
.festival-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.color-band {
    position: absolute;
    width: 100%;
    height: 33.33%;
    opacity: 0.08;
}

.band-red {
    top: 0;
    background: linear-gradient(90deg, #e74c3c, #c0392b);
    animation: bandShift 8s ease-in-out infinite;
}

.band-yellow {
    top: 33.33%;
    background: linear-gradient(90deg, #f1c40f, #f39c12);
    animation: bandShift 8s ease-in-out infinite 2s;
}

.band-blue {
    top: 66.66%;
    background: linear-gradient(90deg, #3498db, #2980b9);
    animation: bandShift 8s ease-in-out infinite 4s;
}

@keyframes bandShift {
    0%, 100% { transform: translateX(-5%); }
    50% { transform: translateX(5%); }
}

.festival-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.festival-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Organizador */
.festival-organizer {
    text-align: center;
    margin-bottom: 30px;
}

.org-label {
    display: block;
    color: rgba(255,255,255,0.6);
    font-size: 0.75rem;
    letter-spacing: 3px;
    margin-bottom: 8px;
}

.org-logo {
    display: inline-block;
    margin-bottom: 8px;
}

.org-logo-img {
    height: 50px;
    filter: brightness(0) invert(1);
}

.org-name {
    display: block;
    color: #FFD700;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

/* Banner de Fecha */
.festival-date-banner {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px 40px;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.9), rgba(192, 57, 43, 0.9));
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(231, 76, 60, 0.4);
    display: inline-flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    border: 2px solid rgba(255,255,255,0.2);
}

.date-day {
    color: #fff;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 3px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.date-time {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
}
/* Título Principal - Efecto 3D Superpuesto */
.festival-main-title {
    text-align: center;
    margin: 50px 0 60px;
    perspective: 1000px;
}

.title-sub {
  font-family: 'Dancing Script', cursive !important;
    font-weight: 700;
    font-size: 2.5rem;
    color: #FFD700;
    text-shadow: 
        0 3px 15px rgba(255, 215, 0, 0.6),
        0 0 30px rgba(255, 215, 0, 0.3);
    margin-bottom: -10px;
    transform: rotate(-5deg);
    display: inline-block;
    animation: subtitleFloat 3s ease-in-out infinite;
}

@keyframes subtitleFloat {
    0%, 100% { transform: rotate(-5deg) translateY(0); }
    50% { transform: rotate(-3deg) translateY(-5px); }
}

.title-tricolor {
    font-size: 7rem;
    font-weight: 900;
    margin: 0;
    letter-spacing: 10px;
    line-height: 1;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

/* Cada letra 3D - CLASE ÚNICA */
.tri-letter {
    display: inline-block;
    position: relative;
    animation: letterPop 2.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
    animation-delay: var(--delay);
    transform-style: preserve-3d;
    cursor: default;
    transition: transform 0.3s ease;
    color: var(--color);
    text-shadow:
        0 0 20px rgba(255, 215, 0, 0.5),
        1px 1px 0 var(--shadow1),
        2px 2px 0 var(--shadow1),
        3px 3px 0 var(--shadow2),
        4px 4px 0 var(--shadow2),
        5px 5px 5px rgba(0, 0, 0, 0.5);
}

.tri-letter:hover {
    transform: scale(1.2) rotateY(15deg) !important;
    z-index: 10;
}

/* Animación de pop con rebote */
@keyframes letterPop {
    0%, 100% {
        transform: translateY(0) scale(1) rotateX(0deg);
    }
    25% {
        transform: translateY(-15px) scale(1.1) rotateX(10deg);
    }
    50% {
        transform: translateY(0) scale(1) rotateX(0deg);
    }
    75% {
        transform: translateY(-5px) scale(1.05) rotateX(5deg);
    }
}

/* Efecto de brillo que recorre las letras */
.tri-letter::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    animation: shimmer 3s infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.title-country {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 10px;
    margin-top: 20px;
    text-shadow: 
        0 3px 15px rgba(255,255,255,0.4),
        0 0 30px rgba(255, 215, 0, 0.3);
    animation: countryGlow 2s ease-in-out infinite;
}

@keyframes countryGlow {
    0%, 100% {
        text-shadow: 
            0 3px 15px rgba(255,255,255,0.4),
            0 0 30px rgba(255, 215, 0, 0.3);
    }
    50% {
        text-shadow: 
            0 3px 15px rgba(255,255,255,0.6),
            0 0 40px rgba(255, 215, 0, 0.6),
            0 0 60px rgba(255, 215, 0, 0.3);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .title-tricolor {
        font-size: 3.5rem;
        letter-spacing: 5px;
    }
    
    .title-sub {
        font-size: 1.8rem;
    }
    
    .title-country {
        font-size: 1.3rem;
        letter-spacing: 5px;
    }
}



/* Sección de Artistas */
.festival-artists-section {
    margin: 50px 0;
    padding: 30px 0;
}

.artists-section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.header-line {
    flex: 1;
    max-width: 150px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
}

.header-text {
    color: #FFD700;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 3px;
}

.artists-carousel-track {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.artists-carousel-items {
    display: flex;
    gap: 30px;
    animation: scrollArtists 35s linear infinite;
    width: max-content;
}

.artists-carousel-track:hover .artists-carousel-items {
    animation-play-state: paused;
}

@keyframes scrollArtists {
    0% { transform: translateX(0); }
    100% { transform: translateX(-80%); }
}
.artist-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    min-width: 130px;
    transition: transform 0.3s ease;
}

.artist-card:hover {
    transform: translateY(-8px);
}

.artist-photo {
    height: 110px;
    max-width: 150px;
    min-width: 90px;
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid #FFD700;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #e74c3c, #f39c12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.artist-photo img {
    height: 100%;
    width: auto;
    max-width: none;
    object-fit: cover;
    object-position: center;
}

.artist-card:hover .artist-photo {
    border-color: #fff;
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.7);
    transform: scale(1.05);
}

.artist-initials {
    color: #fff;
    font-size: 2rem;
    font-weight: 900;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
    white-space: nowrap;
    padding: 0 10px;
}

.artist-name {
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
    max-width: 150px;
    line-height: 1.2;
}

/* Info Strip */
.festival-info-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    padding: 25px;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.info-block {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.info-block:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
}

.info-block.highlight {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.3), rgba(192, 57, 43, 0.3));
    border: 1px solid rgba(231, 76, 60, 0.5);
}

.info-icon {
    font-size: 1.8rem;
}

.info-content {
    display: flex;
    flex-direction: column;
}

.info-label {
    color: rgba(255,255,255,0.6);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-value {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
}

.info-value.price {
    color: #FFD700;
    font-size: 1.3rem;
}

/* Actividades */
.festival-activities {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 40px 0;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255,255,255,0.08);
    border-radius: 25px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.activity-item:hover {
    background: rgba(255, 215, 0, 0.15);
    border-color: #FFD700;
    transform: translateY(-3px);
}

.activity-icon {
    font-size: 1.3rem;
}

.activity-text {
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Sponsors */
.festival-sponsors {
    margin: 50px 0;
}

.sponsors-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

.sponsors-image-wrapper {
    background: rgba(255,255,255,0.95);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 150px;
}

.sponsors-img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.4s ease;
    display: block;
    margin: 0 auto;
}

.sponsors-img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.sponsors-placeholder {
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-weight: 600;
    width: 100%;
}

/* Botones de Acción */
.festival-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 50px 0 30px;
}

.btn-comprar-entradas {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: #fff;
    padding: 20px 45px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.2rem;
    letter-spacing: 2px;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.5);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    animation: btnPulse 2s ease-in-out infinite;
    border: 2px solid rgba(255,255,255,0.2);
}

@keyframes btnPulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(231, 76, 60, 0.5);
    }
    50% {
        box-shadow: 0 10px 40px rgba(231, 76, 60, 0.8);
    }
}

.btn-comprar-entradas:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 45px rgba(231, 76, 60, 0.7);
}

.btn-price {
    background: #FFD700;
    color: #0f2b4d;
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 900;
}

.btn-info-contacto {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: #FFD700;
    padding: 20px 35px;
    border: 3px solid #FFD700;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s ease;
}

.btn-info-contacto:hover {
    background: #FFD700;
    color: #0f2b4d;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

/* Dirección */
.festival-address {
    text-align: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.address-icon {
    font-size: 1.2rem;
}

/* Animaciones */
.animate-fade-in {
    animation: fadeIn 0.8s ease both;
}

.animate-slide-down {
    animation: slideDown 0.8s ease 0.2s both;
}

.animate-scale-in {
    animation: scaleIn 1s ease 0.4s both;
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease both;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.5s; }
.delay-4 { animation-delay: 0.7s; }
.delay-5 { animation-delay: 0.9s; }

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

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

/* Responsive */
@media (max-width: 768px) {
    .festival-tricolor-section {
        padding: 50px 15px 40px;
    }
    
    .date-day {
        font-size: 1.3rem;
    }
    
    .date-time {
        font-size: 0.85rem;
    }
    
    .title-sub {
        font-size: 1.8rem;
    }
    
    .title-tricolor {
        font-size: 3rem;
        letter-spacing: 2px;
    }
    
    .title-country {
        font-size: 1.2rem;
        letter-spacing: 4px;
    }
    
    .artist-card {
        min-width: 100px;
    }
    
    .artist-photo {
        width: 85px;
        height: 85px;
    }
    
    .artist-initials {
        font-size: 1.5rem;
    }
    
    .artist-name {
        font-size: 0.75rem;
    }
    
    .festival-info-strip {
        flex-direction: column;
    }
    
    .info-block {
        width: 100%;
        justify-content: center;
    }
    
    .festival-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-comprar-entradas,
    .btn-info-contacto {
        justify-content: center;
    }
    
    .festival-activities {
        gap: 10px;
    }
    
    .activity-item {
        padding: 10px 15px;
        font-size: 0.85rem;
    }
}
/* ============================================
   MODAL DE ARTISTA
   ============================================ */

.artist-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.artist-modal.active { 
    display: flex; 
}

.artist-modal-content {
    background: linear-gradient(135deg, #0f2b4d 0%, #1a3a5c 100%);
    border-radius: 24px;
    max-width: 550px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 215, 0, 0.3);
    animation: slideUpModal 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 2px solid rgba(255, 215, 0, 0.4);
}

@keyframes slideUpModal {
    from { 
        opacity: 0; 
        transform: translateY(50px) scale(0.9); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0) scale(1); 
    }
}

.artist-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 215, 0, 0.9);
    color: #0f2b4d;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.artist-modal-close:hover {
    background: #FFD700;
    transform: rotate(90deg) scale(1.1);
}

.artist-modal-header {
    padding: 40px 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.artist-modal-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #FFD700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, #e74c3c, #f39c12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.artist-modal-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artist-modal-initials {
    color: #fff;
    font-size: 3rem;
    font-weight: 900;
}

.artist-modal-title { 
    text-align: center; 
}

.artist-modal-title h2 {
    color: #FFD700;
    font-size: 2rem;
    margin: 0 0 10px 0;
    font-weight: 800;
}

.artist-modal-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
    margin: 0 auto;
}

.artist-modal-body { 
    padding: 30px; 
}

.artist-modal-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 30px;
}

.artist-social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-link-item:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: #FFD700;
    transform: translateY(-3px);
}

/* Responsive 
@media (max-width: 768px) {
    .artist-modal-content { 
        max-width: 95%; 
    }
    
    .artist-modal-photo { 
        width: 120px; 
        height: 120px; 
    }
    
    .artist-modal-title h2 { 
        font-size: 1.5rem; 
    }
    
    .artist-modal-description {
        font-size: 1rem;
    }
    
    .artist-social-links { 
        flex-direction: column; 
    }
    
    .social-link-item { 
        width: 100%; 
        justify-content: center; 
    }
}*/
/* Overlay Hover Profesional */
.artist-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(15, 43, 77, 0.95) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 15px;
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
    border-radius: 12px;
}

.artist-card:hover .artist-hover-overlay {
    opacity: 1;
}

.hover-text {
    color: #FFD700;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 5px;
}

.hover-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #FFD700;
    transition: width 0.3s ease;
}

.artist-card:hover .hover-text::after {
    width: 100%;
}
/* ============================================
   MODAL RESPONSIVE MÓVIL
   ============================================ */

@media (max-width: 768px) {

    .artist-modal {
        padding: 10px;
        align-items: flex-end;
    }

    .artist-modal-content {
        width: 100%;
        max-width: 100%;
        max-height: 92vh;
        border-radius: 24px 24px 0 0;
        margin: 0;
    }

    .artist-modal-close {
        width: 42px;
        height: 42px;
        top: 15px;
        right: 15px;
        font-size: 1.5rem;
    }

    .artist-modal-header {
        padding: 30px 20px 15px;
        gap: 15px;
    }

    .artist-modal-photo {
        width: 100px;
        height: 100px;
        border-width: 3px;
    }

    .artist-modal-initials {
        font-size: 2.2rem;
    }

    .artist-modal-title h2 {
        font-size: 1.4rem;
        line-height: 1.2;
        padding: 0 10px;
    }

    .artist-modal-divider {
        width: 60px;
    }

    .artist-modal-body {
        padding: 20px;
    }

    .artist-modal-description {
        font-size: 0.95rem;
        line-height: 1.6;
        text-align: left;
        margin-bottom: 25px;
    }

    .artist-social-links {
        flex-direction: column;
        gap: 10px;
    }

    .social-link-item {
        width: 100%;
        justify-content: center;
        padding: 14px;
        font-size: 0.95rem;
    }
}

/* Móviles pequeños */
@media (max-width: 480px) {

    .artist-modal {
        padding: 0;
    }

    .artist-modal-content {
        border-radius: 20px 20px 0 0;
        max-height: 95vh;
    }

    .artist-modal-header {
        padding: 25px 15px 15px;
    }

    .artist-modal-photo {
        width: 85px;
        height: 85px;
    }

    .artist-modal-title h2 {
        font-size: 1.2rem;
    }

    .artist-modal-description {
        font-size: 0.9rem;
    }

    .artist-modal-body {
        padding: 15px;
    }

    .social-link-item {
        font-size: 0.9rem;
        padding: 12px;
    }
}


/* Botón Flyer - Compacto y discreto */
.btn-flyer-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 215, 0, 0.1);
    color: #FFD700;
    padding: 12px 20px;
    border: 2px solid rgba(255, 215, 0, 0.5);
    border-radius: 50px; /* Forma de píldora */
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.flyer-icon {
    width: 18px;
    height: 18px;
    stroke: #FFD700;
    transition: all 0.3s ease;
}

.btn-flyer-download:hover {
    background: rgba(255, 215, 0, 0.25);
    border-color: #FFD700;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.btn-flyer-download:hover .flyer-icon {
    stroke: #fff;
    transform: translateY(2px); /* Animación de descarga */
}

@media (max-width: 768px) {
    .btn-flyer-download {
        justify-content: center;
        padding: 10px 18px;
        font-size: 0.8rem;
    }
}






/* ============================================
   SECCIÓN VÍDEOS DESDE REDES SOCIALES
   ============================================ */

.festival-social-videos {
    margin: 50px 0;
    padding: 50px 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.social-videos-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
}

.social-videos-header .header-line {
    flex: 1;
    max-width: 250px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
}

.social-videos-header .header-text {
    color: #FFD700;
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: 4px;
}

/* Contenedor del reproductor */
.video-player-container {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.main-video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 9/16;
    max-height: 650px;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid rgba(255, 215, 0, 0.5);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6);
    background: #000;
}

#youtubeShortsPlayer {
    width: 100%;
    height: 100%;
}

#youtubeShortsPlayer iframe {
    width: 100% !important;
    height: 100% !important;
    border: none;
}

/* Controles superpuestos (botón mute + badge) */
.video-controls {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 10;
}

.mute-btn {
    background: rgba(255, 215, 0, 0.95);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.mute-btn:hover {
    background: #FFD700;
    transform: scale(1.1);
}

.mute-btn svg {
    width: 24px;
    height: 24px;
    stroke: #0f2b4d;
}

.platform-badge {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    padding: 10px 18px;
    border-radius: 25px;
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    border: 2px solid rgba(255, 215, 0, 0.5);
    text-align: center;
}

/* Botones de navegación de VÍDEOS (con prefijo para evitar conflictos) */
.video-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 215, 0, 0.95);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 20;
    box-shadow: 0 6px 25px rgba(0,0,0,0.4);
}

.video-nav-btn:hover {
    background: #FFD700;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.7);
}

.video-nav-btn svg {
    color: #0f2b4d;
    width: 28px;
    height: 28px;
}

.video-nav-btn.prev { left: -35px; }
.video-nav-btn.next { right: -35px; }

/* Links a redes */
.social-platforms-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.platform-link {
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.platform-link:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: #FFD700;
    color: #fff;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .festival-social-videos {
        padding: 35px 15px;
    }
    
    .social-videos-header .header-text {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }
    
    .video-player-container {
        max-width: 100%;
    }
    
    .main-video-wrapper {
        max-height: 500px;
    }
    
    .video-nav-btn {
        width: 50px;
        height: 50px;
    }
    
    .video-nav-btn.prev { left: 10px; }
    .video-nav-btn.next { right: 10px; }
    
    .mute-btn {
        width: 42px;
        height: 42px;
    }
    
    .platform-link {
        padding: 8px 18px;
        font-size: 0.85rem;
    }
}








.audio-auto-notice {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%) translateY(30px);
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    color: #FFD700;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    border: 2px solid #FFD700;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
    z-index: 100;
    white-space: nowrap;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

.audio-auto-notice.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}