@property --glow-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

:root {
    --cor-destaque: #F31260;
    --color-lime: #adff00;
    --color-dark: #1f1f1f;
    --color-bg-dark: #1f0838f2;
    --color-bg-black: #130F20;
}

/* Scrollbar customizada */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #000;
    border-radius: 0 !important;
}

::-webkit-scrollbar-thumb {
    background: var(--cor-destaque);
    border-radius: 0 !important;
}

::-webkit-scrollbar-thumb:hover {
    background: #d10a50;
}

html {
    scrollbar-width: thin;
    scrollbar-color: var(--cor-destaque) #000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Manrope', sans-serif;
    background: #ffffff;
    min-height: 100vh;
    position: relative;
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: rgba(31, 8, 56, 0.95);
}

.nav-accent {
    height: 4px;
    background-color: var(--cor-destaque);
}

@keyframes navSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-content {
    display: flex;
    justify-content: center;
    gap: 80px;
    padding: 16px 20px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 200;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    animation: navSlideIn 0.5s ease forwards;
    opacity: 0;
}

.nav-link:nth-child(1) { animation-delay: 0.1s; }
.nav-link:nth-child(2) { animation-delay: 0.2s; }
.nav-link:nth-child(3) { animation-delay: 0.3s; }
.nav-link:nth-child(4) { animation-delay: 0.4s; }

.nav-icon {
    width: 18px;
    height: 18px;
    stroke: var(--cor-destaque);
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--cor-destaque);
}

.nav-link:hover .nav-icon {
    filter: drop-shadow(0 0 6px rgba(243, 18, 96, 0.6));
}

.nav-link-highlight {
    color: var(--cor-destaque);
}

.nav-link-highlight .nav-icon {
    filter: drop-shadow(0 0 6px rgba(243, 18, 96, 0.6));
}
.section-dark {
    background-color: #130F20;
    min-height: 60vh;
    padding-top: 60px;
    padding-bottom: 40px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

/* Animação de fade para as imagens de fundo */
@keyframes heroFade1 {
    0%, 45% { opacity: 0.25; }
    50%, 95% { opacity: 0; }
    100% { opacity: 0.25; }
}

@keyframes heroFade2 {
    0%, 45% { opacity: 0; }
    50%, 95% { opacity: 1; }
    100% { opacity: 0; }
}

.section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #130F20;
    background-image: url('bg-hero-section.png');
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    z-index: 0;
    animation: heroFade1 8s ease-in-out infinite;
    filter: blur(3px);
}

.section-dark::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('bg-hero-section-2.png');
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    z-index: 0;
    animation: heroFade2 8s ease-in-out infinite;
   
}

.section-dark .container {
    padding-top: 35px;
}

.container {
    max-width: 1024px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

main.container {
    padding: 40px 20px;
}

.top-decoration {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 600px;
    z-index: 0;
    pointer-events: none;
}

.cards-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Card Wrapper com Glow */
.card-wrapper {
    position: relative;
    perspective: 1000px;
}

.card-wrapper .card {
    transform-style: preserve-3d;
    opacity: 0;
    transform: rotateX(10deg) scale(0.9);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.card-wrapper.animate-in .card {
    opacity: 1;
    transform: rotateX(0deg) scale(1);
}

.card-wrapper:nth-child(2) .card {
    transition-delay: 0.15s;
}

.card-wrapper:nth-child(3) .card {
    transition-delay: 0.3s;
}

.card-glow {
    position: absolute;
    width: 1200px;
    height: 600px;
    z-index: 0;
    pointer-events: none;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.card-glow-pink {
    opacity: 0.35;
    background-image: url('circle-glow-pink.svg');
    top: 50%;
    left: -45%;
    transform: translateY(-50%);
}

.card-glow-lime {
    overflow: visible;
    background-image: url('circle-glow-lime.svg');
    top: 50%;
    left: -45%;
    transform: translateY(-50%);
}

.card-glow-purple {
    background-image: url('circle-glow-purple.svg');
    top: 50%;
    left: -45%;
    transform: translateY(-50%);
}

/* Card */
.card {
    position: relative;
    border-radius: 55px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Imagem de fundo do card */
.card-bg {
    display: block;
    width: 100%;
    height: auto;
}



/* Card Content - Esquerda */
.card-content {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 50px;
    width: 50%;
    height: 100%;
}

.card-title {
    font-size: 3.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
}

.card-title .highlight {
    color: var(--cor-destaque);
}

/* Efeito Shimmer/Sweep Light */
.text-shimmer {
    position: relative;
    display: inline-block;
    color: var(--cor-destaque);
}

.card-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    margin-bottom: 16px;
}

.card-description {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 32px;
}

.card-header-img {
    max-width: 100%;
    height: auto;
    margin-bottom: 32px;
}

.card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 24px;
    height: 58px;
    background-color: var(--cor-destaque);
    color: #fff;
    text-decoration: none;
    border-radius: 14px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    width: fit-content;
    box-shadow: 0px 10px 15px -3px rgba(243, 18, 96, 0.4), 0px 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0px 14px 20px -3px rgba(243, 18, 96, 0.5), 0px 6px 8px -2px rgba(0, 0, 0, 0.05);
}

.btn-arrow {
    font-size: 1.1rem;
}

/* Botão Verde Limão - Card 2 */
.card-btn-lime {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 26px;
    background-color: var(--color-lime);
    color: var(--color-dark);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 24px;
    text-transform: uppercase;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 2px solid #537901;
    box-shadow: 4px 4px 0px 0px var(--color-dark);
    width: fit-content;
}

.card-btn-lime:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px 0px var(--color-dark);
}

/* Botão Gradiente Azul/Rosa - Card 3 */
.card-btn-gradient {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    height: 60px;
    background: linear-gradient(90deg, #0900ff 0%, #f800ff 100%);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    width: fit-content;
    max-width: 388px;
    border-radius: 14px 0 14px 0;
}

.card-btn-gradient:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* Card 3 - Gradiente escuro à esquerda */
.card-3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(0, 0, 0, 0.9) 0%, 
        rgba(0, 0, 0, 0.7) 40%, 
        rgba(0, 0, 0, 0) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Responsivo - Tablet */
@media (max-width: 900px) {
    body {
        padding: 30px 15px;
    }

    .card {
        border-radius: 35px;
    }

    .card-content {
        width: 60%;
        padding: 40px 30px;
    }

    .card-title {
        font-size: 2rem;
        margin-bottom: 16px;
    }

    .card-subtitle {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .card-description {
        font-size: 0.9rem;
        margin-bottom: 24px;
    }

    .card-glow {
        width: 250px;
        height: 250px;
    }

    .card-btn-lime {
        font-size: 18px;
        padding: 14px 22px;
    }

    .card-btn-gradient {
        font-size: 16px;
        height: 54px;
    }
}

/* Responsivo - Mobile */
@media (max-width: 768px) {
    .section-dark {
        min-height: auto;
        padding-top: 80px;
        padding-bottom: 30px;
    }

    body {
        padding: 20px 12px;
    }

    .top-decoration {
        max-width: 350px;
    }

    .cards-section {
        gap: 24px;
    }

    .card {
        border-radius: 24px;
    }

    .card-content {
        width: 100%;
        padding: 30px 24px;
        background: linear-gradient(180deg, 
            rgba(0, 0, 0, 0.85) 0%, 
            rgba(0, 0, 0, 0.6) 60%, 
            rgba(0, 0, 0, 0.3) 100%);
    }

    .card-title {
        font-size: 1.75rem;
        margin-bottom: 14px;
    }

    .card-subtitle {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .card-description {
        font-size: 0.875rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .card-header-img {
        max-width: 90%;
        margin-bottom: 24px;
    }

    .card-glow {
        width: 1200px;
        height: 700px;
        opacity: 0.4;
    }

    .card-btn {
        font-size: 0.8rem;
        padding: 0 18px;
        height: 50px;
        border-radius: 12px;
    }

    .card-btn-lime {
        font-size: 14px;
        padding: 12px 18px;
        gap: 8px;
    }

    .card-btn-lime .btn-arrow {
        width: 20px;
        height: 20px;
    }

    .card-btn-gradient {
        font-size: 14px;
        height: 48px;
        padding: 0 18px;
        max-width: 100%;
    }

    .card-3::before {
        width: 100%;
        background: linear-gradient(180deg, 
            rgba(0, 0, 0, 0.85) 0%, 
            rgba(0, 0, 0, 0.5) 70%, 
            rgba(0, 0, 0, 0.2) 100%);
    }
}

/* Responsivo - Mobile Pequeno */
@media (max-width: 480px) {
    body {
        padding: 16px 10px;
    }

    .top-decoration {
        max-width: 280px;
    }

    .cards-section {
        gap: 20px;
    }

    .card {
        border-radius: 20px;
    }

    .card-content {
        padding: 24px 20px;
    }

    .card-title {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .card-subtitle {
        font-size: 0.9rem;
    }

    .card-description {
        font-size: 0.8rem;
        margin-bottom: 18px;
    }

    .card-header-img {
        max-width: 85%;
        margin-bottom: 20px;
    }

    .card-glow {
        width: 150px;
        height: 150px;
        opacity: 0.35;
    }

    .card-btn {
        font-size: 0.7rem;
        padding: 0 14px;
        height: 46px;
        width: 100%;
    }

    .card-btn-lime {
        font-size: 12px;
        padding: 10px 14px;
        width: 100%;
        justify-content: center;
    }

    .card-btn-gradient {
        font-size: 12px;
        height: 44px;
        padding: 0 14px;
        width: 100%;
        text-align: center;
    }
}

/* Responsivo - Mobile Muito Pequeno */
@media (max-width: 360px) {
    .card-content {
        padding: 20px 16px;
    }

    .card-title {
        font-size: 1.3rem;
    }

    .card-subtitle {
        font-size: 0.85rem;
    }

    .card-description {
        font-size: 0.75rem;
    }

    .card-btn,
    .card-btn-lime,
    .card-btn-gradient {
        font-size: 0.65rem;
    }
}


/* Section Mentorias */
.mentorias-section {
    background-color: var(--color-bg-black);
    padding: 60px 20px;
    position: relative;
}

.mentorias-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 0;
}

.mentorias-section .container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    background-color: var(--cor-destaque);
    display: inline-block;
    padding: 10px 40px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

/* Responsivo */
@media (max-width: 768px) {
    .mentorias-section {
        padding: 40px 16px;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 24px;
    }
}


/* Divider Bar */
.divider-bar {
    background: linear-gradient(90deg, var(--color-bg-black) 0%, var(--cor-destaque) 50%, var(--color-bg-black) 100%);
    height: 6px;
}

/* Section Cursos */
.cursos-section {
    background-color: var(--color-bg-black);
    padding: 60px 20px;
    position: relative;
}

.cursos-section .container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Responsivo */
@media (max-width: 768px) {
    .cursos-section {
        padding: 40px 16px;
    }
}


/* Section Sobre */
.sobre-section {
    min-height: 40vh;
    background-color: #000000;
    padding: 60px 20px 0 20px;
    position: relative;
    overflow: hidden;
}

.sobre-section::before {
    opacity: 0.25;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('BG-CURSOS.svg');
    background-size: 100%;
    background-position: top;
    background-repeat: no-repeat;
    z-index: 0;
}

.sobre-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.sobre-section .container {
    position: relative;
    z-index: 1;
}

.sobre-wrapper {
    display: flex;
    align-items: stretch;
}

.sobre-section > .raios-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 2;
    pointer-events: none;
}

.sobre-image {
    flex-shrink: 0;
    display: flex;
    align-items: flex-end;
    position: relative;
}

.sobre-stats {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 3;
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.stat-label {
    display: inline-block;
    padding: 4px 12px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    font-size: 0.7rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-number {
    font-size: 5rem;
    font-weight: 800;
    color: var(--cor-destaque);
    line-height: 1;
}

.stat-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 180px;
}

.sobre-image img {
    width: 600px;
    object-fit: contain;
    display: block;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.sobre-image img.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.sobre-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-bottom: 45px;
}

.sobre-info .section-title {
    margin-left: 0;
    margin-right: 0;
    font-size: 1.75rem;
}

.sobre-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 24px;
}

.sobre-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sobre-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
}

.sobre-list .bullet {
    width: 10px;
    height: 10px;
    min-width: 10px;
    background-color: var(--cor-destaque);
    border-radius: 50%;
    margin-top: 6px;
}

@media (max-width: 768px) {
    .sobre-section {
        padding: 40px 16px;
    }

    .sobre-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .sobre-info {
        align-items: center;
    }

    .sobre-info .section-title {
        font-size: 1.8rem;
    }

    .sobre-image img {
        width: 250px;
    }

    .sobre-description {
        font-size: 1rem;
        text-align: center;
    }

    .sobre-list {
        text-align: left;
    }

    .sobre-list li {
        font-size: 0.9rem;
    }
}


/* Section Newsletter */
.newsletter-section {
    background: linear-gradient(135deg, #1a0a2e 0%, #2a0c52 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('bg-hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
}

.newsletter-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(173, 255, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.newsletter-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.newsletter-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.newsletter-badge {
    display: inline-block;
    background: var(--cor-destaque);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    width: fit-content;
}

.newsletter-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.newsletter-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.newsletter-benefits {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsletter-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.newsletter-benefits svg {
    color: var(--color-lime);
    flex-shrink: 0;
}

.newsletter-form-wrapper {
    display: flex;
    justify-content: center;
}

.newsletter-card {
    background: rgba(30, 15, 50, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    width: 100%;
    max-width: 420px;
}

.newsletter-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
    text-align: center;
}

.highlight-gratuitamente {
    background-color: var(--cor-destaque);
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.form-group input {
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus {
    outline: none;
    border-color: var(--cor-destaque);
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    background: var(--cor-destaque);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(243, 18, 96, 0.4);
}

.newsletter-privacy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    margin-top: 16px;
}

@media (max-width: 900px) {
    .newsletter-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .newsletter-title {
        font-size: 2.5rem;
    }

    .newsletter-content {
        text-align: center;
        align-items: center;
    }

    .newsletter-benefits {
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .newsletter-section {
        padding: 60px 16px;
    }

    .newsletter-title {
        font-size: 2rem;
    }

    .newsletter-card {
        padding: 30px 24px;
    }

    .newsletter-description {
        font-size: 1rem;
    }
}


/* Footer */
.footer {
    background-color: var(--color-bg-black);
    padding: 30px 20px;
    text-align: center;
}

.footer p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 40rem;
}


/* Vinheta preta fixa no bottom */
.bottom-vignette {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, var(--color-bg-dark) 0%, transparent 100%);
    pointer-events: none;
    z-index: 99;
}
