/* ========================================
   CARNABAAL 2026 - Fiesta de Lokitos
   Premium Event Website Styles
   ======================================== */

:root {
    /* Colors from the poster */
    --bg-primary: #050a14;
    --bg-secondary: #0d1b2a;
    --bg-card: #111827;
    --neon-green: #00ff41;
    --neon-green-glow: rgba(0, 255, 65, 0.5);
    --fire-yellow: #ffd700;
    --fire-orange: #ff6b35;
    --fire-red: #ff4444;
    --cyan: #00d4ff;
    --magenta: #ff00ff;
    --text-white: #ffffff;
    --text-light: #e0e0e0;
    --text-muted: #888888;

    /* Fonts */
    --font-display: 'Creepster', cursive;
    --font-tech: 'Orbitron', sans-serif;
    --font-body: 'Montserrat', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 100px 20px;
    --section-padding-mobile: 60px 16px;
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(5, 10, 20, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-white);
    font-family: var(--font-display);
    font-size: 1.3rem;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--neon-green);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--neon-green);
}

.btn-nav {
    background: linear-gradient(135deg, var(--fire-orange), var(--fire-yellow));
    color: var(--bg-primary) !important;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700 !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.btn-nav:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(5, 10, 20, 0.98);
    padding: 20px;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
    border-bottom: 2px solid var(--neon-green);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 1.1rem;
    padding: 12px 20px;
    border-radius: 8px;
    background: var(--bg-card);
    text-align: center;
    font-weight: 600;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    padding: 80px 20px 40px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(5, 10, 20, 0.3) 0%,
            rgba(5, 10, 20, 0.6) 50%,
            rgba(5, 10, 20, 0.95) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.mission-badge {
    display: inline-block;
    background: rgba(255, 68, 68, 0.2);
    border: 2px solid var(--fire-red);
    color: var(--fire-red);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 68, 68, 0.4);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(255, 68, 68, 0);
    }
}

.blink {
    animation: blink-animation 1s infinite;
}

@keyframes blink-animation {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.main-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 12vw, 7rem);
    color: var(--fire-yellow);
    text-shadow:
        4px 4px 0 var(--fire-orange),
        8px 8px 0 rgba(0, 0, 0, 0.5);
    line-height: 1;
    margin-bottom: 10px;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.tagline {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 30px;
    font-style: italic;
}

.date-location {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}

.date-box {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid var(--fire-orange);
    border-radius: 15px;
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(10px);
}

.day-name {
    font-family: var(--font-tech);
    color: var(--fire-orange);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 3px;
}

.day-number {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    color: var(--text-white);
}

.month {
    font-family: var(--font-tech);
    color: var(--fire-yellow);
    font-size: 1rem;
    font-weight: 700;
}

.location-box {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid var(--neon-green);
    border-radius: 15px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    backdrop-filter: blur(10px);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    cursor: pointer;
}

.location-box:hover {
    background: rgba(0, 255, 65, 0.15);
    border-color: var(--fire-yellow);
    transform: scale(1.02);
    box-shadow: 0 5px 20px var(--neon-green-glow);
}

.location-box>i {
    font-size: 2rem;
    color: var(--neon-green);
}

.location-box strong {
    font-size: 1.2rem;
    display: block;
    color: var(--text-white);
}

.location-box small {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    font-size: 1.3rem;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    border: 3px solid white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-hero:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}

.pulse {
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }

    50% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
}

.scroll-hint {
    position: absolute;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
    z-index: 2;
}

.bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* ========================================
   CONCEPTO SECTION
   ======================================== */
.concepto-section {
    background: linear-gradient(135deg, #000000 0%, #0a1525 100%);
    padding: var(--section-padding);
    border-top: 2px solid var(--neon-green);
    border-bottom: 2px solid var(--neon-green);
    box-shadow:
        0 -30px 60px -30px var(--neon-green-glow),
        0 30px 60px -30px var(--neon-green-glow);
}

.concepto-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.acrostico {
    text-align: center;
}

.neon-title {
    font-family: var(--font-tech);
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--text-white);
    text-shadow:
        0 0 10px var(--neon-green),
        0 0 20px var(--neon-green),
        0 0 40px var(--neon-green);
    animation: neon-flicker 3s infinite;
}

@keyframes neon-flicker {

    0%,
    19%,
    21%,
    23%,
    25%,
    54%,
    56%,
    100% {
        text-shadow:
            0 0 10px var(--neon-green),
            0 0 20px var(--neon-green),
            0 0 40px var(--neon-green);
    }

    20%,
    24%,
    55% {
        text-shadow: none;
    }
}

.acrostico-list {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
}

.acrostico-list p {
    font-family: var(--font-tech);
    font-size: 1.1rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
}

.acrostico-list .letter {
    color: var(--neon-green);
    font-size: 1.5rem;
    font-weight: 900;
    text-shadow: 0 0 10px var(--neon-green);
    margin-right: 5px;
}

.concepto-texto {
    padding: 30px;
}

.tema-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--magenta), var(--cyan));
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.concepto-texto h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--fire-yellow);
}

.concepto-texto p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.ritual-text {
    font-style: italic;
    color: var(--fire-orange) !important;
    font-size: 1.2rem !important;
}

.vibes-badge {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 107, 53, 0.2));
    border: 2px solid var(--fire-yellow);
    border-radius: 30px;
    color: var(--fire-yellow);
    font-weight: 700;
}

/* ========================================
   LINE-UP SECTION
   ======================================== */
.lineup-section {
    background: var(--bg-secondary);
    padding: var(--section-padding);
}

.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 10px;
    color: var(--fire-yellow);
    text-shadow: 3px 3px 0 var(--fire-orange);
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 50px;
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.artist-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.artist-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 65, 0.2);
}

.artist-img {
    aspect-ratio: 1;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-primary), var(--bg-secondary));
}

.artist-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.artist-card:hover .artist-img img {
    transform: scale(1.1);
}

.gatorcido-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--neon-green), var(--cyan));
}

.gatorcido-placeholder i {
    font-size: 4rem;
    color: var(--bg-primary);
}

.artist-info {
    padding: 20px;
    text-align: center;
}

.artist-info h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--text-white);
}

.artist-info .genre {
    font-size: 0.85rem;
    color: var(--neon-green);
    line-height: 1.4;
}

/* ========================================
   ACTIVIDADES SECTION
   ======================================== */
.actividades-section {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    padding: var(--section-padding);
}

.actividades-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.actividad-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.actividad-card:hover {
    transform: translateY(-5px);
    border-color: var(--fire-orange);
}

.actividad-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--fire-orange), var(--fire-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.actividad-icon i {
    font-size: 2rem;
    color: var(--bg-primary);
}

.actividad-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-white);
}

.actividad-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.tip-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid var(--fire-yellow);
    border-radius: 15px;
    padding: 20px 30px;
    max-width: 500px;
    margin: 0 auto;
}

.tip-box i {
    font-size: 1.5rem;
    color: var(--fire-yellow);
}

.tip-box p {
    color: var(--text-light);
    font-size: 1rem;
}

/* ========================================
   ENTRADAS SECTION
   ======================================== */
.entradas-section {
    background:
        radial-gradient(ellipse at top, rgba(0, 255, 65, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg-primary) 0%, #0a1525 100%);
    padding: var(--section-padding);
}

.ticket-selector-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.ticket-selector {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.ticket-header {
    background: var(--bg-primary);
    color: white;
    padding: 30px;
    text-align: center;
    border-bottom: 3px dashed var(--bg-card);
}

.ticket-header h3 {
    font-family: var(--font-tech);
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--neon-green);
}

.ticket-header p {
    color: var(--text-muted);
}

.ticket-header strong {
    color: var(--fire-yellow);
    font-size: 1.3rem;
}

.ticket-body {
    padding: 30px;
    background: #f5f5f5;
}

.quantity-selector {
    margin-bottom: 25px;
}

.quantity-selector label {
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
    color: #333;
    text-align: center;
}

.qty-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.qty-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.qty-btn.minus {
    background: #ddd;
    color: #666;
}

.qty-btn.plus {
    background: var(--neon-green);
    color: var(--bg-primary);
}

.qty-btn:hover {
    transform: scale(1.1);
}

.qty-btn.plus:hover {
    box-shadow: 0 5px 15px rgba(0, 255, 65, 0.4);
}

#ticketQty {
    width: 80px;
    height: 60px;
    text-align: center;
    font-size: 2rem;
    font-weight: 900;
    border: 3px solid var(--bg-primary);
    border-radius: 15px;
    background: white;
    color: var(--bg-primary);
}

.ticket-summary {
    background: white;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 25px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #333;
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-row.total {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--bg-primary);
    padding-top: 15px;
    margin-top: 10px;
    border-top: 2px solid var(--bg-primary);
}

.btn-whatsapp-reserve {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.btn-whatsapp-reserve:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-reserve i {
    font-size: 1.5rem;
}

/* Pricing History */
.pricing-history {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-history h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-white);
    text-align: center;
}

.price-phase {
    display: flex;
    flex-direction: column;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.05);
}

.price-phase.expired {
    opacity: 0.5;
}

.price-phase.active {
    opacity: 1;
    border: 2px solid var(--neon-green);
    background: rgba(0, 255, 65, 0.1);
}

.phase-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.phase-price {
    font-weight: 700;
    color: var(--text-white);
    font-size: 1.1rem;
}

.status {
    font-size: 0.75rem;
    color: var(--fire-red);
    margin-top: 5px;
    font-weight: 700;
}

.status.current {
    color: var(--neon-green);
}

/* ========================================
   HISTORIA (SEO) SECTION
   ======================================== */
.historia-section {
    background: #000;
    padding: var(--section-padding);
}

.historia-content {
    max-width: 800px;
    margin: 0 auto;
}

.historia-content h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--fire-yellow);
    text-align: center;
    margin-bottom: 30px;
}

.historia-text {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 40px;
    border-left: 4px solid var(--neon-green);
}

.historia-text p {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.historia-text p:last-child {
    margin-bottom: 0;
}

.historia-text strong {
    color: var(--text-white);
}

.historia-text em {
    color: var(--fire-orange);
}

.historia-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
    justify-content: center;
}

.historia-keywords span {
    background: rgba(0, 255, 65, 0.1);
    border: 1px solid var(--neon-green);
    color: var(--neon-green);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
}

/* ========================================
   SPONSORS SECTION
   ======================================== */
.sponsors-section {
    background: var(--bg-primary);
    padding: 40px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sponsors-label {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.sponsors-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.sponsors-logos span {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.95rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.sponsors-logos span:hover {
    opacity: 1;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: #000;
    padding: 60px 20px 30px;
    border-top: 2px solid var(--neon-green);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    text-align: center;
}

.footer-logo img {
    width: 100px;
    border-radius: 50%;
    border: 3px solid var(--neon-green);
    margin-bottom: 15px;
}

.footer-logo p {
    font-family: var(--font-display);
    color: var(--neon-green);
}

.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.footer-social a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--neon-green);
    color: var(--bg-primary);
    transform: translateY(-3px);
}

.footer-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.footer-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-info i {
    color: var(--neon-green);
}

.copyright {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Developer Credit */
.developer-credit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding-top: 15px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
}

.developer-credit span {
    color: rgba(255, 255, 255, 0.25);
}

.developer-credit a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.developer-credit a:hover {
    color: rgba(255, 255, 255, 0.7);
}

.raccoon-logo {
    height: 18px;
    width: auto;
    opacity: 0.4;
    filter: grayscale(100%);
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.developer-credit a:hover .raccoon-logo {
    opacity: 0.8;
    filter: grayscale(0%);
}

/* ========================================
   FLOATING WHATSAPP
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 65px;
    height: 65px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: pulse-green 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.7);
}

/* ========================================
   MOBILE RESPONSIVE
   ======================================== */
@media (max-width: 992px) {
    .concepto-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .artists-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .actividades-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ticket-selector-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-info {
        align-items: center;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: var(--section-padding-mobile);
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .main-title {
        font-size: 3.5rem;
    }

    .artists-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .artist-card {
        display: flex;
        align-items: center;
    }

    .artist-img {
        width: 120px;
        min-width: 120px;
        aspect-ratio: 1;
    }

    .artist-info {
        text-align: left;
        flex: 1;
    }

    .actividades-grid {
        grid-template-columns: 1fr;
    }

    .date-location {
        flex-direction: column;
    }

    .date-box,
    .location-box {
        width: 100%;
        max-width: 300px;
    }

    .section-title {
        font-size: 2rem;
    }

    .neon-title {
        font-size: 1.5rem;
    }

    .acrostico-list p {
        font-size: 0.95rem;
    }

    .concepto-texto h3 {
        font-size: 1.6rem;
    }

    .historia-text {
        padding: 25px;
    }

    .historia-content h2 {
        font-size: 1.8rem;
    }

    .ticket-body {
        padding: 20px;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2.8rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .btn-hero {
        font-size: 1.1rem;
        padding: 15px 30px;
    }

    .mission-badge {
        font-size: 0.8rem;
        padding: 6px 15px;
    }

    .artist-img {
        width: 100px;
        min-width: 100px;
    }

    .artist-info h3 {
        font-size: 1.1rem;
    }

    .artist-info .genre {
        font-size: 0.75rem;
    }

    .qty-btn {
        width: 45px;
        height: 45px;
    }

    #ticketQty {
        width: 70px;
        height: 50px;
        font-size: 1.6rem;
    }
}