        html {
            scroll-behavior: smooth;
        }

        .bg-apps {
            background: #0f1f1596 !important;
        }

        .bg-black {
            --tw-bg-opacity: 1;
            background-color: hsl(150deg 30.34% 6.65%);
        }

        .bg-brand-dark {
            --tw-bg-opacity: 1;
            background-color: hsl(150 30% 6%);
        }

        .to-brand-card\/30 {
            --tw-gradient-to: hsl(150deg 38.51% 17.05% / 45%);
        }
        

        /* Ajustes finos globais */
        body {
            background-color: #050a07; /* brand-dark */
            color: white;
            scroll-behavior: smooth;
        }
        
        .spaceds {
            letter-spacing: 0.05em;
        }

        .muted {
            color: #85ad92;
        }


        @media screen and (max-width: 768px) {
            .mobile-logo {
                height: 10rem !important;
            }

            .footer-logo {
                height: 6rem !important;
            }

            .top-logo {
                height: 4.5rem !important;
            }

            .testimonial-card {
                background: none;
                border-radius: 12px;
                padding: 0rem !important;
                height: 100%;
                display: flex;
                flex-direction: column;
                font-weight: 300;
                border: 0;
                transition: all 0.3s ease;
            }


        }

        /* Utilitário para o efeito "Saltar Levemente" */
        .hover-lift {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .hover-lift:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px -10px rgba(134, 239, 172, 0.2);
        }

        /* Overlay do Menu Mobile */
        #mobile-menu-overlay {
            backdrop-filter: blur(10px);
        }



        .swiper-container-wrapper {
                position: relative;
                padding: 0 40px; /* Distância generosa para as setas */
            }

            .testimonial-card {
                background: none; /* Cor 'Off-white' para visibilidade sem choque visual */
                border-radius: 12px;
                padding: 2rem;
                height: 100%;
                display: flex;
                flex-direction: column;
                border: 0; /* Borda sutil verde */
                transition: all 0.3s ease;
            }

            .testimonial-card:hover {
                transform: translateY(-8px);
                border-color: #7FE6A8;
                box-shadow: 0 10px 40px rgba(127, 230, 168, 0.15);
            }

            /* Texto Justificado e Visível */
            .testimonial-text {
                color: #fff /* Texto escuro para leitura perfeita sobre o fundo claro */
                font-size: 0.95rem;
                line-height: 1.6;
                text-align: justify; /* JUSTIFICADO */
                hyphens: auto;
            }

            .testimonial-name {
                color: #fff; /* Cor principal do site */
                font-weight: 700;
                font-size: 1rem;
            }

            .star-rating {
                color: #FFC107; /* Amarelo ouro */
                font-size: 0.7rem;
                margin-bottom: 1rem;
            }

            .nav-btn {
                color: #7FE6A8;
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                z-index: 20;
                cursor: pointer;
                font-size: 2rem;
                transition: all 0.3s ease;
            }
            
            .nav-btn:hover { color: #fff; scale: 1.1; }
            .prev-btn { left: 0px; }
            .next-btn { right: 0px; }

            /* Estilo do link 'Ver mais' */
            .read-more {
                color: #5AC485;
                font-weight: 600;
                font-size: 0.8rem;
                margin-top: 1rem;
                display: block;
                text-align: right;
            }