/* --- Variables --- */
:root {
    --bg-dark: #0f1015;
    --bg-darker: #07080a;
    --text-main: #f8f9fa;
    --text-muted: #adb5bd;
    --accent-red: #ff3333;
    --accent-red-glow: rgba(255, 51, 51, 0.6);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --transition: all 0.3s ease;
    
    --font-sans: 'Inter', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
    --font-logo: 'Bebas Neue', cursive;
}

/* --- Base --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 800;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.section {
    padding: 6rem 0;
}

.bg-darker {
    background-color: var(--bg-darker);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-desc {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.highlight {
    color: var(--accent-red);
    text-shadow: 0 0 10px var(--accent-red-glow);
}

/* --- Utilities --- */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: none;
}

.btn-primary {
    background-color: var(--accent-red);
    color: white;
    box-shadow: 0 4px 15px var(--accent-red-glow);
}

.btn-primary:hover {
    background-color: #ff1a1a;
    box-shadow: 0 6px 20px rgba(255, 51, 51, 0.8);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 2px solid var(--glass-border);
}

.btn-outline:hover {
    border-color: var(--accent-red);
    color: var(--accent-red);
}

.btn-block {
    display: block;
    width: 100%;
}

.mt-3 {
    margin-top: 1.5rem;
}

.hidden {
    display: none !important;
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(15, 16, 21, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--glass-border);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo-img {
    height: 80px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: var(--transition);
}

.navbar.scrolled .nav-logo-img {
    height: 60px; /* shrink slightly when scrolled */
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent-red);
}

.nav-cta {
    background-color: var(--accent-red);
    padding: 8px 20px;
    border-radius: 20px;
}

.nav-cta:hover {
    color: white !important;
    box-shadow: 0 0 15px var(--accent-red-glow);
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 1.8rem;
    cursor: pointer;
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    color: var(--accent-red);
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at center, #1a1c23 0%, var(--bg-dark) 70%);
    position: relative;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(var(--glass-border) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

/* Logo Recreation */
.logo-container {
    margin-bottom: 2rem;
    display: inline-block;
}

.logo-box {
    border: 5px solid #555;
    padding: 1rem 2rem 0.5rem;
    position: relative;
    display: inline-block;
}

.logo-box::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 20px 20px 0;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

.logo-box::before {
    content: '';
    position: absolute;
    bottom: -13px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 15px 15px 0;
    border-style: solid;
    border-color: var(--bg-dark) transparent transparent transparent;
    z-index: 1;
}

.logo-text {
    font-family: 'Bebas Neue', var(--font-logo);
    font-size: 5rem;
    line-height: 0.9;
    letter-spacing: 2px;
    color: white;
}

.logo-viendo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-mic {
    font-size: 3rem;
    margin: 0 2px;
    color: white;
}

.logo-standup {
    font-family: 'Bebas Neue', var(--font-logo);
    font-size: 3.5rem;
    color: var(--accent-red);
    letter-spacing: 3px;
    margin-top: 1rem;
    text-shadow: 0 0 15px var(--accent-red-glow), 0 0 30px var(--accent-red-glow);
    animation: pulseGlow 2s infinite alternate;
}

@keyframes pulseGlow {
    from { text-shadow: 0 0 10px var(--accent-red-glow); }
    to { text-shadow: 0 0 20px var(--accent-red-glow), 0 0 40px var(--accent-red); }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

/* --- Shows Section --- */
.shows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Flyer de la fecha */
.show-flyer {
    width: 100%;
    aspect-ratio: 1 / 1; /* Cuadrado para flyers estándar */
    margin-bottom: 1.5rem;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
}

.show-flyer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.flyer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.flyer-overlay i {
    font-size: 1.8rem;
    color: #fff;
    filter: drop-shadow(0 0 8px var(--accent-red));
}

.show-flyer:hover img {
    transform: scale(1.08);
}

.show-flyer:hover .flyer-overlay {
    opacity: 1;
}

.show-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition);
}

/* Logo del venue (bar / teatro) */
.venue-logo {
    width: 100%;
    max-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
}

.venue-logo img {
    max-height: 70px;
    max-width: 160px;
    width: auto;
    object-fit: contain;
    /* efecto glassmorphism suave sobre el logo */
    border-radius: 8px;
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    filter: brightness(1.1) drop-shadow(0 0 6px rgba(255,255,255,0.15));
    transition: filter 0.3s ease, transform 0.3s ease;
}

.show-card:hover .venue-logo img {
    filter: brightness(1.3) drop-shadow(0 0 10px rgba(255,255,255,0.3));
    transform: scale(1.04);
}

.show-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 51, 51, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.show-date {
    background: rgba(255, 51, 51, 0.1);
    color: var(--accent-red);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    border: 2px solid var(--accent-red);
    box-shadow: 0 0 15px var(--accent-red-glow) inset;
}

.show-date .day {
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1;
}

.show-date .month {
    font-size: 0.9rem;
    font-weight: 700;
}

.show-info h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.show-info p {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.show-info i {
    color: var(--accent-red);
    width: 20px;
}

.show-card .btn {
    margin-top: 1.5rem;
    width: 100%;
}

/* --- Gallery Section --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background-color: #222;
    transition: var(--transition);
}

.gallery-item.placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--glass-border);
    color: var(--text-muted);
}

.gallery-item.placeholder i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    opacity: 0.5;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    border-color: rgba(255,255,255,0.2);
}

/* --- Form Section --- */
.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-desc {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: #ccc;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-main);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-red);
    box-shadow: 0 0 0 3px rgba(255, 51, 51, 0.2);
}

/* Feedback Messages */
.form-success, .form-error {
    text-align: center;
    padding: 2rem;
    animation: fadeIn 0.5s ease;
}

.success-icon {
    font-size: 4rem;
    color: #4CAF50;
    margin-bottom: 1rem;
}

.error-icon {
    font-size: 4rem;
    color: var(--accent-red);
    margin-bottom: 1rem;
}

/* --- Footer --- */
.footer {
    background-color: #050505;
    padding: 4rem 0 2rem;
    border-top: 1px solid #1a1a1a;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #1a1a1a;
}

.footer-logo {
    font-family: var(--font-logo);
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--glass-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 1px solid var(--glass-border);
}

.social-links a:hover {
    background: var(--accent-red);
    color: white;
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* --- Floating WhatsApp --- */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    background-color: #1ebe5d;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: white;
}

/* --- Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

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

/* --- Responsive --- */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(15, 16, 21, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 1.5rem 0;
        border-bottom: 1px solid var(--glass-border);
        gap: 1.5rem;
        
        /* Oculto por defecto usando opacity y visibility para no romper animaciones en iOS */
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        pointer-events: none;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }
    
    .logo-text {
        font-size: 3.5rem;
    }
    
    .logo-mic {
        font-size: 2rem;
    }
    
    .logo-standup {
        font-size: 2.5rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* --- Cursor Laugh Trail --- */
.cursor-laugh {
    position: absolute;
    pointer-events: none; /* Ignore mouse events */
    color: var(--accent-red);
    font-weight: 900;
    font-size: 1.5rem;
    z-index: 9999;
    animation: floatLaugh 1s ease-out forwards;
    text-shadow: 0 0 8px var(--accent-red-glow);
    font-family: var(--font-heading);
}

@keyframes floatLaugh {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(0.8) rotate(0deg);
    }
    100% {
        opacity: 0;
        /* Move up and slightly random horizontally, rotate slightly */
        transform: translate(calc(-50% - 20px + 40px * var(--rand-x, 0.5)), -60px) scale(1.5) rotate(calc(-20deg + 40deg * var(--rand-r, 0.5)));
    }
}

/* --- Video Download Section --- */
.video-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    margin-bottom: 10px;
    transition: var(--transition);
}

.video-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.video-item-name {
    font-weight: 600;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.video-item-name i {
    color: var(--accent-red);
}

@media (max-width: 500px) {
    .video-item {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    .video-item .btn {
        text-align: center;
    }
}

/* Video items con términos */
.video-item--terms {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
}

.video-item-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.terms-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    transition: background 0.2s ease;
}

.terms-label:hover {
    background: rgba(255, 255, 255, 0.06);
}

.terms-checkbox {
    margin-top: 3px;
    min-width: 17px;
    height: 17px;
    accent-color: var(--accent-red);
    cursor: pointer;
}

.terms-label span {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
}


/* =====================================================
   CAROUSEL  — formato 9:16 (vertical, estilo reels)
   ===================================================== */

/* Variables del carrusel */
:root {
    --card-gap: 14px;
    /* Cuántos cards se ven a la vez (se sobreescribe con JS si hace falta) */
}

.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
}

.carousel-track-container {
    overflow: hidden;
    flex: 1;
    /* sin border-radius aquí para que no corte los cards del borde */
}

.carousel-track {
    display: flex;
    gap: var(--card-gap);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    /* altura máxima del carrusel en desktop */
    align-items: stretch;
}

/* ── TAMAÑOS DE CARDS: cuántos se ven a la vez ──────
   Desktop (≥900px):  3 cards visibles
   Tablet  (≥600px):  2 cards visibles
   Mobile  (<600px):  1 card + peek del siguiente
   ──────────────────────────────────────────────── */
.carousel-item {
    /* 3 cards en desktop: (100% - 2 gaps) / 3 */
    min-width: calc((100% - 2 * var(--card-gap)) / 3);
    aspect-ratio: 9 / 16;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    flex-shrink: 0;
    /* altura máxima para no ocupar toda la pantalla en móvil */
    max-height: 70vh;
}

/* Imagen real */
.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.carousel-item:hover img {
    transform: scale(1.04);
}

/* Caption debajo de la imagen */
.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 14px 14px;
    background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
    font-size: 0.82rem;
    color: rgba(255,255,255,0.85);
    text-align: center;
    pointer-events: none;
}

/* Placeholder (sin imagen todavía) */
.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--text-muted);
    background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.07));
}

.gallery-placeholder i {
    font-size: 2.5rem;
    opacity: 0.4;
}

.gallery-placeholder p {
    font-size: 0.85rem;
    opacity: 0.5;
}

.video-placeholder i {
    font-size: 3rem;
    opacity: 0.7;
    color: var(--accent-red);
}

/* Overlay hover */
.carousel-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 16px;
}

.carousel-overlay i {
    font-size: 2.5rem;
    color: #fff;
    filter: drop-shadow(0 0 10px rgba(255,51,51,0.9));
    transform: scale(0.85);
    transition: transform 0.3s ease;
}

.carousel-item:hover .carousel-overlay { opacity: 1; }
.carousel-item:hover .carousel-overlay i { transform: scale(1); }

/* Botones navegación */
.carousel-btn {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
    z-index: 2;
    /* botones al centro del carrusel verticalmente */
    align-self: center;
}

.carousel-btn:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
    box-shadow: 0 0 14px var(--accent-red-glow);
    transform: scale(1.08);
}

/* Puntitos */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.carousel-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.carousel-dot.active {
    background: var(--accent-red);
    box-shadow: 0 0 8px var(--accent-red-glow);
    transform: scale(1.35);
}

/* ── TABLET: 2 cards ─────────────── */
@media (max-width: 900px) {
    .carousel-item {
        min-width: calc((100% - var(--card-gap)) / 2);
        max-height: 65vh;
    }
}

/* ── MOBILE: 1 card + peek ───────── */
@media (max-width: 600px) {
    .carousel-item {
        min-width: calc(100% - 36px); /* deja 36px de peek al siguiente */
        max-height: 75vh;
    }
    .carousel-btn {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 0.85rem;
    }
}


/* =====================================================
   LIGHTBOX
   ===================================================== */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.open {
    pointer-events: all;
    opacity: 1;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(8px);
    cursor: pointer;
}

.lightbox-content {
    position: relative;
    z-index: 1;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: scale(0.92);
    transition: transform 0.3s ease;
}

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

.lightbox-close {
    position: absolute;
    top: -44px;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox-close:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
}

.lightbox-media img {
    max-width: 88vw;
    max-height: 82vh;
    border-radius: 12px;
    display: block;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.lightbox-media video {
    max-width: 88vw;
    max-height: 82vh;
    border-radius: 12px;
    display: block;
    background: #000;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

@media (max-width: 600px) {
    .carousel-btn {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 0.85rem;
    }
}

/* --- Eventos Section --- */
.event-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.event-service-card {
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.event-service-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-red);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--accent-red);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px var(--accent-red-glow);
}

.event-service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.event-service-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.event-contact {
    max-width: 800px;
    margin: 0 auto;
    padding: 2.5rem;
    text-align: center;
}

.event-contact h3 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

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

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    transition: var(--transition);
}

.contact-item i {
    font-size: 1.8rem;
    color: var(--accent-red);
}

.contact-item:hover {
    color: var(--accent-red);
    transform: scale(1.05);
}

/* --- WhatsApp CTA Button --- */
.btn-whatsapp {
    background-color: #25d366;
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp i {
    font-size: 1.5rem;
}

.btn-whatsapp:hover {
    background-color: #20ba5a;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
    color: #fff;
}

@media (max-width: 600px) {
    .contact-methods {
        flex-direction: column;
        gap: 1.5rem;
    }
}
