
        html {scroll-behavior: smooth;}

        body {
            padding-top: 56px; /* altura aproximada da navbar */
        }

        .navbar {
            transition: background-color 0.5s ease;
        }

        .navbar.scrolled {
            background-color: #000000; /* ou qualquer outra cor que você preferir */
        }
        
        /* Estilo para a Section Hero (Primeira dobra) */
        .hero-section {
            background-repeat: no-repeat;
            background-position: top center; 
            background-size: cover;
            min-height: 600px; /* Altura mínima da seção */
            display: flex;
            overflow: clip;
            align-items: center;
            position: relative;
            margin-top: -56px;
        }

        .hero-section video{
            position: absolute;    
            min-width: 100vw;
            min-height: 600px;
            pointer-events: none;
            pointer-events: none;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.4); /* Escurecimento sutil para o texto */
            z-index: 1;
        }

        .hero-content {
            z-index: 2; /* Para o conteúdo ficar acima do overlay */
        }

        /* Estilos para os blocos de Tipo de Apresentações */
        .apresentacao-card {
            min-height: 250px;
            background-color: #f8f9fa; /* Cor de fundo padrão */
            background-size: cover;
            background-repeat: no-repeat;
            background-position: top center;
            display: flex;
            align-items: flex-end;
            padding: 1rem;
            color: white;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
            border-radius: 0.5rem;
            overflow: hidden;
            position: relative;
        }
        .apresentacao-card::before {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
            z-index: 0;
        }
        .apresentacao-card .tipo-text {
            position: relative;
            z-index: 2;
            font-size: 1.25rem;
            font-weight: bold;
            text-align: center;
            margin: 0 auto;
        }

        /* Estilo para a seção de Exemplos */
        .exemplos-card {
            min-height: 150px;
            background-color: #333; /* Cor de fundo para placeholders */
            border-radius: 0.25rem;
            border: 2px solid #000;
            overflow: hidden;
            margin-bottom: 1rem;
            cursor: pointer;
            scale: 1;
            transition: all 0.5s ease;
        }
        .exemplos-card:hover {
            border-color: #FFF;
            scale: 1.05;
            cursor: pointer;
        }

        /* Estilo para a seção de Clientes (Logo) */
        .clientes-logo {
            max-width: 100%;
            height: auto;
            filter: grayscale(100%); /* Simula o efeito de logo em P&B ou cinza */
            opacity: 0.8;
            transition: all 0.3s ease;
        }
        .clientes-logo:hover {
            opacity: 1;
            scale:1.05;
            filter: grayscale(0%);
        }

        /* Estilo para o Footer/Contatos */
        footer {
            background-color: #1a1a1a; /* Cor de fundo do Footer */
        }

        footer a {
            color: #ffffff; /* Cor dos links no Footer */
            text-decoration: none;
            transition: all 0.3s ease;
        }

        footer a:hover {
            color:rgb(229, 255, 0);
        }

        footer a:active {
            color:rgb(229, 255, 0);
        }

        .white-popup {
            background: #fff;
            padding: 37px 30px;
            text-align: left;
            max-width: 900px;
            margin: 40px auto;
            position: relative;
        }