* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Space Grotesk", sans-serif;
}
body {
    margin: 0;
    background-color: #0d0c0c;
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
}

.lunar-purple {
    position: absolute;
    top: 150px;
    left: 190px;
    width: 250px;
    height: 300px;
    background: rgb(69 2 162 / 54%);
    border-radius: 50%;
    filter: blur(30px) brightness(1);
    z-index: 0;
    animation: purpleFloat 10s ease-in-out infinite;
}

@keyframes purpleFloat {
    0% {
        transform: translateY(0px);
        filter: blur(30px) brightness(1);
    }
    50% {
        transform: translateY(150px);
        filter: blur(30px) brightness(1.3);
    }
    100% {
        transform: translateY(0px);
        filter: blur(30px) brightness(1);
    }
}

.lunar-glow {
    position: absolute;
    top: 150px;
    left: 150px;
    width: 300px;
    height: 450px;
    background: radial-gradient(
        circle at 40% 50%,
        rgba(255, 255, 255, 0.3),
        rgba(180, 100, 255, 0.2)
    );
    border-radius: 50%;
    filter: blur(40px);
    z-index: 1;
}

.lunar-shadow {
    position: absolute;
    top: 150px;
    left: 280px;
    width: 300px;
    height: 420px;
    background-color: #0d0c0c;
    border-radius: 50%;
    z-index: 2;
    filter: blur(20px);
}

.star-glow {
    position: absolute;
    top: 550px;
    right: 5%;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.08);
    filter: blur(20px);
    border-radius: 50%;
    z-index: 0;
}
@media (min-width: 1500px) {
    .lunar-shadow,
    .lunar-glow {
        top: 200px;
    }
}
@media (max-width: 768px) {
    .lunar-shadow {
        left: 70px;
    }
    .lunar-glow,
    .lunar-purple {
        left: 0;
    }
}
:root {
    --theme-color: #6b00a9;
    --theme-color-light: #8526d3;
    --theme-color-darken: #a22ee634;
    --gradiant-color: linear-gradient(
        90deg,
        rgb(39, 0, 84) 0%,
        rgb(63, 6, 117) 50%,
        rgb(91, 10, 145) 100%
    );
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
::-webkit-scrollbar-track {
    background: #1a1a1a18;
    border-radius: 0;
}
::-webkit-scrollbar-thumb {
    background-color: var(--theme-color);
    border-radius: 1px;
    border: 2px solid #1a1a1a;
}
::-webkit-scrollbar-thumb:hover {
    background-color: var(--theme-color-light);
}

.presentation-view {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    z-index: 3;
}

.bg-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: opacity 1s ease-in-out;
    z-index: -1;
}

.bg-frame.hidden {
    opacity: 0;
    pointer-events: none;
}

.bg-frame.visible {
    opacity: 1;
}

/* start header */
.landing-header {
    background: linear-gradient(180deg, rgb(46 0 84) 0%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    justify-content: space-between;
    width: 70%;
    padding: 15px 20px;
    border-radius: 50px;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.lunar-logo-header {
    color: white;
    font-size: 2rem;
    font-weight: 800;
}
.lunar-logo-header span {
    font-size: 1.4rem !important;
    font-weight: 400 !important;
}
.register-btn,
.login-btn {
    padding: 10px 15px;
    border-radius: 50px;
    width: 120px;
}

.register-btn {
    border: none;
    background-color: transparent;
    color: white;
    font-weight: 700;
}
.register-btn:hover {
    background-color: var(--theme-color-darken);
    transition: 0.5s;
}
.login-btn {
    border: 2px solid var(--theme-color-light);
    background-color: transparent;
    color: white;
    font-weight: 700;
}
.login-btn:hover {
    background-color: white;
    border: transparent solid 2px;
    transition: 0.5s;
    color: var(--theme-color);
}
@media (max-width: 768px) {
    .landing-header {
        width: 100%;
        top: 0;
        border-radius: 0px;
    }
    .lunar-logo-header {
        font-size: 1.5rem;
    }
    .lunar-logo-header span {
        font-size: 1rem !important;
    }
    .register-btn,
    .login-btn {
        width: 110px;
        font-size: 12px;
    }
}
/* end header */
/* part inicial */
.main-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    color: white;
    text-align: center;
}
.main-content img {
    width: 300px;
    margin: 15% auto 0;
}
.main-content button {
    width: 300px;
    padding: 10px;
    border-radius: 50px;
    border: none;
    background-color: white;
    font-weight: 700;
    margin: 20px auto;
    cursor: pointer;
}
@media (max-width: 768px) {
    .main-content,
    .main-content button {
        margin-top: 50px;
        padding: 20px;
    }
}
/* end part inicial */
/* about part */
.about-section {
    background: linear-gradient(
            to bottom,
            rgba(12, 12, 12, 0.973),
            rgba(0, 0, 0, 0.486)
        ),
        url("/assets/frame10.png") center center / cover no-repeat fixed;
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.about-part {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.about-img img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
}

.about-text {
    max-width: 500px;
    text-align: left;
}

.about-text h2 {
    font-size: 2rem;
    color: white;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.1rem;
    color: #a5a5a5;
    line-height: 1.6;
}
@media (max-width: 768px) {
    .about-part.reverse {
        flex-direction: column-reverse;
    }
    .about-text {
        text-align: center;
    }
}
/* end about part */
/* guide part */
.timeline-section {
    background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.486),
            rgba(19, 8, 31, 0.699)
        ),
        url("/assets/frame10.png") center center / cover no-repeat fixed;
    padding: 80px 20px 120px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.timeline-section h2 {
    font-size: 2.2rem;
    margin-bottom: 60px;
    color: white;
}

.timeline {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 150px;
    flex-wrap: wrap;
    position: relative;
    padding: 40px 20px 100px;
    min-height: 200px;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 50px;
    left: 5%;
    right: 5%;
    height: 4px;
    background: linear-gradient(to right, #540992, #7a39c4);
    z-index: 1;
}

.timeline-step {
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
    bottom: 15px;
}

.circle {
    width: 60px;
    height: 60px;
    background: #320054;
    border: 4px solid var(--gradiant-color);
    color: rgb(0, 0, 0) !important;
    font-weight: bold;
    font-size: 1.4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, color 0.3s;
    animation: growIn 0.6s ease forwards;
    opacity: 0;
}
.active-circle {
    background: var(--gradiant-color) !important;
    color: white !important;
}

.timeline-step:nth-child(1) .circle {
    animation-delay: 0.2s;
}
.timeline-step:nth-child(2) .circle {
    animation-delay: 0.6s;
}
.timeline-step:nth-child(3) .circle {
    animation-delay: 1s;
}
.timeline-step:nth-child(4) .circle {
    animation-delay: 1.4s;
}
.timeline-step:nth-child(5) .circle {
    animation-delay: 1.8s;
}

.tooltip {
    position: absolute;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    background: var(--gradiant-color);
    color: #fff;
    padding: 12px 16px;
    border-radius: 12px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 3;
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.15);
}
.active-tooltip {
    opacity: 1 !important;
    pointer-events: auto;
}

.tooltip h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.tooltip p {
    margin-top: 5px;
    font-size: 0.85rem;
}

.timeline-step:hover .tooltip {
    opacity: 1;
}

.circle:hover {
    background: var(--theme-color);
    color: #fff;
}

@keyframes growIn {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
@media (max-width: 768px) {
    .timeline {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 50vh;
        padding: 0 20px;
    }

    .timeline::before,
    .timeline-step:not(.active-mobile) .tooltip,
    .timeline-step:not(.active-mobile) .circle {
        display: none !important;
    }

    .timeline-step {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        width: 100%;
        max-width: 350px;
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .timeline-step.active-mobile {
        opacity: 1;
        z-index: 10;
    }

    .timeline-step .circle {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto 25px auto;
        background: #320054;
        border: 4px solid var(--gradiant-color);
        color: white;
        width: 70px;
        height: 70px;
        font-size: 2rem;
        border-radius: 50%;
        transition: background 0.3s ease, color 0.3s ease;
    }

    .timeline-step.active-mobile .circle {
        background: var(--gradiant-color);
        color: #fff;
    }

    .timeline-step .tooltip {
        position: static;
        background: var(--gradiant-color);
        color: white;
        opacity: 1 !important;
        pointer-events: auto;
        box-shadow: 0 8px 20px rgba(255, 255, 255, 0.15);
        transform: none;
        padding: 20px;
        border-radius: 10px;
        font-size: 1.5rem;
        line-height: 1.6;
    }

    .tooltip {
        margin: 0 auto;
        font-size: 1.5rem;
    }
    .circle {
        color: white !important;
    }
}

@media (max-width: 400px) {
    .timeline {
        gap: 140px 25px;
    }
}
/* end guide part */
.niche-swiper-section {
    background: linear-gradient(
            to bottom,
            rgba(14, 14, 14, 0.37),
            rgb(26, 26, 26)
        ),
        url("/assets/bg-screen-huge.png") center center / cover no-repeat fixed;
    color: white;
    padding: 50px 20px;
    text-align: center;
    overflow: hidden;
    background-blend-mode: darken;
}

.niche-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.niche-sub {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 1000px;
    margin: 0 auto 50px;
    line-height: 1.6;
    background-color: #22222200;
    padding: 15px;
    border-radius: 20px;
}

.swiper-container {
    width: 100%;
    max-width: 1000px;
    margin: auto;
    padding-bottom: 60px;
}

.swiper-slide.niche-card {
    background: rgba(248, 248, 248, 0.05);
    padding: 30px 20px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s, background 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 150px;
    color: white;
    gap: 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.swiper-slide.niche-card i {
    font-size: 1.8rem;
    color: var(--theme-color);
}

.swiper-slide.niche-card:hover i {
    color: #fff;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--theme-color);
    display: none;
}

.swiper-pagination-bullet-active {
    background: var(--theme-color);
    display: none;
}

.niche-footer {
    margin-top: 60px;
}

.taxa-info {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.destaque {
    color: var(--theme-color);
    font-weight: bold;
    font-size: 1.3rem;
}

.cta-btn {
    padding: 15px 30px;
    background: var(--theme-color);
    border: none;
    color: white;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.cta-btn:hover {
    background: var(--theme-color);
}
@media (max-width: 768px) {
    .swiper-slide.niche-card {
        height: 120px;
        font-size: 0.95rem;
    }
    .niche-swiper-section {
        position: relative;
        color: white;
        padding: 50px 20px;
        text-align: center;
        overflow: hidden;
        z-index: 1;
    }

    .niche-swiper-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
                to bottom,
                rgba(0, 0, 0, 0.795),
                rgba(0, 0, 0, 0.753)
            ),
            url("/assets/tela-grande.png") center center / cover no-repeat fixed;
        filter: blur(1.2px);
        z-index: -1;
    }
}
.swiper-mobile-arrows {
    display: none;
}

@media (max-width: 768px) {
    .swiper-mobile-arrows {
        display: flex;
        justify-content: space-between;
        position: absolute;
        width: 100%;
        top: 58%;
        right: 1px;
        transform: translateY(-50%);
        padding: 0 10px;
        z-index: 10;
        pointer-events: none;
    }

    .swiper-button-prev-mobile,
    .swiper-button-next-mobile {
        font-size: 2rem;
        color: white;
        background: transparent;
        border: none;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        pointer-events: auto;
        cursor: pointer;
    }

    .swiper-button-prev-mobile {
        margin-left: -5px;
    }

    .swiper-button-next-mobile {
        margin-right: -5px;
    }
}

/* comentarios */
.testimonials-section {
    background: url("/assets/frame10.png") center center / cover no-repeat fixed;
    color: white;
    padding: 80px 20px;
    overflow: hidden;
    position: relative;
}

.testimonials-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: #fff;
}

.testimonials-wrapper {
    width: 100%;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: scrollLoop 40s linear infinite;
}
@keyframes scrollLoop {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.testimonial-card {
    background: #b05df317;
    border-radius: 16px;
    padding: 20px;
    min-width: 300px;
    max-width: 300px;
    transition: transform 0.3s;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(176, 58, 255, 0.199);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(10px);
    margin: 10px;
}

.testimonial-card:hover {
    transform: scale(1.05);
}

.testimonial-card img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    pointer-events: none;
    user-select: none;
}

.testimonial-card h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--theme-color);
}

.stars {
    color: rgb(164, 140, 175);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.testimonial-card p {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.4;
}

/* end comments */
/* filiados part */
.features-section {
    background: linear-gradient(
            to bottom,
            rgba(25, 12, 43, 0.973),
            rgba(0, 0, 0, 0)
        ),
        url("/assets/frame10.png") center center / cover no-repeat fixed;
    padding: 80px 20px;
    text-align: center;
}

.features-section h2 {
    font-size: 2.4rem;
    margin-bottom: 60px;
    color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px;
    border-radius: 30px;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.082);
}

.feature-card {
    background: transparent;
    border-radius: 16px;
    padding: 40px 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

/* Estilo ao interagir: hover ou open */
.feature-card.open,
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.15);
    margin-top: 10px;
}

.icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background-color: #ffffff1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: background-color 0.3s ease;
}
.icon i {
    font-size: 1.8rem;
    color: white;
}

.feature-card.open .icon,
.feature-card:hover .icon {
    background-color: var(--theme-color);
    color: #fff;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
}

.feature-card .description {
    max-height: 0;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    overflow: hidden;
}

.feature-card.open .description,
.feature-card:hover .description {
    max-height: 300px;
    opacity: 1;
}

.feature-card .description p {
    font-size: 0.95rem;
    color: white;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .features-grid {
        padding: 20px;
    }
    .feature-card {
        right: 10px;
    }
}

/* end filiados part */
/* invite part */
.affiliate-section {
    padding: 60px 20px;
    background: url("/assets/frame10.png") center center / cover no-repeat fixed;
    color: white;
}

.affiliate-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.affiliate-top,
.affiliate-bottom {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.affiliate-text,
.affiliate-steps-text {
    flex: 1;
    min-width: 300px;
}

.affiliate-text h2,
.affiliate-steps-text h2 {
    font-size: 2.2rem;
    
    margin-bottom: 20px;
}

.highlight {
    font-size: 1.1rem;
    line-height: 1.6;
}

.affiliate-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.affiliate-image img {
    max-width: 100%;
    border-radius: 20px;
}

.affiliate-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.step {
    display: flex;
    gap: 15px;
    align-items: start;
}

.step .number {
    background: var(--theme-color-light);
    color: white;
    font-weight: bold;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.affiliate-cta {
    margin-top: 30px;
}

.affiliate-cta p {
    font-size: 1rem;
    margin-bottom: 15px;
}

.btn-register {
    background: var(--theme-color-light);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-register:hover {
    background: var(--theme-color);
}
@media (max-width: 768px) {
    .affiliate-image img {
        display: none;
    }
    .affiliate-text,
    .affiliate-steps-text h2{
        text-align:center;
    }
    
}
/* end invite */
/* support part */
.support-section {
    background: linear-gradient(to top, rgb(9 9 10 / 97%), rgba(0, 0, 0, 0)),
        url("/assets/frame10.png") center center / cover no-repeat fixed;
    color: #111;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.support-container {
    max-width: 1200px;
    width: 100%;
    background-color: var(--theme-color);
    padding: 50px;
    border-radius: 30px;
    color: white;
}

.support-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.support-text {
    flex: 1;
    min-width: 300px;
}

.support-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.support-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
}

.support-info h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: white;
}

.support-info p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: white;
}

.contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.support-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1rem;
    color: white;
    text-decoration: none;
    transition: background 0.3s;
}

.support-btn.telegram {
    background-color: #0088cc;
}

.support-btn.telegram:hover {
    background-color: #007ab5;
}

.support-btn.whatsapp {
    background-color: #25d366;
}

.support-btn.whatsapp:hover {
    background-color: #1ebe59;
}

.social-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.social-info p {
    font-size: 1rem;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.social-links a {
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    font-size: 1rem;
    transition: color 0.3s;
    background-color: #a165da1c;
    padding: 10px;
    border-radius: 10px;
}

.social-links a:hover {
    color: #a435ff;
}
@media (min-width: 769px) {
    .support-info h2,
    .support-info p,
    .social-info h3,
    .social-info p {
        margin-bottom: 25px;
    }
}
@media (max-width: 768px) {
    .support-text {
        min-width: 235px;
    }
    .support-image img {
        display: none;
    }
}
/* end suport */
/* footer */
.site-footer {
    background-color: #0a0a0a;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-logo img {
    width: 130px;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 0;
    margin-bottom: 20px;
}

.footer-links li a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: var(--theme-color);
}

.footer-copy {
    font-size: 0.85rem;
    color: white;
}
/* support btn */
.support-floating-menu {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.support-floating-toggle {
    background-color: var(--theme-color);
    border: none;
    padding: 12px 10px 10px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.support-floating-toggle i {
    font-size: 20px;
    color: white;
}

.support-floating-options {
    display: flex;
    gap: 10px;
    position: absolute;
    right: 60px;
    bottom: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateX(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.support-floating-options.show {
    opacity: 1;
    pointer-events: all;
    transform: translateX(0);
}

.support-floating-btn {
    background-color: #fff;
    border-radius: 50%;
    padding: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.support-floating-btn img {
    width: 24px;
    height: 24px;
}

.support-floating-btn.whatsapp {
    background-color: #25d366;
    color: white;
}

.support-floating-btn.telegram {
    background-color: #0088cc;
    color: white;
}

.support-floating-btn:hover {
    filter: brightness(1.1);
}
/* back on top */
.scroll-to-top {
    position: absolute;
    bottom: 60px;
    right: 5px;
    width: 40px;
    height: 40px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.6s ease;
    z-index: 9999;
}

.scroll-to-top i {
    font-size: 20px;
}

.scroll-to-top.show {
    display: flex;
}
