@font-face {
  font-family: 'Sora';
  src: url('./font/Sora/Sora-VariableFont_wght.ttf') format('truetype');
  font-weight: 300 800; /* Enables weights from 400 to 700 */
  font-style: normal;
  font-display: swap;
}

:root{
    /*Generic Variables*/
    --font: "Sora", sans-serif;

    --black: #030303;
    --white: #fff;
    --warning: #FF0080;
    --label-color: #040447;
    --highlight-color: #5c51cc;
    --warning-color: #E2F12D;

    --font-size-tiny: 14px;
    --font-size-text: 18px;
    --font-size-medium: 24px;
    --font-size-big: 26px;
    --font-size-bigger: 30px;

    --font-size-titles: 28px;
    --font-size-quotes: 30px;
    --font-size-small-titles: 22px;

    --title-weight: 700;

    --link-color: #fff;
    --link-weight: 700;

    /*Header and menu variables*/
    --header-radius: 0 0 40px 40px;
    --menu-gradient: radial-gradient(216.8% 76.37% at 74.83% 36.25%, rgba(255, 51, 186, 0.20) 0%, rgba(255, 51, 186, 0.00) 100%), linear-gradient(90deg, #361A75 0%, #6530DB 100%);

    --font-size-header-links: 16px;
    --font-size-footer-links: 20px;

    /*button variables*/
    --font-size-tiny-btn: 12px;
    --font-size-btn: 20px;

    --btn-weight: 700;

    --btn-main-color: #030303;
    --btn-main-gradient: radial-gradient(45.91% 85.94% at 55.4% 14.06%, rgba(255, 255, 255, 0.40) 0%, rgba(255, 255, 255, 0.03) 100%), radial-gradient(121.48% 78.97% at 22.73% 20.31%, rgba(226, 241, 45, 0.20) 18.63%, rgba(226, 241, 45, 0.19) 100%), radial-gradient(177.49% 126.29% at 33.52% -15.63%, #E0E342 0%, rgba(35, 173, 140, 0.58) 85.15%), radial-gradient(317.72% 44.57% at 82.39% 55.47%, #41FF48 0%, #00BCB1 100%), #030303;
    --btn-main-shadow: 0 -5.244px 7.6px 0 rgba(255, 255, 255, 0.60) inset, -7.6px -15.2px 38.001px 0 rgba(250, 255, 0, 0.20), 7.6px 15.2px 60.801px 0 rgba(30, 233, 50, 0.30);

    --btn-secondary-color: #FFF;
    --btn-secondary-gradient: radial-gradient(395.27% 77.56% at 25.57% 34.38%, rgba(255, 255, 255, 0.30) 0%, rgba(255, 255, 255, 0.00) 100%), radial-gradient(342.27% 110.48% at -3.98% 12.5%, #FF33BA 19.65%, rgba(237, 66, 179, 0.00) 100%), radial-gradient(74.86% 100.16% at 43.75% 114.06%, #AD12F5 0%, #62FAFD 80.98%), #55128A;
    --btn-secondary-shadow: 0 0 13.938px 0 rgba(255, 255, 255, 0.50) inset, 0 4px 9.6px 0 rgba(0, 0, 0, 0.25), -13.938px -6.969px 34.846px 0 rgba(102, 67, 242, 0.50), 6.969px 13.938px 55.753px 0 rgba(218, 37, 156, 0.30), 0 6.969px 41.815px 0 rgba(125, 20, 208, 0.80);
    
    --btn-simple-color: #FFF;
    --btn-simple-bg: #5C27FE;

    /*Lists variables*/
    --list-bullet-size: 30px;
    --list-bullet-weight: 800;

    /*Form variables*/
    --label-weight: 600;
    --font-size-radio: 20px;
    --radio-border-color: #D2D2D2;
    --radio-background: #62C4FA;
    --check-color: #C4C4C4;

    --carousel-dot-bg: #D9D9D9;
    --carousel-dot-active-bg: #41FF48;

    --overlay-bg: rgba(0, 0, 0, 0.8);

    /*global style*/
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

html, body {
  overflow-x: hidden;
}

ul {
    padding: 0;
    margin: 0;
}

ol {
  list-style: none;
  counter-reset: list-counter;
}

ol li {
  counter-increment: list-counter;
  position: relative;
  padding-left: 20px;
}

ol li::before {
  content: counter(list-counter);
  position: absolute;
  left: 0;
  top: 0;
}

a {
    font-weight: var(--link-weight);
    color: var(--link-color);
}

.content-inner {
    max-width: 1500px;
    width: 100%;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

.btn {
    display: inline-block;
    align-items: center;
    height: 60px;
    line-height: 60px;
    padding: 0 30px;
    border-radius: 30px;
    border: none;
    text-transform: uppercase;
    font-weight: var(--btn-weight);
    font-size: var(--font-size-btn);
}

.btn.main-btn{
    color: var(--btn-main-color);
    background: var(--btn-main-gradient);
}

.btn.main-btn:hover{
    box-shadow: var(--btn-main-shadow);
}

.btn.secondary-btn{
    color: var(--btn-secondary-color);
    background: var(--btn-secondary-gradient);
}

.btn.secondary-btn:hover{
    box-shadow: var(--btn-secondary-shadow);
}

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

body {
    background-color: var(--black);
    color: var(--white);
    overflow-x: hidden;
    font-family: var(--font);
    line-height: 1.4;
}

body::before {
    content: '';
    height: 2887px;
    background-image: url(./images/filter-1.svg);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    position: absolute;
    z-index: 1;
}

/*HEADER AND MENU*/
header {
    position: fixed;
    top: 0%;
    left: 50%;
    transform: translateX(-50%);
    padding: 23px 38px 22px;
    background: var(--menu-gradient);
    border-radius: 0 0 20px 20px;
    max-width: 1606px;
    width: 100%;
    z-index: 9;
    height: 70px;
    transition: top 0.3s, height 0.3s;
    overflow: hidden;
}

header.open{
    height: 104%;
    transition: top 0.3s, height 0.3s;
}

header.header-hidden {
    top: -100%;
    transition: top 0.3s;
}

header .logos{
    max-width: 50%;
    margin-right: 15px;
}

header .logos img{
    max-height: 25px;
    object-fit: contain;
    width: 100%;
    height: 100%;
    object-position: left;
}

header nav {
    display: flex;
    justify-content: space-between;
}

header .menu {
    width: 578px;
    max-width: 100%;
    margin-left: 15px;
}

.menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

.menu a {
    text-decoration: none;
    position: relative;
    text-transform: uppercase;
    font-size: var(--font-size-header-links);
    padding: 16px 0;
}

.menu a:not(.btn)::after{
    position: absolute;
    bottom: 22px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--link-color);
    content: '';
    opacity: 0;
    transition: height 0.3s, opacity 0.3s, bottom 0.3s;
    pointer-events: none;
}

.menu a:hover:not(.btn)::after{
    height: 3px;
    opacity: 1;
    bottom: 12px;
}

.menu .btn.main-btn {
    height: 54px;
    padding: 0 21px;
    line-height: 54px;
    font-size: var(--font-size-tiny-btn);
}

/*BANNER*/
.animated-text {
    filter: drop-shadow(0 0 20px #0a8bc4) drop-shadow(0 0 40px #0a8bc4);
    animation: neonFlicker 4s infinite;
}

.animated-text:hover {
    animation: neonPulse 1s infinite alternate;
}

.banner {
    padding-top: 70px;
    height: 100vh;
    background-image: url('./images/img-header-background-2.jpg');
    background-size: cover;
    background-position-x: right;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    text-align: center;
}

.banner h1 svg {
    max-width: 100%;
    width: 272px;
    height: 79px;
}

.banner .power-up {
    width: 315px;
    height: 50px;
    transform: translateY(-20px);
}

.banner span {
    font-size: var(--font-size-big);
    display: block;
    padding-bottom: 36px;
}

/*CONTENT*/
h2 {
    font-size: var(--font-size-titles);
    font-weight: var(--title-weight);
}

.participate {
    position: relative;
    z-index: 2;
}

.participate .list {
    padding: 70px 0;
}

.participate .list li {
    padding-left: 65px;
    min-height: 50px;
    display: flex;
    align-items: center;
}

.participate .list li:not(:last-child) {
    margin-bottom: 40px;
}

.participate .list li::before {
    font-size: var(--list-bullet-size);
    font-weight: var(--list-bullet-weight);
    border: 2px solid var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
}

.participate-image {    
    position: relative;
    min-height: 258px;
}

.participate-image img {
    width: 100%;
}

.rewards {
    overflow: hidden;
}

.rewards .title-wrapper{
    text-align: center;
}

.rewards .title-wrapper span{
    font-size: var(--font-size-medium);
    display: inline-block;
}

/*CAROUSEL STYLE*/
.rewards .owl-slide {
    padding-top: 231px;
}

.rewards .owl-slide img{
    max-width: 253px;
    margin: 0 auto;
}

.rewards .reward-light {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.gradient-text {
    display: block;
    text-align: center;
    font-size: var(--font-size-quotes);
    font-weight: var(--title-weight);

    background: radial-gradient(57.81% 391.02% at 25.57% 34.38%, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%), radial-gradient(100.45% 338.21% at -3.98% 12.5%, #FF33BA 19.65%, rgba(237, 66, 179, 0) 100%), radial-gradient(306.33% 47.97% at -60.61% 62.12%, #AD12F5 0%, #62FAFD 80.98%), #55128A;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent; /* Required */
    color: transparent; /* Fallback */
    text-shadow: 0px 3.08709px 7.40901px rgba(0, 0, 0, 0.25), 5.3786px 10.7572px 43.0288px rgba(218, 37, 156, 0.3), 0px 5.3786px 32.2716px rgba(125, 20, 208, 0.8);
}

/*Form*/
.form{
    text-align: center;
    position: relative;
}

.form .gradient-text{
    padding: 90px 0 60px;
}

.form form {
    position: relative;
    padding: 80px 50px 65px;
    color: var(--label-color);
    max-width: 702px;
    margin: 40px auto 0;
    border-radius: 28px;
    background-color: var(--white);
    box-shadow: 0 4px 9.6px 0 rgba(0, 0, 0, 0.25), 0 0 13.938px 0 rgba(255, 255, 255, 0.50) inset, -13.938px -6.969px 50.8px 0 rgba(102, 67, 242, 0.50), 6.969px 13.938px 55.753px 0 rgba(218, 37, 156, 0.30), 0 6.969px 41.815px 0 rgba(125, 20, 208, 0.80);
}

.form::before {
    content: '';
    height: 2887px;
    background-image: url(./images/filter-2.svg);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    position: absolute;
    z-index: 1;
    left: 0;
    top: -850px;
}

.form form::after {
    content: '';
    background-image: url(./images/img-rapaz-encostado.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    right: -269px;
    top: 0;
    z-index: 1;
    width: 292px;
    height: 983px;
}


.form .row {
    text-align: left;
}

label, .label {
    color: var(--label-color);
    font-weight: var(--label-weight);
    padding-bottom: 10px;
    display: inline-block;
}

label.required::after,
.label.required::after {
    content: "*";
    color: var(--warning)
}

input:not(.radio input, .check input) {
    width: 100%;
    border-radius: 8px;
    border: 1px solid var(--Grey-300, #D8DDE3);
    box-shadow: 0 0 4px 0 rgba(23, 25, 28, 0.05);
    padding: 0 10px;
    line-height: 50px;
    margin-bottom: 35px;
}

.form .btn{
    line-height: 50px;
    font-size: var(--font-size-tiny-btn);
    height: 50px;
    line-height: 50px;
    margin-top: 32px;
    display: inline-block;
}

.form button.btn{
    font-size: var(--font-size-btn);
}

.radio,
.check {
    display: block;
    position: relative;
    padding: 20px 0 20px 67px;
}

.radio input,
.check input {
    opacity: 0;
    position: absolute;
    left: 0;
}

.radio .helper::before {
    position: absolute;
    content: '';
    width: 40px;
    height: 40px;
    left: 0;
    top: 12px;
    border-radius: 50%;
    border: 3px solid var(--radio-border-color);
}

.radio .helper::after {
    content: '';
    position: absolute;
    -webkit-transform: scale(0);
    transform: scale(0);
    transition: transform 0.28s ease;
    border-radius: 50%;
    background-color: var(--radio-background);
    width: 22px;
    height: 22px;
    left: 9px;
    top: 21px;
}

.radio input:checked ~ .helper::after {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.check,
.check a {
    font-size: var(--font-size-tiny);
    color: var(--check-color);
}

.check .helper::before {
    position: absolute;
    content: '';
    width: 25px;
    height: 25px;
    border-radius: 4px;
    background-color: var(--radio-background);
    left: 8px;
    top: 19px;
}

.check .helper::after {
    position: absolute;
    font-family: 'Fontello';
    content: '\e802';
    -webkit-transform: scale(0);
    transform: scale(0);
    transition: transform 0.28s ease;
    color: var(--white);
    text-align: center;
    line-height: 25px;
    font-size: var(--font-size-text);
    left: 10px;
    top: 19px;
}

.check input:checked ~ .helper::after {
    -webkit-transform: scale(1);
    transform: scale(1);
}

form .btn.simple-btn {
    width: 100%;
}

form .btn.simple-btn i::before{
    transform: translateX(-10px);
}

.winners{
    position: relative;
    padding: 75px 0 50px;
    background-image: url(./images/img-vencedores.png);
    background-position: center;
    background-repeat: no-repeat;
}

.winners::before{
    content: '';
    background-image: url(./images/img-neon-esquerda.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: calc(50% - 800px);
    top: 75px;
    z-index: 1;
    width: 423px;
    height: 674px;
}

.winners::after{
    content: '';
    background-image: url(./images/img-neon-direita.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    right: calc(50% - 800px);
    top: 75px;
    z-index: 1;
    width: 423px;
    height: 674px;
}

.card-winner {
    position: relative;
    max-width: 610px;
    margin: 170px auto 40px;
    padding: 80px 37px 40px;
    text-align: center;
    background-color: var(--white);
    border-radius: 28px;
    box-shadow: 0 4px 9.6px 0 rgba(0, 0, 0, 0.25), 0 0 13.938px 0 rgba(255, 255, 255, 0.50) inset, -13.938px -6.969px 50.8px 0 rgba(102, 67, 242, 0.50), 6.969px 13.938px 55.753px 0 rgba(218, 37, 156, 0.30), 0 6.969px 41.815px 0 rgba(125, 20, 208, 0.80);
}

.card-winner img {
    position: absolute;
    top: -75px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 150px;
    object-fit: contain;
    background-color: var(--white);
    border-radius: 50%;
}

.card-winner h3 {
    color: var(--black);
    font-size: var(--font-size-small-titles);
    margin: 0;
}

.card-winner h3 strong{
    color: var(--highlight-color);
}

.card-winner span{
    display: block;
    color: var(--black);
    padding: 35px 0 40px;
}

.notification .row{
    margin: 50px 0 70px;
}

.notification h2{
    text-shadow: -20px -20px 60px rgba(255, 231, 106, 0.30), 0 20px 60px rgba(23, 193, 180, 0.20), 0 10px 60px rgba(128, 128, 128, 0.81);
    font-size: var(--font-size-titles);
    margin-bottom: 33px;
}

.notification .notification-content ul {
    padding-left: 20px;
}

.notification .notification-content li{
    padding-bottom: 30px;
}

.notification .notification-content .btn.btn.main-btn{
    margin-bottom: 30px;
    color: var(--white);
}

.stand .stand-content{
    padding-top: 70px;
}

.stand .stand-content img{
    margin-bottom: 30px;
}

.stand .stand-content span{
    display: block;
    font-size: var(--font-size-medium);
    padding: 20px 0 40px;
}

.stand .stand-content .btn.btn.main-btn{
    color: var(--white);
}

.why{
    position: relative;
    padding: 452px 0 70px;
}

.why::after {
    content: '';
    position: absolute;
    background-image: url(./images/braco.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 360px;
    height: 454px;
    top: 0;
    left: 0;
}

.why::before{
    content: '';
    position: absolute;
    width: 1145px;
    height: 1004px;
    bottom: -300px;
    right: -300px;
    background: #6DB3FF;
    mix-blend-mode: hard-light;
    filter: blur(686.2000122070312px);
    opacity: 0.5;
}

.why h2 {
    margin-bottom: 53px;
}

.why li::before {
    font-size: 62px;
    left: -32px;
    top: -15px;
    font-weight: var(--title-weight);
    text-align: center;
    width: 77px;
}

.why li {
    font-size: 15px;
    padding-left: 50px;
    padding-bottom: 25px;
}

.why li span {
    font-weight: var(--title-weight);
    display: block;
    font-size: 15px;
    color: var(--warning-color);
}

/* Overlay da modal */
.modal {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--overlay-bg);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 9999;
}
.modal.active {
    opacity: 1;
    pointer-events: all;
}
/* Imagem dentro da modal */
.modal img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    cursor: pointer;
    transition: transform 0.2s ease;
}
.modal img:hover {
    transform: scale(1.02);
}

.termos {
    padding-top: 90px;
}

.termos p {
    margin: 0;
}

.termos ol {
    padding: 0;
}

/*FOOTER*/
footer {
    text-align: center;
    padding: 85px 30px 104px;
    background: var(--menu-gradient);
    position: relative;
    z-index: 3;
}

footer .logos {
    max-width: 1038px;
    width: 100%;
}

footer .menu {
    padding-top: 50px;
    justify-content: center;
    flex-wrap: wrap;
}

footer .menu li{
    padding: 10px 20px;
    width: 100%;
}

footer .menu a{
    font-size: var(--font-size-footer-links);
}

@media (max-width: 1199px) {
    .bm-full {
        width: 100%;
    }
    
    header .menu {
        position: absolute;
        display: block;
        text-align: center;
        top: 90px;
        left: 0;
        margin: 0;
        width: 100%;
    }

    header .menu a ,
    header .menu .btn.main-btn {
        width: 100%;
        background: none;
        line-height: 36px;
        padding: 20px 0;
        display: block;
        color: var(--white);
        height: auto;
        font-size: var(--font-size-header-links);
    }

    header .menu a:hover ,
    header .menu .btn.main-btn:hover {
        box-shadow: none;
    }

    .banner .col-12 {
        display: flex;
        flex-direction: column;
        height: 100vh;
        padding: 100px 0;
        justify-content: space-between;
        align-items: center;
    }

    .banner .banner-content {
        max-width: 370px;
    }

    .stand-image img{
        width: 100%;
    }

    .rewards .owl-carousel::before {
        content: '';
        position: absolute;
        background-image: url(./images/reward-light.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
        width: 602px;
        height: 419px;
        top: 63px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 2;
        pointer-events: none;
    }

    .rewards .owl-carousel {
        margin: 0 -30px;
        width: calc(100% + 60px);
    }

    .form form {
        margin: 40px -30px 0;
        padding: 40px 30px 35px;
        max-width: none;
        border-radius: 0;
    }

    .rewards .reward-light {
        display: none;
    }

    .owl-carousel .owl-item:not(.center){
        opacity: 0.5;
    }

    .owl-carousel button.owl-dot {
        width: 43px;
        height: 3px;
        background: var(--carousel-dot-bg);
        margin: 0 10px;
    }

    .owl-carousel .owl-dots {
        text-align: center;
        padding-top: 45px;
    }

    .owl-carousel button.owl-dot.active {
        background: var(--carousel-dot-active-bg);
    }
}

/*DESKTOP*/
@media (min-width: 1200px) {
    :root{
        --font-size-titles: 60px;
        --font-size-quotes: 50px;

        --font-size-tiny-btn: 16px;
        --font-size-btn: 24px;
    }

    header {
        padding: 52px 83px 50px;
        height: 158px;
        overflow: visible;
        border-radius: 0 0 40px 40px;
    }

    header .logos img{
        max-height: 56px;
    }

    .banner {
        padding-top: 158px;
        height: calc(100vh + 126px);
        text-align: left;
        background-size: contain;
    }

    .banner h1 svg {
        width: 521px;
        height: 130px;
    }

    .banner .power-up {
        width: 621px;
        height: 135px;
        transform: translateY(0);
        transform: translateX(-45px);
    }

    .content-inner {
        padding-bottom: 126px;
    }

    .participate {
        transform: translateY(-126px);
    }

    .participate-image img {
        position: absolute;
        right: -150px;
        top: -60px;
        width: auto;
    }

    .form .gradient-text{
        padding: 180px 0 120px;
    }

    .winners{
        padding: 75px 0 130px;
    }

    .card-winner {
        margin: 297px auto 80px;
        padding: 80px 67px 40px;
    }

    .notification .row{
        background-image: url(./images/imagem-ganhaste.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
        margin: 100px 0 140px;
    }

    .notification .notification-content {
        padding: 111px 0 88px;
    }

    .stand .gradient-text{
        padding-bottom: 80px;
    }

    .why{
        position: relative;
        padding: 152px 0 250px;
    }

    .why::after {
        width: 771px;
        height: 985px;
        top: -100px;
    }

    .why li {
        font-size: var(--font-size-medium);
        padding-left: 76px;
        padding-bottom: 35px;
    }

    .why li::before {
        top: -27px;
        font-size: 121px;
    }

    .why li span {
        font-size: var(--font-size-bigger);
    }

    .stand .stand-content{
        padding-top: 134px;
    }

    .termos {
        padding-top: 178px;
    }

    footer .menu li{
        padding: 0 20px;
        width: auto;
    }
}


/*ANIMATIONS*/
@keyframes neonFlicker {
    0%, 100% { 
    opacity: 1;
    filter: drop-shadow(0 0 20px #0a8bc4) drop-shadow(0 0 40px #0a8bc4);
    }
    2% { 
    opacity: 0.8;
    filter: drop-shadow(0 0 10px #0a8bc4) drop-shadow(0 0 20px #0a8bc4);
    }
    4% { 
    opacity: 1;
    filter: drop-shadow(0 0 25px #0a8bc4) drop-shadow(0 0 50px #0a8bc4);
    }
    8% { 
    opacity: 0.9;
    filter: drop-shadow(0 0 15px #0a8bc4) drop-shadow(0 0 30px #0a8bc4);
    }
    12% { 
    opacity: 1;
    filter: drop-shadow(0 0 20px #0a8bc4) drop-shadow(0 0 40px #0a8bc4);
    }
    16% { 
    opacity: 0.85;
    filter: drop-shadow(0 0 12px #0a8bc4) drop-shadow(0 0 25px #0a8bc4);
    }
    18% { 
    opacity: 1;
    filter: drop-shadow(0 0 22px #0a8bc4) drop-shadow(0 0 45px #0a8bc4);
    }
    28% { 
    opacity: 0.7;
    filter: drop-shadow(0 0 8px #0a8bc4) drop-shadow(0 0 15px #0a8bc4);
    }
    30% { 
    opacity: 1;
    filter: drop-shadow(0 0 25px #0a8bc4) drop-shadow(0 0 50px #0a8bc4);
    }
    70% { 
    opacity: 0.9;
    filter: drop-shadow(0 0 18px #0a8bc4) drop-shadow(0 0 35px #0a8bc4);
    }
    72% { 
    opacity: 1;
    filter: drop-shadow(0 0 20px #0a8bc4) drop-shadow(0 0 40px #0a8bc4);
    }
    90% { 
    opacity: 0.85;
    filter: drop-shadow(0 0 15px #0a8bc4) drop-shadow(0 0 30px #0a8bc4);
    }
    92% { 
    opacity: 1;
    filter: drop-shadow(0 0 25px #0a8bc4) drop-shadow(0 0 50px #0a8bc4);
    }
}
    
@keyframes neonPulse {
    from {
    filter: drop-shadow(0 0 20px #0a8bc4) drop-shadow(0 0 40px #0a8bc4);
    }
    to {
    filter: drop-shadow(0 0 30px #0a8bc4) drop-shadow(0 0 60px #0a8bc4);
    }
}