/* --- CONFIGURAÇÕES GERAIS E RESETS --- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        :root {
            --verde-principal: #0b4127;
            --verde-claro: #0a5c36;
            --dourado: #bfa15f;
            --vermelho: #cc181e;
            --texto-escuro: #1c2821;
        }

        body {
            /* Fundo clarinho em degradê na página inteira conforme solicitado */
            background: linear-gradient(180deg, #f4f9f6 0%, #dbe7e1 50%, #f4f9f6 100%);
            background-attachment: fixed;
            color: var(--texto-escuro);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* --- 1. MENU SUPERIOR DESKTOP (1024px, FLUTUANTE, COLADO NO TOPO) --- */
        .header-area {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1050;
            padding-top: 15px;
            display: flex;
            justify-content: center;
        }

        .nav-bar-wrapper {
            width: 1024px;
            max-width: 100%;
            padding: 0 15px;
        }

        .nav-bar {
            background: #ffffff;
            border-radius: 50px;
            padding: 5px 35px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
            position: relative;
            height: 75px;
        }
		
		.lang-flag { width: 20px; margin-right: 8px; vertical-align: middle; border-radius: 2px; }
        .nav-lang { border-left: 1px solid #ddd; margin-left: 10px !important; padding-left: 15px !important; }

        .menu-side {
            display: flex;
            align-items: center;
            gap: 25px;
            list-style: none;
            margin: 0;
            padding: 0;
            width: 38%;
        }

        .menu-side.left { justify-content: flex-start; }
        .menu-side.right { justify-content: flex-end; }

        .menu-side a {
            color: var(--verde-claro);
            text-decoration: none;
            font-weight: 700;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: color 0.3s;
        }

        .menu-side a:hover {
            color: var(--vermelho);
        }

        /* Logomarca centralizada com neon embaixo */
        .logo-center {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            z-index: 1100;
        }

        .logo-center img {
            height: 65px;
            display: block;
        }

        .neon-line {
            width: 90%;
            height: 4px;
            background-color: #00ff88;
            margin-top: 3px;
            border-radius: 2px;
            box-shadow: 0 0 12px #00ff88, 0 0 25px #00ff88;
        }

        /* Seletor de Idioma dentro do Menu (Apenas a língua atual visível em bolinha) */
        .lang-dropdown {
            position: relative;
            display: inline-block;
        }

        .lang-current {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            border: 2px solid var(--verde-claro);
            cursor: pointer;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .lang-current img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .lang-options {
            display: none;
            position: absolute;
            right: 0;
            top: 35px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            padding: 8px;
            flex-direction: column;
            gap: 8px;
            z-index: 1200;
        }

        .lang-dropdown:hover .lang-options {
            display: flex;
        }

        .lang-btn {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            overflow: hidden;
            cursor: pointer;
            border: 1px solid #ccc;
        }

        .lang-btn img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* --- 2. SISTEMA DE SLIDER DE ALTO IMPACTO (600px, 100% LARGURA) --- */
        .hero-slider-container {
            position: relative;
            width: 100%;
            height: 650px; /* Margem extra para compensar a curvatura do menu */
            overflow: hidden;
            background-color: #042416;
        }

        .custom-slider {
            width: 100%;
            height: 650px;
            position: relative;
        }

        .slide-item {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
            display: flex;
            align-items: center;
            background-size: cover;
            background-position: center;
        }

        .slide-item::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(135deg, rgba(4,36,22,0.9) 0%, rgba(11,65,39,0.7) 100%);
            z-index: 1;
        }

        .slide-item.active {
            opacity: 1;
            visibility: visible;
        }

        .slide-inner {
            position: relative;
            z-index: 5;
            width: 100%;
        }

        /* --- ANIMAÇÕES DE MONTAGEM DO SLIDER --- */
        .slide-text-animate {
            opacity: 0;
            transform: translateX(-50px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
            transition-delay: 0.3s;
        }

        .slide-img-animate {
            opacity: 0;
            transform: translateY(50px) scale(0.9);
            transition: opacity 0.9s ease-out, transform 0.9s ease-out;
            transition-delay: 0.5s;
        }

        /* Classes ativadas via JS quando o slide entra em cena */
        .active .slide-text-animate {
            opacity: 1;
            transform: translateX(0);
        }

        .active .slide-img-animate {
            opacity: 1;
            transform: translateY(0) scale(1);
            animation: floatContinuous 4s ease-in-out infinite alternate;
            animation-delay: 1.4s;
        }

        @keyframes floatContinuous {
            0% { transform: translateY(0px); }
            100% { transform: translateY(-12px); }
        }

        .slide-title {
            font-size: 3.5rem;
            font-weight: 900;
            line-height: 1.1;
            color: white;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        .slide-title span { color: var(--dourado); }

        .slide-p {
            font-size: 1.15rem;
            color: #cedcd5;
            margin-bottom: 35px;
            max-width: 600px;
        }

        .img-png-floating {
            max-width: 100%;
            max-height: 360px;
            filter: drop-shadow(0 15px 25px rgba(0,0,0,0.5));
            border-radius: 15px;
        }

        /* Wave Divider SVG com Sombra para cima sobrepondo o slider */
        .wave-divider {
            position: absolute;
            bottom: 0px;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
            z-index: 10;
        }

        .wave-divider svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 350px;
			/*fill: var(--verde-principal);*/
            fill: #E1EBE6;  /*Trava com a cor inicial do degradê do body */
            filter: drop-shadow(0px -15px 10px rgba(0, 0, 0, 0.18));
        }

        /* Controles do Slider */
        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.1);
            border: none;
            color: white;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            z-index: 20;
            cursor: pointer;
            transition: background 0.3s;
        }
        .slider-arrow:hover { background: var(--vermelho); }
        .arrow-prev { left: 25px; }
        .arrow-next { right: 25px; }

        /* --- 3. SEÇÃO INFORMAÇÕES RELEVANTES (BOXES TRANSPARENTES FLUTUANTES) --- */
        .info-section {
            padding: 40px 0 60px 0;
            position: relative;
            z-index: 20;
            margin-top: -40px;
        }

        .transparent-box {
            background: transparent;
            padding: 25px;
            transition: transform 0.3s;
            height: 100%;
        }

        .transparent-box:hover {
            transform: translateY(-5px);
        }

        .transparent-box i {
            font-size: 2.5rem;
            color: var(--verde-claro);
            margin-bottom: 20px;
            display: block;
        }

        .transparent-box h4 {
            font-size: 1.3rem;
            color: var(--verde-principal);
            font-weight: 700;
            margin-bottom: 15px;
        }

        /* --- 4. QUEM SOMOS DETALHADO (TEXTOS DO SEU PROJETO) --- */
        .about-section {
            padding: 60px 0 80px 0;
        }

        .about-text-block h2 {
            font-size: 2.2rem;
            color: var(--verde-principal);
            font-weight: 800;
            text-transform: uppercase;
            margin-bottom: 25px;
        }

        .about-text-block p {
            font-size: 1.05rem;
            margin-bottom: 20px;
            color: var(--texto-escuro);
        }

        .badge-proposal {
            background-color: white;
            border-left: 5px solid var(--dourado);
            padding: 20px;
            border-radius: 0 15px 15px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.03);
            margin-top: 30px;
        }

        /* --- 5. PARALLAX COM FORMULÁRIO DE CAPTAÇÃO (600px ALTURA) --- */
        .parallax-area {
            background-image: linear-gradient(rgba(11, 65, 39, 0.7), rgba(4, 36, 22, 0.85)), url('https://images.unsplash.com/photo-1519699047748-de8e457a634e?q=80&w=1200');
            background-attachment: fixed;
            background-position: center;
            background-size: cover;
            height: 600px;
            display: flex;
            align-items: center;
            color: white;
            border-radius: 40px;
            margin-bottom: 80px;
        }

        .form-card {
            background: #ffffff;
            padding: 35px;
            border-radius: 24px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.25);
            color: var(--texto-escuro);
        }

        .form-card h3 {
            color: var(--verde-principal);
            font-weight: 800;
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        .form-card .form-control {
            border-radius: 10px;
            padding: 11px 15px;
            margin-bottom: 15px;
            border: 1px solid #ced4da;
        }

        .form-card .btn-send {
            background-color: var(--vermelho);
            color: white;
            border: none;
            width: 100%;
            padding: 12px;
            border-radius: 10px;
            font-weight: 700;
            text-transform: uppercase;
            box-shadow: 0 5px 15px rgba(204, 24, 30, 0.3);
            transition: background 0.3s;
        }

        .form-card .btn-send:hover { background-color: #b21217; }

        /* --- 6. CARROSSEL DE TESTEMUNHOS (3 POR VEZ, 9 TOTAL) --- */
        .testimonial-card {
            background: white;
            padding: 30px;
            border-radius: 16px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.03);
            border-top: 5px solid var(--dourado);
            height: 100%;
        }

        .testimonial-card p {
            font-style: italic;
            font-size: 0.98rem;
            color: #444;
        }

        .testimonial-card .client-name {
            display: block;
            margin-top: 20px;
            font-weight: 700;
            color: var(--verde-claro);
            font-size: 0.9rem;
        }

        /* Estilização dos indicadores do Bootstrap */
        .carousel-indicators [data-bs-target] {
            background-color: var(--verde-principal);
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }

        /* --- 7. FOOTER INDUSTRIAL EM 4 COLUNAS --- */
        footer {
            background-color: #042416;
            color: #cedcd5;
            padding: 80px 0 30px 0;
            font-size: 0.9rem;
        }

        footer h4 {
            color: white;
            margin-bottom: 25px;
            text-transform: uppercase;
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: 0.5px;
        }

        footer ul { list-style: none; padding: 0; }
        footer ul li { margin-bottom: 12px; }
        footer ul li a {
            color: #cedcd5;
            text-decoration: none;
            transition: color 0.3s;
        }
        footer ul li a:hover { color: var(--dourado); }

        .newsletter-input {
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.15);
            padding: 10px 15px;
            border-radius: 8px;
            color: white;
            width: 100%;
            margin-bottom: 15px;
        }

        .footer-sep {
            border-top: 1px solid rgba(255,255,255,0.1);
            margin: 40px 0 20px 0;
            padding-top: 20px;
        }

        .footer-socials a {
            color: white;
            font-size: 1.4rem;
            margin-right: 18px;
            transition: color 0.3s;
        }
        .footer-socials a:hover { color: var(--dourado); }

        /* --- 8. ELEMENTOS DE INTERAÇÃO RÁPIDA FIXOS --- */
        .action-widgets {
            position: fixed;
            bottom: 35px;
            right: 35px;
            display: flex;
            align-items: center;
            gap: 15px;
            z-index: 2000;
        }

        .circle-widget {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            font-size: 1.5rem;
            box-shadow: 0 8px 20px rgba(0,0,0,0.25);
            transition: transform 0.2s;
        }

        .circle-widget:hover { transform: scale(1.1); color: white; }
        .widget-wa { background-color: #25d366; }
        .widget-top { background-color: var(--verde-principal); font-size: 1.1rem; }

        /* --- MEDIA QUERIES RESPONSIVIDADE (MOBILE) --- */
        @media (max-width: 991px) {
            .header-area { padding-top: 0; }
            .nav-bar-wrapper { width: 100%; padding: 0; }
            .nav-bar { border-radius: 0; height: auto; padding: 15px 20px; }
            .menu-side { display: none; }
            .logo-center { position: static; transform: none; }
            .hero-slider-container { height: auto; }
            .custom-slider { height: auto; }
            .slide-item { position: relative; opacity: 1; visibility: visible; padding: 100px 0 160px 0; height: auto; }
            .slide-title { font-size: 2.2rem; text-align: center; margin-top: 30px; }
            .slide-p { text-align: center; }
            .img-png-floating { margin-top: 30px; }
            .wave-divider { bottom: -1px; }
            .parallax-area { height: auto; padding: 60px 0; }
            .form-card { margin-top: 40px; }
            .action-widgets { bottom: 20px; right: 20px; }
        }
		
		#google_translate_element, .skiptranslate { display: none !important; }
        body { top: 0px !important; position: static !important; }