/* Reset e Fontes */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

/* --- ESTILO GLOBAL (DARK MODE) --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

:root {
    --primary: #00e676;
    /* Verde Neon */
    --primary-hover: #00c853;
    --dark-bg: #111;
    --card-bg: #1a1a1a;
    --input-bg: #222;
    --light-text: #fff;
    --gray-text: #aaa;
    --overlay-color: rgba(0, 0, 0, 0.7);
    --error-color: #ff5252;
}

body {
    background-color: var(--dark-bg);
    color: var(--light-text);
}

/* --- Navegação --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -1px;
    text-decoration: none;
}

.nav-links a {
    color: #ccc;
    text-decoration: none;
    margin-left: 20px;
    font-size: 0.9rem;
    transition: 0.3s;
}

.nav-links a:hover {
    color: white;
}

.btn-login {
    border: 1px solid var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    color: var(--primary) !important;
}

.btn-login:hover {
    background: var(--primary);
    color: black !important;
}

/* --- Hero Section & Video --- */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-color: #000;
    /* Cor de fundo caso vídeo falhe */
}



.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    padding: 20px;
    z-index: 2;
    position: relative;
    animation: fadeIn 1.5s ease;
}

/* --- Títulos e Textos --- */
.badge {
    background: rgba(0, 230, 118, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    border: 1px solid rgba(0, 230, 118, 0.3);
}

h1 {
    font-size: 3.5rem;
    margin: 20px 0;
    line-height: 1.1;
    font-weight: 700;
}

p {
    font-size: 1.2rem;
    color: var(--gray-text);
    margin-bottom: 30px;
    line-height: 1.6;
}

/* --- Botões --- */
.cta-group {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-primary {
    background: var(--primary);
    color: black;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: scale(1.05);
    background: var(--primary-hover);
    box-shadow: 0 0 20px rgba(0, 230, 118, 0.4);
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 13px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-secondary:hover {
    background: white;
    color: black;
}

/* --- Cards e Seções --- */
.section-dark {
    background: var(--dark-bg);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.section-light {
    background: var(--card-bg);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

/* Mudado para Dark suave */
.grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    padding: 30px;
    background: #222;
    border: 1px solid #333;
    border-radius: 15px;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.card h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

/* --- FORMULÁRIOS (LOGIN E PLATAFORMA) --- */
.login-body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: radial-gradient(circle at center, #222 0%, #000 100%);
}

.login-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.05));
    padding: 36px;
    border-radius: 14px;
    width: 100%;
    max-width: 420px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.03);
    box-shadow: 0 8px 30px rgba(2, 6, 23, 0.6);
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.input-group {
    text-align: left;
    margin-bottom: 16px;
    width: 100%;
}

.input-group label {
    color: var(--gray-text);
    font-size: 0.9rem;
    margin-bottom: 6px;
    display: block;
}

.input-group input {
    width: 100%;
    padding: 14px 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    outline: none;
    transition: box-shadow 0.18s, border-color 0.18s;
}

.input-group input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.input-group input:focus {
    border-color: var(--primary);
    box-shadow: 0 6px 20px rgba(0, 230, 118, 0.06);
}

.toggle-btn {
    background: none;
    border: none;
    color: var(--gray-text);
    cursor: pointer;
    margin-top: 12px;
    font-size: 0.9rem;
    transition: color 0.18s;
}

.toggle-btn:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* --- PLATAFORMA --- */
.plataforma-header {
    background: #000;
    border-bottom: 1px solid #333;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.status-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #333;
    max-width: 600px;
    margin: 50px auto;
    text-align: center;
}

.status-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
}

.bloqueado {
    border-color: var(--error-color);
}

.bloqueado h2 {
    color: var(--error-color);
}

/* Small helpers to match requested centered, Facebook-like style */
.brand {
    color: var(--primary);
    font-weight: 800;
    font-size: 1.6rem;
    text-decoration: none;
}

.form-cta {
    margin-top: 18px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.full-btn {
    width: auto;
    padding: 12px 26px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary);
    color: black;
    padding: 12px 26px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: transform 0.12s, box-shadow 0.12s;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0, 230, 118, 0.12);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: var(--primary-hover);
    box-shadow: 0 10px 30px rgba(0, 200, 120, 0.12);
}


/* Animação */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive tweaks */
@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    .login-card {
        padding: 24px;
        margin: 20px;
    }
}

/* --- Video player customizations --- */
.player-container {
    width: 100%;
    max-width: 900px;
    margin: 20px auto 0;
}

.video-wrapper {
    position: relative;
    width: 100%;
}

.main-player {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.35));
    border: none;
    cursor: pointer;
    transition: opacity 0.18s;
    z-index: 5;
}

.play-overlay .play-icon {
    font-size: 2.6rem;
    color: var(--light-text);
    background: rgba(0, 0, 0, 0.35);
    padding: 18px 22px;
    border-radius: 999px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.play-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

/* ensure hero section fills viewport and pushes #sobre down */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-section .video-overlay {
    z-index: 1;
}

.bg-video {
    z-index: 0;
}

/* push sobre section a bit lower if overlapping occurred */
.section-light {
    margin-top: 24px;
}

/* --- Sobre .card specific style: white background + monospace blue text --- */
#sobre .card {
    background-color: #ffffff;
    color: #0056b3;
    font-family: 'Fira Code', 'Courier New', monospace;
    padding: 24px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}


:root {
    --primary: #00e676;
    /* Verde Neon Moderno */
    --primary-hover: #00c853;
    --dark-bg: #111;
    --light-text: #fff;
    --overlay-color: rgba(0, 0, 0, 0.6);
    /* Escurece o vídeo para ler o texto */
}

body {
    background-color: var(--dark-bg);
    color: var(--light-text);
}

/* --- Navegação --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -1px;
}

.nav-links a {
    color: #ccc;
    text-decoration: none;
    margin-left: 20px;
    font-size: 0.9rem;
    transition: 0.3s;
}

.nav-links a:hover {
    color: white;
}

.btn-login {
    border: 1px solid var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    color: var(--primary) !important;
}

.btn-login:hover {
    background: var(--primary);
    color: black !important;
}

/* --- Hero Section com Vídeo --- */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}



.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-color);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 20px;
    animation: fadeIn 1.5s ease;
}

.badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
}

h1 {
    font-size: 3.5rem;
    margin: 20px 0;
    line-height: 1.1;
    font-weight: 700;
}

p {
    font-size: 1.2rem;
    color: #ddd;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* --- Botões --- */
.cta-group {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-primary {
    background: var(--primary);
    color: black;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.2s;
}

.btn-primary:hover {
    transform: scale(1.05);
    background: var(--primary-hover);
}

.btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 13px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-secondary:hover {
    background: white;
    color: black;
}

/* --- Seções de Conteúdo --- */
.section-light {
    background: white;
    color: #333;
    padding: 80px 20px;
    text-align: center;
}

.section-dark {
    background: #1a1a1a;
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.subtitle {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 50px;
}

.grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    padding: 30px;
    background: #f9f9f9;
    border-radius: 15px;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

/* --- Portfolio Specifics --- */
.portfolio-bio {
    max-width: 800px;
    margin: 0 auto 40px;
    color: #ccc;
    line-height: 1.6;
}

.projects-grid {
    text-align: left;
}

.card-portfolio {
    background: linear-gradient(145deg, #1e1e1e, #161616);
    border: 1px solid #333;
    position: relative;
    overflow: hidden;
}

.card-portfolio:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 230, 118, 0.1);
}

.card-portfolio h3 {
    font-size: 1.1rem;
    color: #fff;
}

.btn-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-bottom: 1px solid transparent;
    transition: 0.2s;
}

.btn-link:hover {
    border-bottom-color: var(--primary);
    opacity: 0.9;
}

.lista-poderosa {
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.2rem;
}

.lista-poderosa li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

footer {
    padding: 40px;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    background: #000;
}

/* Animação */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .cta-group {
        flex-direction: column;
    }

    .navbar {
        flex-direction: column;
        gap: 15px;
    }
}

/* --- PLAYER DE VÍDEO (NOVO) --- */
.player-container {
    margin-top: 40px;
    background: rgba(0, 0, 0, 0.5);
    /* Fundo semi-transparente atrás do vídeo */
    padding: 10px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    animation: fadeIn 2s ease;
    max-width: 700px;
    /* Tamanho máximo para não ficar gigante em telas grandes */
    margin-left: auto;
    margin-right: auto;
}

.main-player {
    width: 100%;
    /* Ocupa 100% do container */
    border-radius: 10px;
    display: block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Ajuste para telas pequenas (Celular) */
@media (max-width: 768px) {
    .player-container {
        margin-top: 30px;
        width: 100%;
    }
}

/* =========================
     FIXES (prioridade máxima)
     ========================= */

/* 1) Hero não pode cortar conteúdo quando o player abre */
.hero-section {
    height: auto !important;
    min-height: 100vh !important;
    overflow: hidden;
    padding-top: 110px;
    /* compensa navbar fixed */
    padding-bottom: 60px;
}

/* 2) Garante vídeo de fundo visível */
.hero-section .bg-video {
    z-index: 0 !important;
    opacity: 0.6;
    /* mantém legibilidade */
}

.hero-section .video-overlay {
    z-index: 1 !important;
}

.hero-section .hero-content {
    position: relative;
    z-index: 2 !important;
}

/* 3) Bloco SOBRE com texto preto (só nele) */
#sobre.section-light {
    background: #ffffff !important;
    color: #111111 !important;
}

#sobre.section-light h2,
#sobre.section-light p,
#sobre.section-light .subtitle,
#sobre.section-light li {
    color: #111111 !important;
}

#sobre .card {
    background: #ffffff !important;
    color: #111111 !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
}

#sobre .card p {
    color: #111111 !important;
}

/* ===== Override fixes (more specific to resolve duplicates and stacking issues) ===== */
/* Ensure background video is visible and sits behind content */
.hero-section {
    overflow: visible !important;
    min-height: 100vh !important;
}

.hero-section .bg-video {
    z-index: 0 !important;
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    opacity: 1 !important;
}

.hero-section .video-overlay {
    z-index: 1 !important;
    background: rgba(0, 0, 0, 0.25) !important;
    pointer-events: none !important;
}

.hero-section .hero-content {
    z-index: 2 !important;
    position: relative !important;
}

/* Player container should not fully cover or hide hero text; keep transparent background */
.player-container {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
}

.video-wrapper {
    margin-top: 18px;
}

.main-player {
    border-radius: 12px;
    display: block;
}

.play-overlay {
    z-index: 6 !important;
}

/* Push the #sobre section further down to avoid overlap with hero */
.section-light {
    margin-top: 80px !important;
}

/* Ensure #sobre .card rule is dominant and readable */
#sobre .card {
    background-color: #ffffff !important;
    color: #0056b3 !important;
    font-family: 'Fira Code', 'Courier New', monospace !important;
}


/* =========================
     MODULOS - LISTA PODEROSA (FIX)
     ========================= */

.lista-poderosa {
    list-style: none !important;
    max-width: 760px;
    margin: 28px auto 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.lista-poderosa li {
    display: grid !important;
    grid-template-columns: 28px 1fr;
    gap: 14px;
    align-items: start;
    text-align: left;

    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.lista-poderosa .lp-icon {
    display: inline-flex;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-top: 2px;
}

.lista-poderosa .lp-text {
    display: inline;
    line-height: 1.45;
}

.lista-poderosa .lp-text strong {
    color: #fff;
    font-weight: 800;
    white-space: nowrap;
    margin-right: 8px;
}

.lista-poderosa .lp-desc {
    color: rgba(255, 255, 255, 0.75);
}

/* SweetAlert2 dark theme overrides to match site palette */
.swal2-popup {
    background: var(--card-bg);
    color: var(--light-text);
    border: 1px solid rgba(255, 255, 255, 0.04);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
}

.swal2-title {
    color: var(--light-text) !important;
}

.swal2-html-container,
.swal2-content {
    color: var(--gray-text) !important;
}

.swal2-popup .swal2-input {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    color: var(--light-text) !important;
    border-radius: 10px !important;
    padding: 10px 12px !important;
}

.swal2-popup .swal2-input::placeholder {
    color: rgba(255, 255, 255, 0.35) !important;
}

.swal2-checkbox input {
    accent-color: var(--primary) !important;
}

.swal2-styled.swal2-confirm {
    background: var(--primary) !important;
    color: black !important;
    border: none !important;
    box-shadow: 0 8px 24px rgba(0, 230, 118, 0.12) !important;
}

.swal2-styled.swal2-cancel {
    color: var(--light-text) !important;
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
}

.swal2-popup .swal2-actions {
    gap: 10px;
}

.swal2-popup .swal2-input,
.swal2-popup .swal2-textarea {
    width: 100% !important;
    box-sizing: border-box;
}

/* Center modal content and inputs, make inputs match login card width */
.swal2-popup {
    padding: 22px !important;
    width: 100% !important;
    max-width: 520px !important;
}

.swal2-title {
    text-align: center !important;
}

.swal2-html-container {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    align-items: center !important;
}

.swal2-html-container .swal2-input,
.swal2-html-container input.swal2-input {
    width: calc(100% - 8px) !important;
    max-width: 420px !important;
    margin: 6px 0 !important;
}

.swal2-html-container .swal2-text {
    width: 100% !important;
}

.swal2-popup .swal2-actions {
    justify-content: center;
}

/* Deixa o botão respirar sem precisar de <br> */
#modulos .btn-large {
    margin-top: 22px;
    display: inline-block;
}

/* Mobile: permite quebrar o título se necessário */
@media (max-width: 520px) {
    .lista-poderosa .lp-text strong {
        white-space: normal;
    }
}



/* --- Legal Pages Theme --- */
.legal-body {
    background: #0b1220;
    color: #e8eefc;
}

.legal-main {
    max-width: 980px;
    margin: 0 auto;
    padding: 44px 18px;
}

.legal-main h1,
.legal-main h2 {
    color: #e8eefc;
}

.legal-main p,
.legal-main li {
    color: rgba(232, 238, 252, 0.88);
    line-height: 1.65;
}

.legal-main hr {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    margin: 18px 0;
}

/* --- Site Footer (Enhanced Centering) --- */
.site-footer {
    width: 100% !important;
    padding: 18px 12px;
    text-align: center !important;
    background-color: #000;
    border-top: 1px solid #111;
}

.site-footer .footer-links {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.site-footer a {
    text-decoration: underline;
    color: #888;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.site-footer a:hover {
    color: var(--primary);
}

.site-footer .footer-meta {
    font-size: 0.85rem;
    color: #666;
    opacity: 0.7;
}

/* --- WhatsApp Floating Button --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
    animation: pulse-green 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #1ebc57;
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
    fill: #fff;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}