/* =========================================================
   JOTA PRODUÇÕES
   STYLE.CSS COMPLETO
   Responsivo • Dark Party • Futurista
========================================================= */

/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    width: 100%;
    min-width: 0;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    width: 100%;
    min-width: 0;
    min-height: 100vh;

    font-family: "Poppins", sans-serif;

    background: #020202;
    color: #fff;

    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}

/* Evita elementos flex/grid criando largura maior que a tela */

main,
section,
header,
footer {
    width: 100%;
    max-width: 100%;
    min-width: 0;
}


/* =========================================================
   FUNDO
========================================================= */

.background {
    position: fixed;
    inset: 0;

    width: 100%;
    height: 100%;

    pointer-events: none;

    z-index: -10;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(112, 0, 255, .18),
            transparent 35%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(255, 0, 100, .08),
            transparent 30%
        ),
        #020202;
}


/* =========================================================
   GLOW
========================================================= */

.glow {
    position: fixed;

    width: 300px;
    height: 300px;

    border-radius: 50%;

    filter: blur(110px);

    opacity: .1;

    pointer-events: none;

    z-index: -5;

    animation:
        floatingGlow
        10s
        infinite alternate
        ease-in-out;
}

.glow-1 {
    background: #7b00ff;

    top: 5%;
    left: -150px;
}

.glow-2 {
    background: #ff006a;

    top: 45%;
    right: -150px;

    animation-delay: 2s;
}

.glow-3 {
    background: #3500ff;

    bottom: -200px;
    left: 30%;

    animation-delay: 4s;
}

@keyframes floatingGlow {

    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(70px, -50px);
    }
}


/* =========================================================
   METEOROS
========================================================= */

#meteors {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: -1;
}

.meteor {
    position: absolute;

    width: 2px;
    height: 45px;

    border-radius: 999px;

    background: linear-gradient(
        to bottom,
        transparent,
        rgba(255,255,255,0.5),
        #ffffff
    );

    transform-origin: center center;

    filter:
        drop-shadow(0 0 5px rgba(255,255,255,0.9))
        drop-shadow(0 0 12px rgba(150,200,255,0.5));

    opacity: 0;

    animation: meteorMove 1.8s linear forwards;
}

@keyframes meteorMove {

    0% {
        opacity: 0;
        transform: translate3d(0, -80px, 0) rotate(45deg);
    }

    10% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate3d(-350px, 700px, 0) rotate(45deg);
    }
}


/* =========================================================
   PARTICULAS
========================================================= */

#particles {
    position: fixed;
    inset: 0;

    width: 100%;
    height: 100%;

    pointer-events: none;

    z-index: -2;

    overflow: hidden;
}

.particle {
    position: absolute;

    width: 2px;
    height: 2px;

    border-radius: 50%;

    background: white;

    opacity: .3;

    animation:
        particleFloat
        8s
        infinite
        ease-in-out;
}

@keyframes particleFloat {

    0%,
    100% {
        transform: translateY(0);
        opacity: .15;
    }

    50% {
        transform: translateY(-40px);
        opacity: .7;
    }
}


/* =========================================================
   HEADER
========================================================= */

.header {
    position: fixed;

    top: 0;
    left: 0;
    right: 0;

    width: 100%;

    min-height: 78px;

    padding:
        15px
        clamp(18px, 4vw, 70px);

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    z-index: 1000;

    background:
        rgba(0,0,0,.55);

    backdrop-filter:
        blur(20px);

    -webkit-backdrop-filter:
        blur(20px);

    border-bottom:
        1px solid
        rgba(255,255,255,.05);
}

.brand {
    display: flex;

    align-items: center;

    flex: 0 1 auto;

    min-width: 0;
}

.brand img {
    width: clamp(110px, 11vw, 145px);

    height: auto;

    object-fit: contain;

    filter:
        drop-shadow(
            0 0 15px
            rgba(255,255,255,.15)
        );
}


/* =========================================================
   NAV DESKTOP
========================================================= */

.nav {
    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap:
        clamp(14px, 2.3vw, 35px);

    flex: 1;

    min-width: 0;
}

.nav a {
    white-space: nowrap;

    font-size:
        clamp(10px, 1vw, 13px);

    font-weight: 500;

    color:
        rgba(255,255,255,.7);

    transition:
        color .3s,
        transform .3s;
}

.nav a:hover {
    color: white;

    transform:
        translateY(-2px);
}


/* =========================================================
   MENU MOBILE
========================================================= */

.menu-button {
    display: none;

    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    border: 0;

    background:
        rgba(255,255,255,.05);

    outline: none;

    border:
        1px solid
        rgba(255,255,255,.1);

    border-radius: 12px;

    cursor: pointer;

    align-items: center;
    justify-content: center;

    flex-direction: column;

    gap: 5px;
}

.menu-button span {
    display: block;

    width: 21px;
    height: 2px;

    background: white;

    border-radius: 5px;

    transition: .3s;
}


/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu {
    display: none;

    position: fixed;

    top: 88px;

    left: 15px;
    right: 15px;

    width: auto;

    max-width: 500px;

    margin: 0 auto;

    z-index: 999;

    padding: 25px 20px;

    flex-direction: column;

    align-items: center;

    gap: 8px;

    background:
        rgba(5,5,5,.96);

    border:
        1px solid
        rgba(255,255,255,.1);

    border-radius: 20px;

    backdrop-filter:
        blur(25px);

    -webkit-backdrop-filter:
        blur(25px);

    box-shadow:
        0 20px 60px
        rgba(0,0,0,.6);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    width: 100%;

    padding: 13px;

    text-align: center;

    border-radius: 10px;

    color:
        rgba(255,255,255,.8);

    font-size: 14px;

    transition: .3s;
}

.mobile-menu a:hover {
    background:
        rgba(255,255,255,.05);

    color: white;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-height: 100svh;
    padding: clamp(140px, 16vh, 180px) 24px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-container {
    width: 100%;
    max-width: 880px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0px, 1.5vw, 15px);
    position: relative;
    z-index: 2;
    animation: heroIn 1.1s ease forwards;
}

.hero-content {
    flex: 1 1 480px;
    max-width: 480px;
    min-width: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 2;
}

@keyframes heroIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.location {
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    font-size: 11px;
    letter-spacing: 4px;
    color: rgba(255,255,255,.7);
    background: rgba(255,255,255,.05);
    padding: 6px 14px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.location span {
    width: 6px;
    height: 6px;
    flex: 0 0 6px;
    border-radius: 50%;
    background: #00c6ff;
    box-shadow: 0 0 10px #00c6ff;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%,
    100% {
        opacity: .4;
        transform: scale(.8);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.hero h1 {
    width: 100%;
    margin: 0 0 16px 0;
    font-size: clamp(34px, 4.2vw, 62px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: clamp(-2px, -.2vw, -2.8px);
    text-align: left;
}

.hero h1 strong {
    display: block;
    background: linear-gradient(90deg, #fff, #a855f7, #00c6ff, #fff);
    background-size: 200%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradientMove 5s infinite linear;
}

@keyframes gradientMove {
    0% {
        background-position: 0%;
    }
    100% {
        background-position: 200%;
    }
}

.hero p {
    width: 100%;
    margin: 0 0 26px 0;
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255,255,255,.7);
    text-align: left;
}

.hero-buttons {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.contact-buttons {
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-media {
    flex: 1 1 380px;
    max-width: 380px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -15px;
}

.hero-media-glow {
    position: absolute;
    width: min(100%, 300px);
    height: min(100%, 300px);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(168,85,247,.45) 0%, rgba(0,140,255,.25) 40%, transparent 68%);
    filter: blur(45px);
    pointer-events: none;
    animation: heroGlowPulse 5s ease-in-out infinite alternate;
}

@keyframes heroGlowPulse {
    0% {
        transform: scale(0.85);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.15);
        opacity: 1;
    }
}

.hero-media-card {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: heroFloat 5s ease-in-out infinite alternate;
}

@keyframes heroFloat {
    0% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-12px);
    }
}

.hero-image {
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,.75)) drop-shadow(0 0 35px rgba(168,85,247,.35));
}

.button {
    min-width: 190px;
    max-width: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,.1);
    transition: transform .3s, box-shadow .3s;
    white-space: nowrap;
}

.button .button-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.button b {
    font-size: 18px;
    font-weight: 400;
}

.button:hover {
    transform:
        translateY(-5px);

    box-shadow:
        0 15px 40px
        rgba(0,0,0,.5);
}


/* =========================================================
   FALE CONOSCO
   AZUL / CIANO
========================================================= */

.button-primary {
    background:
        linear-gradient(
            115deg,
            #0057ff 0%,
            #008cff 45%,
            #00c6ff 100%
        );

    background-size: 200% 200%;

    box-shadow:
        0 8px 30px
        rgba(0,119,255,.20);

    animation:
        blueGradient
        5s
        ease
        infinite;
}

.button-primary:hover {
    box-shadow:
        0 12px 40px
        rgba(0,153,255,.40);
}

@keyframes blueGradient {

    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}


/* =========================================================
   WHATSAPP
   VERDE
========================================================= */

.button-whatsapp {
    background:
        linear-gradient(
            115deg,
            #087f23 0%,
            #10b93d 45%,
            #25d366 100%
        );

    background-size: 200% 200%;

    box-shadow:
        0 8px 30px
        rgba(37,211,102,.20);

    animation:
        whatsappGradient
        5s
        ease
        infinite;
}

.button-whatsapp:hover {
    box-shadow:
        0 12px 40px
        rgba(37,211,102,.40);
}

@keyframes whatsappGradient {

    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}


/* =========================================================
   INSTAGRAM
========================================================= */

.button-instagram {
    background:
        linear-gradient(
            110deg,
            #833ab4,
            #fd1d1d,
            #fcb045
        );
}


/* =========================================================
   SCROLL
========================================================= */

.scroll-indicator {
    margin-top: 65px;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 12px;

    opacity: .35;
}

.scroll-indicator span {
    font-size: 8px;

    letter-spacing: 3px;
}

.mouse {
    width: 20px;
    height: 30px;

    border:
        1px solid white;

    border-radius: 20px;

    position: relative;
}

.mouse::after {
    content: "";

    position: absolute;

    width: 3px;
    height: 6px;

    top: 6px;
    left: 50%;

    transform:
        translateX(-50%);

    background: white;

    border-radius: 10px;

    animation:
        mouseScroll
        1.5s
        infinite;
}

@keyframes mouseScroll {

    to {
        transform:
            translate(-50%, 10px);

        opacity: 0;
    }
}


/* =========================================================
   SEÇÕES
========================================================= */

.section {
    width: 100%;

    padding:
        130px
        clamp(20px, 7vw, 100px);
}


/* =========================================================
   TÍTULOS
========================================================= */

.section-title span,
.eyebrow {
    font-size: 10px;

    letter-spacing: 4px;

    color: #a855f7;
}

.section-title h2,
.events h2,
.contact h2 {
    margin-top: 20px;

    font-size:
        clamp(
            40px,
            6vw,
            70px
        );

    line-height: 1.05;

    letter-spacing: -2px;
}

.section-title strong,
.events strong,
.contact strong {
    background:
        linear-gradient(
            90deg,
            white,
            #9b4dff
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}


/* =========================================================
   SOBRE
========================================================= */

.about-grid {
    width: 100%;

    margin-top: 70px;

    display: grid;

    grid-template-columns:
        repeat(
            3,
            minmax(0, 1fr)
        );

    gap: 20px;
}

.about-card {
    position: relative;

    width: 100%;
    min-width: 0;

    min-height: 300px;

    padding: 40px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.06),
            rgba(255,255,255,.015)
        );

    border:
        1px solid
        rgba(255,255,255,.08);

    border-radius: 25px;

    overflow: hidden;

    transition: .4s;
}

.about-card:hover {
    transform:
        translateY(-10px);

    border-color:
        rgba(168,85,247,.5);

    box-shadow:
        0 20px 70px
        rgba(100,0,255,.15);
}

.card-number {
    position: absolute;

    top: 25px;
    right: 30px;

    font-size: 12px;

    color:
        rgba(255,255,255,.25);
}

.card-icon {
    margin-bottom: 50px;

    font-size: 35px;

    color: #b76cff;
}

.about-card h3 {
    margin-bottom: 12px;

    font-size: 25px;
}

.about-card p {
    color:
        rgba(255,255,255,.5);

    line-height: 1.7;

    font-size: 14px;
}


.events {
    width: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.events-header {
    width: 100%;
    max-width: 700px;
    text-align: center;
    margin: 0 auto;
}

.events-header p {
    margin: 20px auto 0;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255,255,255,.6);
}

.events-grid {
    width: 100%;
    max-width: 1400px;
    margin: 15px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
    justify-content: center;
}

.event-card {
    position: relative;
    width: 100%;
    min-width: 0;
    aspect-ratio: 9 / 16;
    min-height: 460px;
    max-height: 560px;
    background: #050508;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 16px 45px rgba(0,0,0,.65);
    transition: transform .35s cubic-bezier(0.2, 0.8, 0.2, 1), border-color .35s ease, box-shadow .35s ease;
}

.event-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(168,85,247,.65);
    box-shadow: 0 24px 60px rgba(123,0,255,.28);
}

.custom-player {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #000;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    border-radius: inherit;
}

.custom-player:fullscreen,
.custom-player:-webkit-full-screen,
.custom-player.is-fullscreen {
    width: 100vw !important;
    height: 100vh !important;
    max-height: 100vh !important;
    aspect-ratio: auto !important;
    border-radius: 0 !important;
    border: none !important;
    background: #000 !important;
    z-index: 999999 !important;
}

.player-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background: #000;
    cursor: pointer;
    display: block;
}

.custom-player:fullscreen .player-video,
.custom-player:-webkit-full-screen .player-video,
.custom-player.is-fullscreen .player-video {
    object-fit: contain;
    width: 100vw;
    height: 100vh;
}

.player-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 16px 14px 34px;
    background: linear-gradient(to bottom, rgba(0,0,0,.85) 0%, rgba(0,0,0,.4) 65%, transparent 100%);
    z-index: 8;
    display: flex;
    align-items: center;
    gap: 10px;
    pointer-events: none;
    transition: opacity .3s ease, transform .3s ease;
}

.custom-player.is-playing.hide-controls .player-header {
    opacity: 0;
    transform: translateY(-10px);
}

.custom-player.is-playing.hide-controls:hover .player-header {
    opacity: 1;
    transform: translateY(0);
}

.event-badge {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    background: linear-gradient(135deg, rgba(168,85,247,.7), rgba(0,140,255,.7));
    border: 1px solid rgba(255,255,255,.35);
    padding: 4px 10px;
    border-radius: 20px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(0,0,0,.4);
    flex-shrink: 0;
}

.event-name {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    text-shadow: 0 2px 8px rgba(0,0,0,.9);
    flex: 1;
}

.player-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transition: opacity .3s ease;
    z-index: 7;
    background: rgba(0,0,0,.15);
}

.custom-player.is-playing .player-overlay {
    opacity: 0;
    pointer-events: none;
}

.player-big-play {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(123,0,255,.85), rgba(0,140,255,.85));
    border: 2px solid rgba(255,255,255,.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    box-shadow: 0 0 35px rgba(123,0,255,.75), 0 8px 25px rgba(0,0,0,.5);
    transition: transform .25s ease, box-shadow .25s ease;
}

.player-big-play:hover {
    transform: scale(1.14);
    box-shadow: 0 0 45px rgba(0,198,255,.9), 0 10px 30px rgba(0,0,0,.6);
}

.player-controls {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    box-sizing: border-box;
    padding: 24px 10px 10px;
    background: linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.6) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: opacity .3s ease, transform .3s ease;
    z-index: 10;
}

.custom-player.is-playing.hide-controls .player-controls {
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
}

.custom-player.is-playing.hide-controls:hover .player-controls {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.player-progress {
    position: relative;
    width: 100%;
    height: 6px;
    background: rgba(255,255,255,.2);
    border-radius: 4px;
    cursor: pointer;
    transition: height .2s ease;
}

.player-progress:hover {
    height: 8px;
}

.player-progress-buffered {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: rgba(255,255,255,.35);
    border-radius: 4px;
    pointer-events: none;
}

.player-progress-filled {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #7b00ff, #00c6ff);
    border-radius: 4px;
    pointer-events: none;
}

.player-progress-thumb {
    position: absolute;
    top: 50%;
    left: 0%;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    transform: translate(-50%, -50%) scale(0);
    transition: transform .2s ease;
    box-shadow: 0 0 8px rgba(0,0,0,.8);
    pointer-events: none;
}

.player-progress:hover .player-progress-thumb {
    transform: translate(-50%, -50%) scale(1);
}

.player-controls-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4px;
    width: 100%;
    min-width: 0;
}

.player-controls-left {
    display: flex;
    align-items: center;
    gap: 4px;
    min-width: 0;
    flex: 1 1 auto;
    overflow: hidden;
}

.player-controls-right {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    margin-left: auto;
}

.player-btn {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px;
    border-radius: 6px;
    flex-shrink: 0;
    padding: 0;
    transition: background .2s ease, transform .15s ease, color .2s ease;
}

.player-btn:hover {
    background: rgba(255,255,255,.14);
    color: #00c6ff;
    transform: scale(1.08);
}

.player-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.icon-pause {
    display: none;
}

.custom-player.is-playing .icon-play {
    display: none;
}

.custom-player.is-playing .icon-pause {
    display: block;
}

.icon-volume-low,
.icon-volume-muted {
    display: none;
}

.custom-player[data-volume-state="low"] .icon-volume-high {
    display: none;
}

.custom-player[data-volume-state="low"] .icon-volume-low {
    display: block;
}

.custom-player[data-volume-state="muted"] .icon-volume-high {
    display: none;
}

.custom-player[data-volume-state="muted"] .icon-volume-muted {
    display: block;
}

.icon-fullscreen-exit {
    display: none;
}

.custom-player.is-fullscreen .icon-fullscreen-enter {
    display: none;
}

.custom-player.is-fullscreen .icon-fullscreen-exit {
    display: block;
}

.player-volume-container {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-shrink: 0;
}

.player-volume-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 36px;
    height: 4px;
    background: rgba(255,255,255,.3);
    border-radius: 4px;
    outline: none;
    cursor: pointer;
    flex-shrink: 0;
    transition: background .2s ease, width .2s ease;
}

.player-volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #00c6ff;
    cursor: pointer;
    box-shadow: 0 0 6px rgba(0,198,255,.7);
}

.player-volume-slider::-moz-range-thumb {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #00c6ff;
    cursor: pointer;
    border: none;
}

.player-time {
    font-size: 10px;
    font-weight: 500;
    color: rgba(255,255,255,.8);
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
    margin-left: 2px;
    flex-shrink: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.events-cta {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    width: 100%;
}


/* =========================================================
   CONTATO
========================================================= */

.contact {
    display: flex;

    justify-content: center;

    text-align: center;

    min-width: 0;
}

.contact-box {
    width: 100%;

    max-width: 850px;

    min-width: 0;

    padding:
        80px 30px;

    border-radius: 35px;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(130,0,255,.2),
            transparent 50%
        ),
        rgba(255,255,255,.03);

    border:
        1px solid
        rgba(255,255,255,.08);
}

.contact h2 {
    margin-bottom: 25px;
}

.contact p {
    width: 100%;

    max-width: 550px;

    margin:
        0 auto 35px;

    color:
        rgba(255,255,255,.5);

    line-height: 1.8;
}

.large {
    min-width: 210px;
}

.phone {
    margin-top: 30px;

    font-size: 13px;

    letter-spacing: 2px;

    color:
        rgba(255,255,255,.35);
}


/* =========================================================
   FOOTER
========================================================= */

footer {
    width: 100%;

    padding:
        65px 20px 40px;

    text-align: center;

    border-top:
        1px solid
        rgba(255,255,255,.05);

    overflow: hidden;
}

.footer-logo img {
    width: 130px;

    height: auto;

    margin:
        0 auto 25px;
}

.footer-main {
    font-size: 13px;

    color:
        rgba(255,255,255,.75);
}

.footer-company {
    margin-top: 7px;

    font-size: 10px;

    color:
        rgba(255,255,255,.35);

    letter-spacing: .5px;
}

.footer-location {
    margin-top: 5px;

    font-size: 9px;

    letter-spacing: 2px;

    color:
        rgba(255,255,255,.25);
}

.footer-development {
    width: 100%;

    max-width: 600px;

    margin:
        30px auto 0;

    padding-top: 25px;

    border-top:
        1px solid
        rgba(255,255,255,.06);

    font-size: 10px;

    line-height: 1.8;

    color:
        rgba(255,255,255,.35);

    overflow-wrap: anywhere;
}

.footer-development a {
    color: #a855f7;

    font-weight: 600;

    transition: .3s;
}

.footer-development a:hover {
    color: #d09aff;

    text-shadow:
        0 0 15px
        rgba(168,85,247,.6);
}

.footer-cnpj {
    margin-left: 8px;
    color: rgba(255,255,255,.2);
}

.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
    z-index: 99999;
    transition: transform .3s ease, box-shadow .3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.65);
    color: #fff;
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    fill: #fff;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,.2));
}

.whatsapp-float::before {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: waPulse 2s infinite cubic-bezier(0.25, 0.1, 0.25, 1);
    pointer-events: none;
}

@keyframes waPulse {
    0% {
        transform: scale(0.95);
        opacity: 0.9;
    }
    70% {
        transform: scale(1.45);
        opacity: 0;
    }
    100% {
        transform: scale(1.45);
        opacity: 0;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .header {
        padding:
            15px 25px;
    }

    .nav {
        gap: 16px;
    }

    .nav a {
        font-size: 11px;
    }

    .hero-container {
        gap: 30px;
    }

    .events {
        gap: 35px;
    }

    .events-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
    }
}

@media (max-width: 1000px) {

    .hero-container {
        gap: 0px;
    }

    .hero-content {
        max-width: 440px;
    }

    .hero-media {
        max-width: 340px;
    }

    .hero-image {
        max-height: 420px;
    }
}

@media (max-width: 900px) {

    .header {
        gap: 15px;
    }

    .brand img {
        width: 125px;
    }

    .nav {
        gap: 12px;
    }

    .nav a {
        font-size: 10px;
    }

    .events {
        gap: 30px;
    }

    .events-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }
}

@media (max-width: 768px) {

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .header {
        min-height: 72px;
        width: 100%;
        padding: 14px 18px;
        gap: 15px;
    }

    .brand {
        min-width: 0;
    }

    .brand img {
        width: 125px;
        max-width: 100%;
    }

    .nav {
        display: none;
    }

    .menu-button {
        display: flex;
    }

    .hero {
        width: 100%;
        min-height: auto;
        padding: 130px 14px 25px;
        overflow: hidden;
    }

    .hero-container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 4px;
        text-align: left;
        width: 100%;
        max-width: 100%;
    }

    .hero-content {
        flex: 1 1 58%;
        max-width: 58%;
        min-width: 0;
        text-align: left;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        z-index: 2;
    }

    .hero h1 {
        width: 100%;
        font-size: clamp(20px, 5.8vw, 34px);
        line-height: 1.08;
        letter-spacing: -0.8px;
        overflow-wrap: break-word;
        text-align: left;
        margin-bottom: 8px;
    }

    .hero h1 strong {
        width: 100%;
    }

    .hero p {
        width: 100%;
        max-width: 100%;
        font-size: 11px;
        line-height: 1.45;
        margin: 0 0 14px 0;
        text-align: left;
    }

    .location {
        font-size: 8px;
        letter-spacing: 2px;
        padding: 4px 8px;
        margin-bottom: 8px;
        margin-left: 0;
        margin-right: 0;
    }

    .hero-media {
        flex: 0 0 42%;
        max-width: 42%;
        min-width: 0;
        margin: 0 0 0 -10px;
        order: 2;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-image {
        max-height: 270px;
        width: 100%;
        object-fit: contain;
    }

    .hero-media-glow {
        width: 160px;
        height: 160px;
        filter: blur(25px);
    }

    .hero-buttons {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 8px;
    }

    .hero-buttons .button {
        width: auto;
        max-width: 100%;
        min-width: 0;
        justify-content: center;
        padding: 9px 13px;
        font-size: 11px;
        gap: 6px;
    }

    .hero-buttons .button .button-icon {
        width: 13px;
        height: 13px;
    }

    .hero-buttons .button b {
        display: inline;
        font-size: 12px;
    }

    .scroll-indicator {
        margin-top: 15px;
    }

    .section {
        width: 100%;
        padding: 90px 18px;
    }

    .section-title,
    .events-header,
    .contact-box {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        margin-left: auto;
        margin-right: auto;
    }

    .section-title h2,
    .events h2,
    .contact h2 {
        width: 100%;
        font-size: clamp(34px, 9.5vw, 52px);
        line-height: 1.06;
        letter-spacing: -1.2px;
        overflow-wrap: break-word;
    }

    .about-grid {
        width: 100%;
        grid-template-columns: minmax(0, 1fr);
        gap: 15px;
        margin-top: 45px;
    }

    .about-card {
        width: 100%;
        min-width: 0;
        min-height: 250px;
        padding: 30px;
    }

    .events {
        width: 100%;
        min-height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 35px;
        text-align: center;
        overflow: hidden;
    }

    .events-grid {
        grid-template-columns: minmax(0, 1fr);
        max-width: 330px;
        gap: 22px;
        margin-top: 10px;
    }

    .event-card {
        border-radius: 20px;
    }

    .player-controls {
        padding: 20px 8px 10px;
    }

    .player-volume-slider {
        width: 32px;
    }

    .player-time {
        font-size: 9px;
    }

    .contact {
        width: 100%;
    }

    .contact-box {
        width: 100%;
        padding: 55px 18px;
        border-radius: 24px;
    }

    .contact p {
        width: 100%;
        max-width: 500px;
    }

    .contact-buttons {
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .contact-buttons .button {
        width: min(100%, 300px);
        min-width: 0;
        max-width: 300px;
        justify-content: center;
        padding: 14px 20px;
    }

    .contact-buttons .button b {
        display: none;
    }

    footer {
        width: 100%;
        padding: 55px 18px 35px;
    }

    .footer-development {
        width: 100%;
        max-width: 350px;
        margin: 28px auto 0;
        line-height: 1.9;
    }

    .footer-cnpj {
        display: block;
        margin: 4px 0 0;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 380px) {

    .header {
        padding: 13px 14px;
    }

    .brand img {
        width: 110px;
    }

    .hero {
        padding: 120px 10px 20px;
    }

    .hero h1 {
        font-size: 20px;
        letter-spacing: -0.6px;
    }

    .section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .section-title h2,
    .events h2,
    .contact h2 {
        font-size: 34px;
        letter-spacing: -1px;
    }

    .event-name {
        font-size: 14px;
    }

    .player-volume-slider {
        display: none;
    }

    .player-controls {
        padding: 8px 10px;
    }

    .hero-buttons .button,
    .contact-buttons .button {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 320px) {

    .brand img {
        width: 100px;
    }

    .hero h1 {
        font-size: 31px;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
    }
}