        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }
        
        /* Navbar */
        .navbar {
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: #ff6600 !important;
        }

        /* Melhorar qualidade das logos */
        .navbar-brand img, .footer img {
            image-rendering: -webkit-optimize-contrast;
            image-rendering: -moz-crisp-edges; 
            image-rendering: crisp-edges;
            image-rendering: high-quality;
            -ms-interpolation-mode: bicubic;
            max-width: 100%;
            height: auto;
            object-fit: contain;
            filter: contrast(1.1) brightness(1.05);
            backface-visibility: hidden;
            -webkit-backface-visibility: hidden;
            transform: translateZ(0);
        }

        /* Logo específica do rodapé */
        .logo-footer {
            filter: contrast(1.2) brightness(1.1) saturate(1.1);
            image-rendering: -webkit-optimize-contrast;
            image-rendering: crisp-edges;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            width: auto;
            max-width: 220px;
            max-height: 55px;
        }

        /* Logo do navbar - Qualidade superior */
        .logo-navbar {
            max-width: 380px;
            max-height: 80px; /*ajuste do tamanho da logo*/
            image-rendering: -webkit-optimize-contrast;
            image-rendering: high-quality;
            image-rendering: -webkit-crisp-edges;
            image-rendering: -moz-crisp-edges;
            image-rendering: crisp-edges;
            -ms-interpolation-mode: bicubic;
            filter: contrast(1.2) brightness(1.1) saturate(1.08);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            backface-visibility: hidden;
            -webkit-backface-visibility: hidden;
            transform: translateZ(0) scale(1);
            will-change: transform;
            object-fit: contain;
            object-position: center;
        }

        /* Audio Player Flutuante Lateral - Estilo Arredondado */
        .audio-player {
            position: fixed;
            top: 40%;
            right: 30px;
            transform: translateY(-50%);
            width: 280px;
            height: 60px;
            background: linear-gradient(135deg, #4DB6AC 0%, #1E3A8A 100%);
            z-index: 1000;
            border-radius: 30px;
            box-shadow: 0 15px 45px rgba(77,182,172,0.3), 0 5px 15px rgba(0,0,0,0.2);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            backdrop-filter: blur(15px);
            border: 2px solid rgba(255,255,255,0.15);
            opacity: 0;
            visibility: hidden;
            transform-origin: center right;
        }

        .audio-player.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(-50%) scale(1);
        }

        .audio-player:hover {
            transform: translateY(-50%) scale(1.03);
            box-shadow: 0 20px 60px rgba(77,182,172,0.4), 0 8px 25px rgba(0,0,0,0.25);
        }

        .audio-controls {
            display: flex;
            align-items: center;
            width: 100%;
            padding: 12px 16px;
            height: 100%;
            gap: 12px;
        }
        
        .audio-left-controls {
            display: flex;
            align-items: center;
            gap: 0;
        }
        
        .audio-center-controls {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        
        .audio-right-controls {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .play-pause-btn, .volume-btn, .close-audio-btn {
            background: rgba(0,0,0,0.3);
            border: none;
            border-radius: 50%;
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            color: white;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        }

        .play-pause-btn:hover, .volume-btn:hover, .close-audio-btn:hover {
            background: rgba(0,0,0,0.4);
            transform: scale(1.1);
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
        }
        
        .volume-btn.muted {
            background: rgba(255,107,43,0.4);
            border: 1px solid rgba(255,107,43,0.6);
            box-shadow: 0 2px 8px rgba(255,107,43,0.3);
        }
        
        .volume-btn.muted:hover {
            background: rgba(255,107,43,0.6);
            border: 1px solid rgba(255,107,43,0.8);
            box-shadow: 0 4px 12px rgba(255,107,43,0.4);
        }

        .audio-info {
            flex: 1;
            min-width: 0;
        }
        
        .close-audio-btn {
            background: rgba(255,107,67,0.2) !important;
            border-color: rgba(255,107,67,0.3) !important;
        }
        
        .close-audio-btn:hover {
            background: rgba(255,107,67,0.3) !important;
            border-color: rgba(255,107,67,0.5) !important;
        }

        .audio-title {
            color: white;
            font-weight: 600;
            font-size: 11px;
            display: block;
            margin-bottom: 2px;
        }

        .audio-progress-container {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .audio-progress-bar {
            flex: 1;
            height: 4px;
            background: rgba(255,255,255,0.3);
            border-radius: 2px;
            cursor: pointer;
            position: relative;
        }

        .audio-progress {
            height: 100%;
            background: #4CAF50;
            border-radius: 2px;
            width: 35%;
            transition: width 0.1s ease;
            position: relative;
        }

        .audio-progress:after {
            content: '';
            position: absolute;
            right: -6px;
            top: 50%;
            transform: translateY(-50%);
            width: 12px;
            height: 12px;
            background: #4CAF50;
            border-radius: 50%;
            border: 2px solid white;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }

        .audio-time {
            color: rgba(255,255,255,0.9);
            font-size: 12px;
            font-weight: 500;
            white-space: nowrap;
        }

        /* Animação de pulsação para indicar auto-play bloqueado */
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }

        /* RESPONSIVIDADE - Media Queries */
        
        /* Tablets - 768px a 1024px */
        @media (max-width: 1024px) {
            .hero-section {
                min-height: 70vh;
                padding-top: 65px;
            }
            
            .hero-content h1 {
                margin-top: 40px;
                font-size: 2.5rem;
            }
            
            .hero-content p {
                font-size: 1.1rem;
            }
            
            .contact-container {
                max-width: 900px;
                height: auto;
            }
            
            .contact-form-card {
                width: 100%;
                max-width: 500px;
                margin: 0 auto;
            }
            
            .contact-image {
                display: none; /* Oculta imagem em tablets */
            }
        }
        
        /* Mobile - até 768px */
        @media (max-width: 768px) {
            .hero-section {
                min-height: 60vh;
                padding: 55px 0 60px 0;
            }
            
            .hero-content h1 {
                font-size: 2rem;
                line-height: 1.2;
            }
            
            .hero-content p {
                font-size: 1rem;
            }
            
            .container {
                padding: 0 15px;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .contact-container {
                padding: 20px;
                border-radius: 16px;
            }
            
            .contact-form-card {
                padding: 25px;
                max-width: 100%;
            }
            
            .contact-form-title {
                font-size: 1.5rem;
            }
            
            .contact-form-subtitle {
                font-size: 0.9rem;
            }
            
            .navbar-brand .logo-navbar {
                height: 65px;
            }
            
            .service-card {
                margin-bottom: 20px;
            }
            
            .testimonial-card {
                margin-bottom: 20px;
            }
            
            .partners-carousel {
                height: 80px;
            }
            
            .partner-logo {
                height: 60px;
                width: 120px;
            }
            
            /* Player de áudio responsivo */
            .audio-player {
                width: 280px;
                height: 50px;
                top: -60px;
            }
            
            .audio-controls {
                padding: 6px 12px;
                gap: 8px;
            }
            
            .audio-left-controls {
                gap: 6px;
            }
            
            .audio-right-controls {
                gap: 4px;
            }
            
            .play-pause-btn, .volume-btn, .close-audio-btn {
                width: 28px;
                height: 28px;
            }
            
            .audio-title {
                font-size: 10px;
            }
            
            .audio-title {
                font-size: 12px;
            }
            
            .audio-time {
                font-size: 10px;
            }
        }
        
        /* Mobile pequeno - até 480px */
        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 1.8rem;
            }
            
            .hero-content p {
                font-size: 0.9rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .contact-form-card {
                padding: 20px;
            }
            
            .contact-form-title {
                font-size: 1.3rem;
            }
            
            .btn-primary {
                padding: 12px 24px;
                font-size: 0.9rem;
            }
            
            .navbar-brand .logo-navbar {
                height: 60px;
            }
            
            .whatsapp-float {
                width: 50px;
                height: 50px;
                right: 15px;
                bottom: 15px;
            }
            
            .whatsapp-text {
                display: none; /* Oculta texto no mobile pequeno */
            }
        }
        
        /* Navbar ultra compacto - reduz altura em ~4cm total */
        .navbar {
            padding-top: 0;
            padding-bottom: 0;
            min-height: auto;
        }
        
        .navbar .container {
            padding-top: 0;
            padding-bottom: 0;
        }
        
        .navbar-brand {
            margin-bottom: 0;
            padding-top: 0.1rem;
            padding-bottom: 0.1rem;
        }
        
        .navbar-nav .nav-link {
            color: #333 !important;
            font-weight: 500;
            margin: 0 10px;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background: linear-gradient(90deg, #4DB6AC, #1E3A8A);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        /* Hero Section com Zoom-in background-image: url('./tech1.jpg');*/
        .hero-section {
            background: linear-gradient(135deg, rgba(77, 182, 172, 0.85), rgba(30, 58, 138, 0.85)),url('./../static/images/hero-bg.png');
            background-size: cover;
            background-position: center;
            min-height: 100vh;
            display: flex;
            align-items: center;
            color: white;
            position: relative;
            overflow: hidden;
            animation: heroZoomIn 7s ease-in-out infinite alternate;
            padding-top: 75px;
        }
        
        @keyframes heroZoomIn {
            0% { 
                background-size: 100%; 
                filter: brightness(0.9);
            }
            50% { 
                background-size: 105%; 
                filter: brightness(1);
            }
            100% { 
                background-size: 110%; 
                filter: brightness(1.1);
            }
        }
        
        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-top: 20px;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            animation: fadeInUp 1s ease-out;
        }
        
        .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            font-weight: 300;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
            animation: fadeInUp 1s ease-out 0.2s both;
        }
        .hero-content .d-flex a{  /*botões do menu*/
            border-radius: 25px;
        }
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Botões */
        .btn-primary {
            background: linear-gradient(45deg, #4DB6AC, #26A69A);
            border: none;
            padding: 15px 30px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(77, 182, 172, 0.3);
            animation: fadeInUp 1s ease-out 0.4s both;
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(77, 182, 172, 0.4);
            background: linear-gradient(45deg, #26A69A, #4DB6AC);
        }
        
        .btn-outline-light {
            border: 2px solid white;
            padding: 15px 30px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 50px;
            transition: all 0.3s ease;
            animation: fadeInUp 1s ease-out 0.6s both;
        }
        
        .btn-outline-light:hover {
            background: white;
            color: #1E3A8A;
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(255, 255, 255, 0.3);
        }
        
        /* Estatísticas */
        .stats-section {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 40px;
            margin-top: 50px;
            animation: fadeInUp 1s ease-out 0.8s both;
        }
        
        .stat-item h3 {
            font-size: 3rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 0.5rem;
        }
        
        .stat-item p {
            font-size: 1.1rem;
            opacity: 0.9;
            margin: 0;
        }
        
        /* Seções */
        .section-padding {
            padding: 100px 0;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 1rem;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, #4DB6AC, #1E3A8A);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        .section-subtitle {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 3rem;
        }
        
        /* Cards de Serviços */
        .service-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            height: 100%;
            border: 1px solid rgba(77, 182, 172, 0.1);
            position: relative;
            overflow: hidden;
        }
        
        /* Cards especiais com imagens de fundo */
        .service-card.image-card {
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            color: white;
            position: relative;
        }
        
        /* Card Ensaios Laboratoriais */
        .service-card.laboratorio-card {
            background-image: url('./../static/images/laboratorio.png');
        }
        
        /* Card Ensaios de Materiais Não Convencionais */
        .service-card.controle-qualidade-card {
            background-image: url('./../static/images/ensaios-materiais-nao-convencionais.png');
        }
        
        /* Card Consultoria Técnica */
        .service-card.consultoria-tecnica-card {
            background-image: url('./../static/images/consultoria-tecnica.png');
        }
        
        /* Card Controle Tecnológico */
        .service-card.controle-tecnologico-card {
            background-image: url('./../static/images/controle-tecnologico.png');
        }
        
        /* Card Ensaios Não Destrutivos */
        .service-card.seguranca-estrutural-card {
            background-image: url('./../static/images/ensaios-nao-destrutivos.png');
        }
        
        /* Card Certificação e Laudos */
        .service-card.certificacao-laudos-card {
            background-image: url('./../static/images/topografia.png');
        }
        
        /* Overlay com gradient turquesa/azul para todos os cards com imagem */
        .service-card.image-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(77, 182, 172, 0.8), rgba(30, 58, 138, 0.7));
            border-radius: 20px;
            z-index: 1;
        }
        
        /* Conteúdo dos cards com imagem sobre o overlay */
        .service-card.image-card * {
            position: relative;
            z-index: 2;
        }
        
        /* Ícone branco para cards com imagem */
        .service-card.image-card .service-icon {
            color: white;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        /* Título branco para cards com imagem */
        .service-card.image-card h4 {
            color: white;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        /* Descrição branca para cards com imagem */
        .service-card.image-card p {
            color: rgba(255, 255, 255, 0.9);
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(77, 182, 172, 0.15);
            border-color: rgba(77, 182, 172, 0.3);
        }
        
        /* Hover effect especial para cards com imagem */
        .service-card.image-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }
        
        /* Overlay mais intenso no hover dos cards com imagem */
        .service-card.image-card:hover::before {
            background: linear-gradient(135deg, rgba(77, 182, 172, 0.9), rgba(30, 58, 138, 0.8));
        }
        
        .service-icon {
            font-size: 4rem;
            color: #4DB6AC;
            margin-bottom: 1.5rem;
            display: block;
            width: 64px;
            height: 64px;
            margin: 0 auto 1.5rem auto;
        }
        
        .service-icon svg {
            width: 100%;
            height: 100%;
            fill: currentColor;
        }
        
        .service-card h4 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 1rem;
        }
        
        .service-card p {
            color: #666;
            line-height: 1.8;
        }
        
        /* Seção Sobre */
        .about-section {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
        }
        
        .about-item {
            text-align: center;
            padding: 30px;
            margin-bottom: 30px;
        }
        
        .about-icon {
            font-size: 3rem;
            color: #4DB6AC;
            margin-bottom: 1rem;
        }
        
        .about-item h5 {
            font-size: 1.3rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 1rem;
        }
        
        /* Depoimentos */
        .testimonial-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            margin-bottom: 30px;
            transition: all 0.3s ease;
        }
        
        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }
        
        .stars {
            color: #ffc107;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }
        
        .testimonial-text {
            font-style: italic;
            color: #666;
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }
        
        .testimonial-author {
            font-weight: 600;
            color: #333;
        }
        
        .testimonial-company {
            color: #1E3A8A;
            font-size: 0.9rem;
        }
        
        /* Parceiros */
        .partner-logo {
            font-size: 3rem;
            color: #666;
            transition: all 0.3s ease;
            text-align: center;
            padding: 20px;
        }
        
        .partner-logo:hover {
            color: #ff6600;
            transform: scale(1.1);
        }
        
        /* Formulário de Contato */
        .contact-form {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }
        
        .form-control {
            border: 2px solid #e9ecef;
            border-radius: 10px;
            padding: 15px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            border-color: #ff6600;
            box-shadow: 0 0 0 0.2rem rgba(255, 102, 0, 0.25);
        }

        /* Botão Qualimetri - Cor Principal Laranja */
        .btn-qualimetri-orange {
            background: linear-gradient(45deg, #FF6B2B, #FF8C42);
            border: none;
            color: white;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border-radius: 50px;
            padding: 15px 30px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 107, 43, 0.3);
            position: relative;
            overflow: hidden;
        }

        .btn-qualimetri-orange:hover {
            background: linear-gradient(45deg, #E55A24, #FF6B2B);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 107, 43, 0.4);
            color: white;
        }

        .btn-qualimetri-orange:active {
            transform: translateY(0);
            box-shadow: 0 4px 15px rgba(255, 107, 43, 0.3);
        }

        .btn-qualimetri-orange::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .btn-qualimetri-orange:hover::before {
            left: 100%;
        }
        
        .btn-submit {
            background: linear-gradient(45deg, #ff6600, #ff8533);
            border: none;
            padding: 15px 40px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 50px;
            transition: all 0.3s ease;
            width: 100%;
        }
        
        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 102, 0, 0.3);
        }
        
        /* Footer */
        .footer {
            background: linear-gradient(135deg, #333, #2c2c2c);
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer h5 {
            color: #4DB6AC;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }
        
        .footer a {
            color: #ccc;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer a:hover {
            color: #4DB6AC;
        }
        
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: rgba(77, 182, 172, 0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        
        .social-icons a:hover {
            background: #4DB6AC;
            color: white;
            transform: translateY(-3px);
        }
        
        /* Responsivo */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .hero-content p {
                font-size: 1.1rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .stats-section {
                padding: 30px 20px;
            }
            
            .stat-item h3 {
                font-size: 2rem;
            }
        }
        
        /* Animações de scroll */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Carrossel de Parceiros */
        .partners-carousel-container {
            overflow: hidden;
            position: relative;
            margin: 40px 0;
            padding: 20px 0;
        }

        .partners-carousel {
            display: flex;
            animation: scrollPartners 25s linear infinite;
            width: calc(320px * 20); /* 15 slides * 320px cada */
        }

        .partner-slide {
            flex: none;
            width: 320px;
            height: 140px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 25px;
        }

        .partner-logo-img {
            max-width: 220px;
            max-height: 100px;
            width: auto;
            height: auto;
            object-fit: contain;
            filter: none;
            opacity: 1;
            transition: all 0.3s ease;
            background: white;
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            image-rendering: high-quality;
            image-rendering: -webkit-optimize-contrast;
            -ms-interpolation-mode: bicubic;
        }

        .partner-logo-img:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 25px rgba(0,0,0,0.15);
        }

        @keyframes scrollPartners {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-320px * 20)); /* Move 10 slides para a esquerda */
            }
        }

        /* Seção de Contato - Layout Correto */
        .contact-reproduction-container {
            background: linear-gradient(135deg, #4DB6AC 0%, #1E3A8A 100%);
            border-radius: 24px;
            overflow: visible; /* Alterado para permitir que a imagem "vaze" */
            box-shadow: 0 16px 48px rgba(77, 182, 172, 0.25);
            width: 1000px; /* Reduzido para 1000px */
            height: 585.86px; /* Mantido em 585.86px */
            margin: 0 auto;
            position: relative;
        }

        .contact-content-wrapper {
            display: flex;
            height: 100%;
            width: 100%;
        }

        .contact-image-section {
            width: 350px; /* Ajustado para a largura da imagem */
            height: 585.86px; /* Ajustado para nova altura do container */
            display: flex;
            align-items: center;
            justify-content: flex-start; /* Alinha à esquerda para permitir vazamento */
            padding: 0; /* Remove padding para dar mais espaço */
            position: relative;
            overflow: visible; /* Permite que a imagem vaze */
        }

        .contact-person-image {
            width: 350px; /* Reduzido para 350px conforme solicitado */
            height: 585.86px; /* Mantido na altura do container */
            object-fit: cover;
            object-position: center top;
            border-radius: 0;
            margin-left: 0; /* Alinhado na margem do container */
            margin-top: 0; /* Alinhado no topo do container */
            margin-bottom: 0; /* Alinhado na base do container */
        }

        .contact-form-section {
            width: 600px; /* Aumentado para ocupar o espaço restante (1000px - 350px - margens) */
            height: 520px; /* Mantido */
            padding: 30px;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            background: white;
            border-radius: 20px;
            margin: 32px 25px 32px 25px; /* Margens balanceadas */
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }

        .contact-title {
            color: #333;
            font-size: 20px; /* Reduzido para caber melhor no card */
            font-weight: 700;
            margin-bottom: 4px;
            text-shadow: none;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.2;
        }

        .contact-subtitle {
            color: #666;
            font-size: 11px;
            margin-bottom: 12px;
            line-height: 1.3;
            font-weight: 400;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
        }

        .form-group {
            margin-bottom: 6px;
        }

        .form-input {
            width: 100%;
            background: transparent;
            border: none;
            border-bottom: 1px solid rgba(0, 0, 0, 0.2);
            color: #333;
            padding: 5px 0 3px 0;
            font-size: 11px;
            transition: border-color 0.3s ease;
            outline: none;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }

        .form-input::placeholder {
            color: rgba(0, 0, 0, 0.6);
            font-weight: 400;
            font-size: 12px;
        }

        .form-input:focus {
            border-bottom-color: #FF6B2B;
        }

        .form-textarea {
            min-height: 26px;
            max-height: 38px;
            resize: vertical;
            font-family: inherit;
            padding-top: 3px;
            padding-bottom: 2px;
            font-size: 12px;
        }

        .checkbox-group {
            margin: 5px 0 8px 0;
        }

        .checkbox-container {
            display: flex;
            align-items: flex-start;
            cursor: pointer;
            color: #666;
            font-size: 10px;
            line-height: 1.2;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }

        .checkbox-input {
            display: none;
        }

        .checkmark {
            width: 12px;
            height: 12px;
            background: transparent;
            border: 1px solid rgba(0, 0, 0, 0.3);
            border-radius: 2px;
            margin-right: 6px;
            margin-top: 1px;
            flex-shrink: 0;
            position: relative;
            transition: all 0.3s ease;
        }

        .checkbox-input:checked + .checkmark {
            background: #FF6B2B;
            border-color: #FF6B2B;
        }

        .checkbox-input:checked + .checkmark::after {
            content: '✓';
            color: white;
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            font-weight: bold;
            font-size: 10px;
        }

        .checkbox-text strong {
            color: #333;
            font-weight: 600;
        }

        .submit-btn {
            background: white;
            color: #FF6B2B;
            border: none;
            padding: 8px 16px;
            border-radius: 15px;
            font-weight: 600;
            font-size: 11px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
            width: auto;
            align-self: flex-start;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            margin-top: 4px;
        }

        .submit-btn:hover {
            background: #f8f8f8;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        /* Responsividade */
        @media (max-width: 1200px) {
            .contact-reproduction-container {
                width: 95%;
                max-width: 1120px;
                height: auto;
                min-height: 656px;
            }
            
            .contact-content-wrapper {
                flex-direction: row;
            }
            
            .contact-image-section {
                width: 50%;
                height: 656px;
                padding: 20px;
            }
            
            .contact-person-image {
                width: 100%;
                height: 85%;
                max-width: 480px;
                max-height: 580px;
            }
            
            .contact-form-section {
                width: 50%;
                height: 656px;
                padding: 40px 30px;
                margin: 0;
                background: transparent;
                border-radius: 0;
            }
        }

        @media (max-width: 991px) {
            .contact-reproduction-container {
                width: 90%;
                height: auto;
                min-height: 600px;
            }
            
            .contact-content-wrapper {
                flex-direction: column;
            }
            
            .contact-image-section {
                width: 100%;
                height: 300px;
                padding: 20px;
            }
            
            .contact-person-image {
                width: auto;
                height: 100%;
                max-height: 250px;
            }
            
            .contact-form-section {
                width: 100%;
                height: auto;
                padding: 40px 30px;
            }
            
            .contact-title {
                font-size: 28px;
            }
        }

        @media (max-width: 767px) {
            .contact-reproduction-container {
                border-radius: 20px;
                margin: 0 10px;
                width: calc(100% - 20px);
            }
            
            .contact-form-section {
                padding: 30px 25px;
            }
            
            .contact-title {
                font-size: 24px;
            }
            
            .contact-subtitle {
                font-size: 14px;
            }
            
            .submit-btn {
                width: 100%;
                align-self: stretch;
            }
            
            .contact-image-section {
                height: 200px;
            }
        }

        /* Pausa animação no hover */
        .partners-carousel-container:hover .partners-carousel {
            animation-play-state: paused;
        }

        /* Modal de Contato */
        .modal-content {
            border: none;
            border-radius: 15px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
        }

        .modal-header {
            padding: 30px 30px 0 30px;
        }

        .modal-body {
            padding: 20px 30px 30px 30px;
        }

        .modal-title {
            font-size: 1.5rem;
            color: #333;
        }

        .contact-info-modal {
            padding-right: 20px;
        }

        .form-control {
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            padding: 12px 15px;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            border-color: #ff6600;
            box-shadow: 0 0 0 0.2rem rgba(255, 102, 0, 0.15);
        }

        .form-label {
            font-weight: 500;
            margin-bottom: 8px;
        }

        .btn-success {
            background: linear-gradient(45deg, #28a745, #20c997);
            border: none;
            border-radius: 8px;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .btn-success:hover {
            background: linear-gradient(45deg, #20c997, #28a745);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(40, 167, 69, 0.3);
        }

        .contact-details i {
            font-size: 1.1rem;
        }

        /* Input Groups */
        .input-group-text {
            border-color: #e0e0e0;
            background-color: #f8f9fa;
            color: #6c757d;
        }

        .input-group .form-control {
            border-color: #e0e0e0;
        }

        .input-group:focus-within .input-group-text {
            border-color: #ff6600;
            background-color: rgba(255, 102, 0, 0.05);
        }

        .input-group:focus-within .form-control {
            border-color: #ff6600;
            box-shadow: none;
        }

        /* Textarea alinhamento */
        .input-group-text.align-items-start {
            padding-top: 12px;
        }

        /* Missão, Visão e Valores */
        .mission-text, .vision-text {
            font-size: 1.1rem;
            max-width: 800px;
            line-height: 1.8;
            color: #555;
        }

        .value-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
            border: 1px solid #f0f0f0;
        }

        .value-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }

        .value-icon-container {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: linear-gradient(45deg, #28a745, #20c997);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .value-icon {
            font-size: 2rem;
            color: white;
        }

        .value-card h5 {
            font-size: 1.3rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 15px;
        }

        .value-card p {
            color: #666;
            line-height: 1.7;
            font-size: 0.95rem;
        }

        /* Cards de Contato */
        .contact-info-card, .contact-form-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
            height: 100%;
        }

        .contact-info-card {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        @media (max-width: 768px) {
            .value-card {
                margin-bottom: 20px;
            }
            
            .contact-info-card {
                margin-bottom: 30px;
            }
        }



        /* Botão Flutuante WhatsApp - Reduzido */


        .whatsapp-float {
            position: fixed;
            width: auto;
            height: 50px;
            bottom: 30px;
            right: 30px;
            background-color: #25d366;
            color: #FFF;
            border-radius: 40px;
            text-align: center;
            font-size: 14px;
            box-shadow: 2px 2px 3px #999;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 16px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }

        .whatsapp-float:hover {
            background-color: #20ba5a;
            transform: translateY(-2px);
            box-shadow: 2px 4px 8px rgba(0,0,0,0.3);
            color: #FFF;
            text-decoration: none;
        }

        .whatsapp-float .whatsapp-icon {
            width: 32px;
            height: 32px;
            margin-right: 10px;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893A11.821 11.821 0 0020.893 3.488"/></svg>') no-repeat center center;
            background-size: contain;
        }

        .whatsapp-float .whatsapp-text {
            color: white;
            font-size: 13px;
            white-space: nowrap;
        }

        @media (max-width: 768px) {
            .audio-player {
                width: 240px;
                height: 55px;
                right: 20px;
            }
            
            .play-pause-btn, .volume-btn, .close-audio-btn {
                width: 32px;
                height: 32px;
            }
            
            .whatsapp-float {
                width: 50px;
                padding: 0;
                right: 20px;
                bottom: 20px;
            }
            
            .whatsapp-float .whatsapp-text {
                display: none;
            }
            
            .whatsapp-float .whatsapp-icon {
                margin-right: 0;
            }

            .footer {
                padding: 40px 0 20px;
                margin-top: 60px;
            }
        }