/* ================================================
   TROPIMAS 2026 — Jouvert Page
   Colón en Colores — Neon Green Product Style
   ================================================ */

:root {
    --orange: #FF6B1A;
    --orange-light: #FF9933;
    --purple: #E91E8C;
    --magenta: #E91E8C;
    --gold: #FFD700;
    --gradient-fire: linear-gradient(135deg, #FF6B1A, #E91E8C);

    --text-white: #FFFFFF;
    --text-dim: #BBBBBB;
    --bg-panel: #000000;
    --bg-black: #050505;
    --border: #333333;
    --border-accent: #FF6B1A;
}



/* === SCROLLING TICKER === */
.jouvert-ticker {
    background: var(--gradient-fire);
    padding: 10px 0;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
}

.jouvert-ticker-track {
    display: flex;
    animation: tickerScroll 18s linear infinite;
    white-space: nowrap;
}

.jouvert-ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 0 40px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: #fff;
    flex-shrink: 0;
}

.jouvert-ticker-item .ticker-dot {
    width: 5px;
    height: 5px;
    background: #fff;
    border-radius: 50%;
    opacity: 0.5;
}

@keyframes tickerScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Push nav down for ticker */
.jouvert-page .nav {
    top: 36px;
}

/* === HERO / FLYER === */
.jouvert-hero {
    padding: 160px 0 0;
    position: relative;
    background: var(--bg-black);
    overflow: hidden;
    min-height: 90vh;
}

.jouvert-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    /* Subtle neon glow in corners */
    background:
        radial-gradient(ellipse at 25% 30%, rgba(233, 30, 140, 0.10) 0%, transparent 50%),
        radial-gradient(ellipse at 75% 70%, rgba(123, 47, 247, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(0, 230, 118, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 20%, rgba(255, 107, 26, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

/* === PAINT SPLATTERS === */
.paint-splatter {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0;
    pointer-events: none;
    z-index: 1;
    animation: splatAppear 1s ease forwards, splatFloat 6s ease-in-out infinite;
}

.splat-1 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(233, 30, 140, 0.35) 0%, transparent 70%);
    top: 15%;
    left: 5%;
    animation-delay: 0.2s, 0.2s;
}

.splat-2 {
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(0, 230, 118, 0.3) 0%, transparent 70%);
    top: 25%;
    right: 8%;
    animation-delay: 0.5s, 0.5s;
}

.splat-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(123, 47, 247, 0.3) 0%, transparent 70%);
    bottom: 30%;
    left: 3%;
    animation-delay: 0.8s, 0.8s;
}

.splat-4 {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255, 107, 26, 0.35) 0%, transparent 70%);
    top: 10%;
    right: 15%;
    animation-delay: 0.3s, 0.3s;
}

.splat-5 {
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.25) 0%, transparent 70%);
    bottom: 20%;
    right: 5%;
    animation-delay: 0.6s, 0.6s;
}

.splat-6 {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    top: 50%;
    left: 12%;
    animation-delay: 1s, 1s;
}

@keyframes splatAppear {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes splatFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(10px, -15px) scale(1.05);
    }

    50% {
        transform: translate(-8px, 10px) scale(0.95);
    }

    75% {
        transform: translate(12px, 8px) scale(1.03);
    }
}

/* === FLOATING PARTICLES === */
.jv-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.jv-particle {
    position: absolute;
    border-radius: 50%;
    animation: particleRise linear infinite;
}

.p1 {
    width: 4px;
    height: 4px;
    background: #FF6B1A;
    left: 15%;
    animation-duration: 8s;
    animation-delay: 0s;
}

.p2 {
    width: 3px;
    height: 3px;
    background: #E91E8C;
    left: 30%;
    animation-duration: 10s;
    animation-delay: 1s;
}

.p3 {
    width: 5px;
    height: 5px;
    background: #00E676;
    left: 50%;
    animation-duration: 7s;
    animation-delay: 2s;
}

.p4 {
    width: 3px;
    height: 3px;
    background: #7B2FF7;
    left: 65%;
    animation-duration: 9s;
    animation-delay: 0.5s;
}

.p5 {
    width: 4px;
    height: 4px;
    background: #FFD700;
    left: 80%;
    animation-duration: 11s;
    animation-delay: 3s;
}

.p6 {
    width: 2px;
    height: 2px;
    background: #00D4FF;
    left: 25%;
    animation-duration: 12s;
    animation-delay: 4s;
}

.p7 {
    width: 3px;
    height: 3px;
    background: #FF6B1A;
    left: 70%;
    animation-duration: 8.5s;
    animation-delay: 1.5s;
}

.p8 {
    width: 4px;
    height: 4px;
    background: #E91E8C;
    left: 45%;
    animation-duration: 9.5s;
    animation-delay: 2.5s;
}

@keyframes particleRise {
    0% {
        bottom: -10px;
        opacity: 0;
    }

    10% {
        opacity: 0.7;
    }

    90% {
        opacity: 0.7;
    }

    100% {
        bottom: 100%;
        opacity: 0;
    }
}

/* === FLYER CONTAINER === */
.jouvert-flyer-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* === PULSING GLOW BACKDROP === */
.flyer-glow-backdrop {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    border-radius: 30px;
    background: conic-gradient(from 0deg,
            rgba(255, 107, 26, 0.15),
            rgba(233, 30, 140, 0.15),
            rgba(123, 47, 247, 0.15),
            rgba(0, 230, 118, 0.10),
            rgba(0, 212, 255, 0.10),
            rgba(255, 215, 0, 0.12),
            rgba(255, 107, 26, 0.15));
    filter: blur(50px);
    animation: glowSpin 8s linear infinite, glowPulse 3s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes glowSpin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.6;
        filter: blur(50px);
    }

    50% {
        opacity: 1;
        filter: blur(60px);
    }
}

/* === FLYER CARD === */
.jouvert-flyer-wrap {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow:
        0 0 80px rgba(255, 107, 26, 0.15),
        0 0 160px rgba(233, 30, 140, 0.08),
        0 30px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.15s ease, box-shadow 0.3s ease;
    transform-style: preserve-3d;
    will-change: transform;
}

.jouvert-flyer-wrap img {
    width: 100%;
    display: block;
    position: relative;
    z-index: 2;
}

/* Animated gradient border */
.flyer-border-glow {
    position: absolute;
    inset: -3px;
    border-radius: 22px;
    background: conic-gradient(from 0deg,
            #FF6B1A, #E91E8C, #7B2FF7, #00D4FF, #00E676, #FFD700, #FF6B1A);
    z-index: 0;
    animation: borderRotate 4s linear infinite;
}

@keyframes borderRotate {
    0% {
        filter: hue-rotate(0deg);
    }

    100% {
        filter: hue-rotate(360deg);
    }
}

/* Shimmer sweep */
.flyer-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.08) 50%, transparent 60%);
    z-index: 3;
    animation: shimmerSweep 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shimmerSweep {

    0%,
    100% {
        left: -100%;
    }

    50% {
        left: 150%;
    }
}

/* === FLOATING BADGE === */
.flyer-badge-float {
    position: absolute;
    top: -12px;
    right: -12px;
    padding: 10px 20px;
    border-radius: 100px;
    background: linear-gradient(135deg, #FF6B1A, #E91E8C);
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;
    z-index: 10;
    box-shadow: 0 8px 30px rgba(255, 107, 26, 0.4);
    animation: badgeBounce 2s ease-in-out infinite;
    display: flex;
    align-items: center;
    gap: 6px;
}

@keyframes badgeBounce {

    0%,
    100% {
        transform: translateY(0) rotate(-3deg);
    }

    50% {
        transform: translateY(-8px) rotate(2deg);
    }
}

/* === MAIN CONTENT CARD === */
.jouvert-content {
    max-width: 720px;
    margin: -40px auto 0;
    position: relative;
    z-index: 3;
    background: var(--bg-panel);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.jouvert-content-inner {
    padding: 48px 40px 40px;
}

/* === EVENT HEADER === */
.jv-org {
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.jv-org::before {
    content: '';
    width: 16px;
    height: 2px;
    background: var(--orange);
}

.jv-event-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    letter-spacing: 3px;
    line-height: 1.1;
    margin-bottom: 12px;
}

.jv-event-date {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: var(--text-dim);
    margin-bottom: 36px;
}

/* === BUY TICKETS === */
.jv-section-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 4px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

/* Table header */
.jv-tickets-header {
    display: grid;
    grid-template-columns: 1fr 90px 90px;
    gap: 12px;
    padding: 0 0 10px;
    margin-bottom: 6px;
}

.jv-tickets-header span {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--orange);
}

.jv-tickets-header span:nth-child(2),
.jv-tickets-header span:nth-child(3) {
    text-align: center;
}

/* Ticket Row */
.jv-ticket-row {
    display: grid;
    grid-template-columns: 1fr 90px 90px;
    gap: 12px;
    align-items: center;
    padding: 18px 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.jv-ticket-row:hover {
    border-color: var(--border-accent);
    background: rgba(255, 107, 26, 0.03);
}

.jv-ticket-name {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-white);
    margin-bottom: 4px;
}

.jv-ticket-desc {
    font-size: 0.7rem;
    color: var(--text-dim);
    line-height: 1.5;
}

.jv-ticket-price {
    font-family: var(--font-display);
    font-size: 1.15rem;
    letter-spacing: 1px;
    text-align: center;
    color: var(--text-white);
}

/* Custom quantity control */
.jv-qty-control {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    border: 1px solid #333;
    border-radius: 4px;
    overflow: hidden;
    background: #000000;
    transition: all 0.3s ease;
}

.jv-qty-control:hover {
    border-color: var(--orange);
    box-shadow: 0 0 0 1px var(--orange);
}

.jv-qty-btn {
    width: 36px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111;
    border: none;
    color: var(--orange);
    font-size: 1.2rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.jv-qty-btn:hover {
    background: var(--orange);
    color: #fff;
}



.jv-next-btn {
    padding: 16px 40px;
    border-radius: 6px;
    background: var(--gradient-fire);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 107, 26, 0.2);
}

.jv-next-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #ff8540, #ff4081);
    box-shadow: 0 8px 25px rgba(255, 107, 26, 0.4);
}

.jv-qty-btn:active {
    transform: scale(0.95);
}

.jv-qty-value {
    width: 40px;
    text-align: center;
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 0;
    color: #FFFFFF;
    border-left: 1px solid #333;
    border-right: 1px solid #333;
    height: 38px;
    line-height: 38px;
    background: #000000;
}

.jv-ticket-qty {
    display: flex;
    justify-content: center;
}

/* Subtotal bar */
.jv-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 16px;
    margin-top: 12px;
    border-top: 2px solid var(--border);
}

.jv-subtotal-label {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-white);
}

.jv-subtotal-amount {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 2px;
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Next button */
/* Next button */
.jv-next-wrap {
    display: flex;
    justify-content: flex-end;
    margin-top: 16px;
}

.jv-next-btn {
    padding: 16px 40px;
    border-radius: 6px;
    background: var(--gradient-fire);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 107, 26, 0.2);
}

.jv-next-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #ff8540, #ff4081);
    box-shadow: 0 8px 25px rgba(255, 107, 26, 0.4);
}

.jv-next-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    background: #333;
    color: #666;
}

/* === DIVIDER === */
.jv-divider {
    height: 1px;
    background: var(--border);
    margin: 40px 0;
}

/* === EVENT DETAILS TEXT === */
.jv-details-intro {
    margin-bottom: 32px;
}

.jv-details-intro h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 3px;
    color: var(--orange);
    margin-bottom: 10px;
}

.jv-details-intro p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.jv-details-intro .jv-highlight {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    font-style: italic;
    color: var(--text-white);
    letter-spacing: 0.5px;
}

/* Package breakdowns */
.jv-package {
    margin-bottom: 20px;
}

.jv-package h5 {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--orange);
    margin-bottom: 4px;
}

.jv-package p {
    font-size: 0.8rem;
    color: var(--text-dim);
    line-height: 1.6;
}

/* Event meta info */
.jv-event-meta {
    margin-top: 32px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 14px;
}

.jv-meta-row {
    display: flex;
    gap: 8px;
    padding: 8px 0;
}

.jv-meta-row:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.jv-meta-label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--text-white);
    min-width: 80px;
}

.jv-meta-value {
    font-size: 0.8rem;
    color: var(--orange);
    font-weight: 500;
}

.jv-meta-value.entertainment {
    font-style: italic;
    color: var(--text-light);
}

/* === PICKUP SECTION === */
.jv-pickup h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.jv-pickup-row {
    display: flex;
    gap: 8px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.jv-pickup-row:last-of-type {
    border-bottom: none;
}

.jv-pickup-label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--text-white);
    min-width: 120px;
}

.jv-pickup-value {
    font-size: 0.82rem;
    color: var(--orange);
    font-weight: 500;
}

/* === HELP LINK === */
.jv-help {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.jv-help p {
    font-size: 0.82rem;
    color: var(--text-dim);
}

.jv-help a {
    color: var(--orange);
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.jv-help a:hover {
    color: var(--orange-light);
}

/* === BOTTOM SPACER === */
.jouvert-bottom-space {
    padding: 80px 0;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .jouvert-ticker {
        padding: 8px 0;
    }

    .jouvert-ticker-item {
        font-size: 0.68rem;
        padding: 0 24px;
    }

    .jouvert-hero {
        padding: 120px 0 0;
        min-height: auto;
    }

    /* Reduce paint splatters on mobile for performance */
    .paint-splatter {
        display: none;
    }

    /* Keep only 2 subtle splatters */
    .splat-1,
    .splat-3 {
        display: block;
        width: 100px;
        height: 100px;
        filter: blur(30px);
    }

    /* Reduce particles on mobile */
    .jv-particle:nth-child(n+5) {
        display: none;
    }

    .jouvert-flyer-container {
        max-width: 90%;
        padding: 0 16px;
    }

    /* Floating badge - repositioned for mobile */
    .flyer-badge-float {
        top: -8px;
        right: -4px;
        padding: 7px 14px;
        font-size: 0.6rem;
        letter-spacing: 1.5px;
    }

    /* Glow backdrop smaller */
    .flyer-glow-backdrop {
        width: 110%;
        height: 110%;
        filter: blur(35px);
    }

    .jouvert-content-inner {
        padding: 32px 20px 28px;
    }

    .jouvert-content {
        margin: -20px 16px 0;
        border-radius: 18px;
    }

    .jv-event-title {
        font-size: 1.8rem;
        letter-spacing: 3px;
    }

    .jv-tickets-header {
        display: none;
    }

    .jv-ticket-row {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: center;
        padding: 16px 14px;
    }

    .jv-ticket-price {
        text-align: center;
    }

    .jv-ticket-qty {
        justify-content: center;
    }

    /* Bigger touch targets on mobile */
    .jv-qty-btn {
        width: 40px;
        height: 42px;
        font-size: 1.15rem;
    }

    .jv-qty-value {
        width: 40px;
        height: 42px;
        line-height: 42px;
        font-size: 1.1rem;
    }

    .jv-meta-row {
        flex-direction: column;
        gap: 2px;
    }

    .jv-pickup-row {
        flex-direction: column;
        gap: 2px;
    }

    .jv-subtotal {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .jv-section-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .jouvert-hero {
        padding: 110px 0 0;
    }

    .jv-event-title {
        font-size: 1.4rem;
        letter-spacing: 2px;
    }

    .jouvert-content {
        margin: -10px 8px 0;
    }

    .jouvert-content-inner {
        padding: 24px 14px 24px;
    }

    .jv-org {
        font-size: 0.6rem;
        letter-spacing: 3px;
    }

    .jv-event-date {
        font-size: 0.72rem;
    }

    .jv-ticket-name {
        font-size: 0.78rem;
    }

    .jv-ticket-desc {
        font-size: 0.65rem;
    }

    .jv-ticket-price {
        font-size: 1rem;
    }

    .jv-next-btn {
        padding: 14px;
        font-size: 0.72rem;
    }

    /* Reduce hero flyer glow effects */
    .flyer-border-glow {
        inset: -2px;
    }

    .flyer-shimmer {
        display: none;
    }

    .jouvert-bottom-space {
        padding: 40px 0;
    }
}