

        :root {
            --rs-blue-light: #00b4ec;
            --rs-blue-dark: #0084b4;
            --rs-black: #0b0c10;
            --rs-dark-gray: #1f2833;
            --rs-text-light: #ffffff;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: #f8f9fa;
            color: var(--rs-dark-gray);
            overflow-x: hidden;
        }

        .text-muted2{
            color: rgb(197 226 255 / 75%) !important;
        }

        .logo {
            max-width: 6vw;
        }

        /* Ajuste para telas de celular (telas menores que 768px) */
        @media (max-width: 767.98px) {
            .logo {
                max-width: 45vw;
            }
        }

        /* Navbar Custom */
        .navbar {
            background-color: var(--rs-black) !important;
            border-bottom: 3px solid var(--rs-blue-light);
        }
        .navbar-brand, .nav-link {
            color: var(--rs-text-light) !important;
        }
        .nav-link:hover {
            color: var(--rs-blue-light) !important;
        }

        /* Hero Section - Desktop / Base */
        .hero-section {
            background: linear-gradient(135deg, var(--rs-black) 60%, var(--rs-blue-light) 60%);
            color: var(--rs-text-light);
            padding: 100px 0 140px 0;
            position: relative;
            overflow: hidden;
        }

        /* AJUSTE EXCLUSIVO MOBILE: Faixa azul transversal discreta no canto inferior direito */
        @media (max-width: 991px) {
            .hero-section {
                background: var(--rs-black); /* Fundo predominantemente preto */
                padding: 40px 0 120px 0;    /* Espaço inferior para a faixa não cobrir botões */
            }
            .hero-section::after {
                content: "";
                position: absolute;
                bottom: 0;
                right: 0;
                width: 100%;
                height: 180px; /* Altura da região da faixa */
                background: var(--rs-blue-light);
                /* Cria o corte transversal perfeito subindo da direita para a esquerda */
                clip-path: polygon(100% 0, 100% 100%, 0% 100%);
                z-index: 1;
                pointer-events: none;
                opacity: 0.85; /* Deixa o tom idêntico e suave ao do cartão */
            }
            /* Garante que o conteúdo do texto e botões fique acima da faixa transversal */
            .hero-section .container {
                position: relative;
                z-index: 2;
            }
        }

        /* Cards de Serviços */
        .service-card {
            background: var(--rs-text-light);
            border: none;
            border-bottom: 4px solid var(--rs-black);
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .service-card:hover {
            transform: translateY(-5px);
            border-bottom-color: var(--rs-blue-light);
            box-shadow: 0 10px 25px rgba(0,180,236,0.2);
        }
        .service-icon {
            width: 70px;
            height: 70px;
            background-color: var(--rs-black);
            color: var(--rs-blue-light);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            font-size: 1.8rem;
            margin-bottom: 20px;
        }

        /* Seção Sobre / Diferenciais */
        .bg-dark-section {
            background-color: var(--rs-black);
            color: var(--rs-text-light);
        }

        /* Botões de Conversão */
        .btn-rs-whatsapp {
            background-color: #25d366;
            color: white;
            font-weight: 700;
            padding: 12px 30px;
            border-radius: 50px;
            border: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
        }
        .btn-rs-whatsapp:hover {
            background-color: #20ba5a;
            color: white;
            transform: scale(1.03);
        }
        
        .btn-rs-accent {
            background-color: var(--rs-blue-light);
            color: var(--rs-black);
            font-weight: 700;
            padding: 12px 30px;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        .btn-rs-accent:hover {
            background-color: var(--rs-text-light);
            color: var(--rs-black);
        }

        /* Floating WhatsApp Button */
        .whatsapp-floating {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 9999;
            width: 60px;
            height: 60px;
            background-color: #25d366;
            border-radius: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 30px;
            box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
        }
        .whatsapp-floating:hover {
            transform: scale(1.1);
            color: white;
        }

        /* Footer */
        footer {
            background-color: #050507;
            color: #aaa;
            border-top: 5px solid var(--rs-blue-light);
        }
    

        /* Container da imagem para prender o efeito de zoom e manter o tamanho fixo */
.service-card .image-wrapper {
    width: 100%;
    height: 350px; /* Altere este valor para a altura que preferir */
    overflow: hidden;
}

/* Configuração padrão da imagem utilizando object-fit */
.service-card .service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease-in-out;
}

/* Aplica o efeito de Zoom In ao passar o mouse em qualquer parte do Card */
.service-card:hover .service-img {
    transform: scale(1.1);
}


/* Customização do Backdrop nativo do Dialog */
#image-viewer-modal::backdrop {
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px); /* Dá um leve desfoque no fundo do site */
}

/* Estrutura interna do modal */
.modal-zoom-overlay {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
}

/* Estilização da imagem aberta */
#modal-zoom-img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    animation: zoomInEntrance 0.25s ease-out;
}

/* Botão de Fechar (X) */
.modal-zoom-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
    user-select: none;
}

.modal-zoom-close:hover {
    opacity: 1;
}

/* Animação suave de abertura para a imagem */
@keyframes zoomInEntrance {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}