:root {
    --primary: #4a02b1;
    --secondary: #4fc8e4;
    --cloud-dance: #f1f3f4;
    --neon-pink: #ff00ff;
    --neon-cyan: #00ffff;
    --neon-yellow: #f0ff00;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

section {
    width: 100%;
    overflow-x: hidden;
}

.video-parallax-container {
    position: relative !important;
    background: #000 !important;
    overflow: hidden !important;
}

/* Efeito de brilho no título */
.text-neon-glow {
    color: #fff !important;
    text-transform: uppercase;
    text-shadow:
        0 0 10px var(--neon-cyan),
        0 0 20px var(--neon-cyan);
    animation: glow-pulse 3s infinite alternate;
}

@keyframes glow-pulse {
    from {
        text-shadow:
            0 0 10px var(--neon-cyan),
            0 0 20px var(--neon-cyan);
    }

    to {
        text-shadow:
            0 0 15px var(--neon-pink),
            0 0 30px var(--neon-pink);
    }
}

/* Estilo do Botão Chamativo */
.btn-vibrante-agressivo {
    background: var(--neon-yellow) !important;
    color: #000 !important;
    box-shadow: 0 0 20px rgba(240, 255, 0, 0.5);
    border: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
    text-decoration: none;
}

.btn-vibrante-agressivo:hover {
    transform: scale(1.1) rotate(-1deg);
    background: #fff !important;
    box-shadow: 0 0 40px var(--neon-yellow);
}

/* Efeito de LED nos Cards (Glass-Vibrant) */
.glass-vibrant {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Mudança de cor no Hover (Efeito LED) */
.glass-vibrant:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    transform: translateY(-10px);
}

/* Card Específicos com cores de LED diferentes no hover */
.glass-vibrant:nth-child(1):hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.4);
}

.glass-vibrant:nth-child(2):hover {
    border-color: var(--neon-pink);
    box-shadow: 0 0 25px rgba(255, 0, 255, 0.4);
}

.glass-vibrant:nth-child(3):hover {
    border-color: var(--neon-yellow);
    box-shadow: 0 0 25px rgba(240, 255, 0, 0.4);
}

.glass-vibrant:nth-child(4):hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.4);
}

/* ==========================================================================
   LAYOUT ORIGINAL (PRESERVADO)
   ========================================================================== */
.plano-card {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.plano-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px -12px rgba(74, 2, 177, 0.2);
}

.badge-scroll {
    animation: scrollLeft 25s linear infinite;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.google-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
    transition: all 0.3s;
}

.google-card:hover {
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25);
}

@keyframes pulse-neon {
    0%,
    100% {
        box-shadow: 0 0 5px #4fc8e4;
    }

    50% {
        box-shadow: 0 0 25px #4fc8e4;
    }
}

.venda-agressiva {
    background: linear-gradient(135deg, #4a02b1 0%, #a855f7 100%) !important;
    color: white !important;
    border: 3px solid #4fc8e4 !important;
    animation: pulse-neon 2s infinite;
}

.selo-flash {
    background: #ff0055;
    color: white;
    font-size: 10px;
    font-weight: 900;
    padding: 4px 12px;
    border-radius: 4px;
    display: inline-block;
    animation: shake 0.3s infinite;
    text-transform: uppercase;
}

@keyframes shake {
    0%,
    100% {
        transform: rotate(-5deg);
    }

    50% {
        transform: rotate(5deg);
    }
}

.btn-vibrante {
    position: relative;
    overflow: hidden;
    background: #4fc8e4;
    color: #4a02b1;
}

.btn-vibrante::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.6),
        transparent
    );
    transition: all 0.6s;
}

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

@media (max-width: 1024px) {
    .video-parallax-container {
        padding: 4rem 1rem !important;
    }

    .content-premium h2 {
        font-size: 3rem !important;
    }
}

@-webkit-keyframes tada {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    10%,
    20% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    }

    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }

    40%,
    60%,
    80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes tada {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        -ms-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    10%,
    20% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
        -ms-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    }

    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        -ms-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }

    40%,
    60%,
    80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        -ms-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        -ms-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

/* Main WhatsApp button container */
#whatsapp-button {
    /* Positioning */
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;

    /* Size and shape */
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: #18c161;
    padding: 7px;

    /* Center content */
    display: flex;
    justify-content: center;
    align-items: center;

    /* Animation */
    cursor: pointer;
    animation: pulse-whatsapp 1.5s infinite linear;
}

/* SVG icon inside the link */
#whatsapp-button > a > svg {
    width: 49px;
    height: 49px;
    color: #fff;
    transition: transform 0.4s ease;
}

/* Hover effect for the icon */
#whatsapp-button:hover > a > svg {
    transform: scale(1.1);
}

/* Badge (number indicator) */
#whatsapp-button > div {
    /* Positioning */
    position: absolute;
    top: -5px;
    right: -5px;

    /* Size and shape */
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #e44436;

    /* Text styling */
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    line-height: 20px;
    text-align: center;

    /* Animation */
    animation: badge-bounce 5s infinite 2s;

    animation:
        badge-appear-disappear 4s infinite,
        badge-bounce 5s infinite 2s;
}

/* Pulse animation for the button */
@keyframes pulse-whatsapp {
    0% {
        box-shadow:
            0 0 0 0 transparent,
            0 1px 0 5px transparent;
    }

    30% {
        box-shadow:
            0 0 0 5px rgba(56, 132, 93, 0.8),
            0 1px 0 5px transparent;
    }

    70% {
        box-shadow:
            0 0 0 8px rgba(40, 94, 67, 0.5),
            0 1px 0 5px transparent;
    }

    100% {
        box-shadow:
            0 0 0 10px transparent,
            0 1px 0 5px transparent;
    }
}

/* Configurações do Swiper */
.mySwiper {
    width: 100%;
    height: 100vh;
}

.swiper-pagination-bullet {
    background: #fff !important;
    width: 12px;
    height: 12px;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--secondary) !important;
    width: 30px;
    border-radius: 5px;
    opacity: 1;
    transition: all 0.3s;
}

/* Botão Saiba Mais - Efeito Neon Glass */
.btn-neon-glass {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid var(--neon-pink);
    color: #fff;
    transition: all 0.4s ease;
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-neon-glass:hover {
    background: var(--neon-pink);
    box-shadow: 0 0 40px rgba(255, 0, 255, 0.6);
    transform: translateY(-3px) scale(1.05);
}

.btn-neon-glass::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.4);
    transform: rotate(30deg);
    transition: all 0.6s;
}

.btn-neon-glass:hover::after {
    left: 120%;
}

/* Spans com Gradiente Animado */
.span-premium {
    background: linear-gradient(90deg, #ff00ff, #00ffff, #ff00ff);
    background-size: 200% auto;
    color: white;
    font-weight: 900;
    padding: 6px 16px;
    border-radius: 8px;
    display: inline-block;
    animation: gradient-shift 3s linear infinite;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Span de Dados (Cyberpunk) */
.span-data {
    border-left: 4px solid var(--neon-cyan);
    background: rgba(0, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 0 0.5rem 0.5rem 0;
}

/* Efeito de Vidro com Borda Neon (LED) */
.span-data-led {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.3);
    padding: 1.5rem;
    border-radius: 1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    min-width: 160px;
}

/* Brilho Interno do Número */
.led-number {
    font-weight: 900;
    line-height: 1;
    display: block;
    text-shadow:
        0 0 10px currentColor,
        0 0 20px currentColor;
}

/* Variantes de Cor LED */
.led-cyan {
    color: #00ffff;
    border-color: #00ffff;
    box-shadow:
        inset 0 0 15px rgba(0, 255, 255, 0.2),
        0 0 15px rgba(0, 255, 255, 0.1);
}

.led-pink {
    color: #ff00ff;
    border-color: #ff00ff;
    box-shadow:
        inset 0 0 15px rgba(255, 0, 255, 0.2),
        0 0 15px rgba(255, 0, 255, 0.1);
}

.span-data-led:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.07);
}

.led-label {
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.5rem;
    display: block;
    opacity: 0.9;
}

:root {
    --orange-neon: #ff6a00;
    --orange-glow: #ffb400;
}

/* --- ANIMAÇÕES DO FOGUETE --- */
@keyframes rocket-fly-diagonal {
    0% {
        transform: translate(-20vw, 20vh);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translate(120vw, -120vh);
        opacity: 0;
    }
}

@keyframes flame-pulse {
    0% {
        transform: scaleY(1) rotate(50deg);
        opacity: 0.8;
    }

    100% {
        transform: scaleY(1.4) rotate(50deg);
        opacity: 1;
    }
}

.rocket-launch-system {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 50;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
    animation: rocket-fly-diagonal 5s linear infinite;
}

.rocket-launch-system i {
    font-size: 5rem;
    color: var(--orange-neon);
    filter: drop-shadow(0 0 15px var(--orange-neon));
}

.rocket-launch-system .flame {
    width: 20px;
    height: 45px;
    background: linear-gradient(
        to bottom,
        var(--orange-neon),
        var(--orange-glow),
        transparent
    );
    border-radius: 50% 50% 20% 20%;
    margin-left: -75px;
    margin-top: -25px;
    box-shadow: 0 -5px 15px var(--orange-neon);
    animation: flame-pulse 0.1s infinite alternate;
}

/* --- BOTÃO DECOLAR PULSANTE --- */
.btn-decolar {
    background: linear-gradient(45deg, #ff4500, #ff8c00);
    color: white;
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
    box-shadow: 0 0 20px rgba(255, 69, 0, 0.5);
    animation: pulse-orange-glow 2s infinite;
}

@keyframes pulse-orange-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 106, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 106, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 106, 0, 0);
    }
}

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

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

/* --- AJUSTES SWIPER --- */
.swiper-pagination-bullet-active {
    background: var(--orange-neon) !important;
}

header {
    background: linear-gradient(135deg, #4a02b1 0%, #a855f7 100%) !important;
}
header a {
    color: var(--cloud-dance);
}
header a:hover {
    color: var(--neon-cyan);
}
