        :root {
            --azul-ceu: #00AEEF;
            --chumbo: #333333;
            --prata: #C0C0C0;
            --prata-light: #E0E0E0;
        }

        body {
            font-family: 'Roboto', sans-serif;
            background: linear-gradient(to right, var(--prata), #fff, var(--prata));
            margin: 0;
            padding: 0;
            overflow-x: hidden;
        }

        /* Top Bar */
        .top-bar {
            background-color: var(--chumbo);
            color: white;
            font-size: 0.85rem;
            padding: 5px 0;
        }

        /* Container Limitado a 1024px no Desktop */
        .custom-container {
            max-width: 1024px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Header & Navbar */
        header {
            background: linear-gradient(90deg, var(--prata-light), #fff, var(--prata-light));
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .navbar-brand img {
            max-height: 60px;
        }

        .nav-link {
            color: var(--chumbo) !important;
            font-weight: 500;
            font-size: 0.9rem;
            text-transform: uppercase;
        }

        .lang-flag {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 5px;
        }
		
		.nav-lang { border-left: 1px solid #ddd; margin-left: 10px !important; padding-left: 15px !important; }
		.dropdown-item { cursor: pointer; font-size: 0.8rem; }

        /* Hero Slide */
        .carousel-item {
            height: 450px;
            background-size: cover;
            background-position: center;
        }

        /* Boxes */
        .feature-box {
            background: white;
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: transform 0.3s;
            height: 100%;
        }

        .feature-box:hover {
            transform: translateY(-10px);
        }

        .feature-box i {
            font-size: 3rem;
            color: var(--azul-ceu);
            margin-bottom: 20px;
        }

        /* Parallax Video */
        .parallax-video-container {
            position: relative;
            width: 100%;
            height: 400px; /* Reduzido de 900px para eliminar o espaço sob os depoimentos */
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .parallax-video-container video {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            z-index: 1; /* Ajustado para voltar a aparecer sobre o background do body */
            transform: translate(-50%, -50%);
            object-fit: cover;
        }

        .parallax-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: white;
            text-align: center;
            z-index: 2; /* Garante que o texto fique por cima do vídeo */
        }

        /* Depoimentos */
        .testimonial-section {
            background: #f9f9f9;
            padding: 50px 0;
            position: relative;
        }

        /* Resolve o bug de altura fantasma do Carrossel do Bootstrap 5 */
        #testimonialCarousel .carousel-inner {
            display: flex !important;
            align-items: center;
            overflow: hidden;
            width: 100%;
        }

        #testimonialCarousel .carousel-item {
            display: none;
            margin-right: 0;
            flex: 0 0 100%;
            width: 100%;
            height: auto !important; /* Destrói qualquer altura herdada do primeiro carrossel do topo */
        }

        #testimonialCarousel .carousel-item.active {
            display: block;
        }

        #testimonialCarousel .row {
            margin: 0 !important;
            padding: 0 !important;
        }

        /* Footer */
        footer {
            background: linear-gradient(180deg, var(--azul-ceu) 0%, var(--chumbo) 100%);
            color: white;
            padding: 50px 0 20px 0;
        }

        footer h5 {
            border-bottom: 2px solid var(--azul-ceu);
            padding-bottom: 10px;
            margin-bottom: 20px;
        }

        footer a {
            color: #ddd;
            text-decoration: none;
            display: block;
            margin-bottom: 8px;
        }

        footer a:hover {
            color: white;
        }

        .social-icons a {
            display: inline-block;
            font-size: 1.5rem;
            margin-right: 15px;
        }
		
        .fa-brands, .fab.fa-twitter, .mec-fa-twitter {
            font-family: 'Font Awesome 6 Brands';
            font-style: normal;
            font-weight: 400;
        }
        .fa-twitter::before, .mec-fa-twitter::before {
            content: "\e61b" !important;
        }

        /* Floating Buttons */
        .float-buttons {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
            display: flex;
            flex-direction: row;
            align-items: center;
        }

        .btn-support {
            background-color: var(--azul-ceu);
            color: white;
            border-radius: 50px;
            padding: 10px 20px;
            margin-right: 10px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
            cursor: pointer;
        }

        .btn-back-top {
            background-color: var(--chumbo);
            color: white;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
        }

        /* Google Translate Hiding Bar */
        .goog-te-banner-frame.skiptranslate, .goog-te-gadget-icon { display: none !important; }
        body { top: 0px !important; }
        .goog-te-gadget-simple { background-color: transparent !important; border: none !important; }

        /* Responsividade */
        @media (max-width: 1024px) {
            .custom-container {
                max-width: 100%;
            }
        }

        @media (max-width: 768px) {
            .top-bar .text-end {
                text-align: center !important;
                margin-top: 5px;
            }
            .carousel-item {
                height: 300px;
            }
            .parallax-video-container { height: 350px; }
        }
		
        .imagem-branca {
            filter: brightness(0) invert(1);
        }
		
	/* Esconde elementos nativos do Google */
		#google_translate_element, .skiptranslate { display: none !important; }
		body { top: 0px !important; position: static !important; }