        /* Reset e Variáveis */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --azul-escuro: #003B4A;
            --laranja: #FF6B35;
            --cinza-claro: #F2F2F2;
            --branco: #FFFFFF;
            --cinza-texto: #666666;
        }

        html, body {
            width: 100%;
            overflow-x: hidden;
        }

        body {
            font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            line-height: 1.6;
            color: #003B4A;
            background-color: #FFFFFF;
        }

        /* Container para conteúdo com largura máxima */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Header e Navegação */
        header {
            background: #efede9;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        nav {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
 
 /* Logo */
        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
            text-decoration: none;
            color: #003B4A;
        }

        .logo-img {
            height: 45px;
            width: auto;
            object-fit: contain;
        }

        .logo h1 {
            font-size: 1.5rem;
            font-weight: 600;
            letter-spacing: 2px;
        }

        .logo span {
            display: block;
            font-size: 0.75rem;
            font-weight: 300;
            letter-spacing: 1px;
            color: #666666;
        }

        .logo-icon {
            width: 40px;
            height: 45px;
            position: relative;
        }

        .water-drop {
            width: 100%;
            height: 100%;
            fill: #003B4A;
            position: relative;
        }

        .heat-symbol {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 15px;
            height: 15px;
            background: #FF6B35;
            border-radius: 50%;
        }

        .logo h1 {
            font-size: 1.5rem;
            font-weight: 600;
            letter-spacing: 2px;
        }

        .logo span {
            display: block;
            font-size: 0.75rem;
            font-weight: 300;
            letter-spacing: 1px;
            color: #666666;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-menu a {
            text-decoration: none;
            color: #003B4A;
            font-weight: 500;
            transition: color 0.3s ease;
            font-size: 0.95rem;
        }

        .nav-menu a:hover {
            color: #FF6B35;
        }

        .cta-button {
            background: #FF6B35;
            color: #FFFFFF;
            padding: 0.75rem 2rem;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .cta-button:hover {
            background: #E55A2B;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
        }

        /* Hero Section */
/* Hero Section com Vídeo */
.hero {
    position: relative;
    width: 100%;
    min-height: 600px;
    height: calc(100vh - 80px);
    margin-top: 80px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #003B4A; /* Cor de fallback */
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none; /* Adicione isso */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 59, 74, 0.8);
    z-index: 1;
    pointer-events: none; /* Adicione isso */
}

.hero-content {
    position: relative;
    max-width: 800px;
    padding: 0 2rem;
    z-index: 2;
    text-align: center;
}
        .hero h2 {
            color: #FFFFFF;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .hero p {
            color: #F2F2F2;
            font-size: 1.2rem;
            margin-bottom: 2rem;
            font-weight: 300;
        }

        /* Seções */
        section {
            width: 100%;
            padding: 4rem 0;
        }

        .section-title {
            text-align: center;
            font-size: 2rem;
            color: #003B4A;
            margin-bottom: 3rem;
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: #FF6B35;
            margin: 1rem auto 0;
        }

        /* Grid de Serviços */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .service-card {
            background: #FFFFFF;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            text-align: center;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

       .service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--laranja), #FF8A5B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 2rem;
    color: var(--branco);
}

.service-card:hover .service-icon {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

        .service-card h3 {
            color: #003B4A;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .service-card p {
            color: #666666;
            line-height: 1.8;
        }

        /* Sobre Nós */
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .about-text h3 {
            color: #003B4A;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .about-text p {
            color: #666666;
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 2rem;
        }

        .stat-box {
            text-align: center;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #FF6B35;
        }

        .stat-label {
            color: #666666;
            font-size: 0.9rem;
        }

        /* Clientes */
        /* Clientes Carousel */
.clients-section {
    background: var(--cinza-claro);
    width: 100%;
    padding: 4rem 0;
    overflow: hidden;
}

/* Clientes Carousel */
.clients-section {
    background: var(--cinza-claro);
    width: 100%;
    padding: 4rem 0;
    overflow: hidden;
}

.clients-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 3rem;
}

.clients-track {
    display: flex;
    align-items: center;
    gap: 4rem;
    animation: scroll 60s linear infinite;
    width: max-content;
    flex-wrap: nowrap; /* Força ficar em linha */
}

.client-logo {
    height: 60px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    opacity: 0.8; /* Apenas um pouco transparente */
    transition: all 0.3s ease;
    flex-shrink: 0;
    display: inline-block;
}

.client-logo:hover {
    opacity: 1; /* Fica totalmente opaco no hover */
    transform: scale(1.1);
}

.client-logo-placeholder {
    width: 150px;
    height: 60px;
    background: var(--branco);
    border-radius: 8px;
    display: inline-flex; /* Mude para inline-flex */
    align-items: center;
    justify-content: center;
    color: var(--cinza-texto);
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* Animação de scroll */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pausa ao passar o mouse */
.clients-carousel:hover .clients-track {
    animation-play-state: paused;
}
/* Portfólio Section */
.portfolio-section {
    padding: 4rem 0;
    background: var(--branco);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.portfolio-item {
    background: var(--branco);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.portfolio-images {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: var(--cinza-claro);
}

.portfolio-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.portfolio-img.active {
    opacity: 1;
}

.portfolio-info {
    padding: 1.5rem;
}

.portfolio-info h3 {
    color: var(--azul-escuro);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.portfolio-info p {
    color: var(--cinza-texto);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.portfolio-dots {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cinza-claro);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--laranja);
    width: 20px;
    border-radius: 4px;
}

/* Responsivo */
@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}
        /* Contato */
        .contact-section {
            background: #003B4A;
            color: #FFFFFF;
            width: 100%;
        }

        .contact-section .section-title {
            color: #FFFFFF;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-top: 3rem;
        }

        .contact-info h3 {
            color: #FF6B35;
            margin-bottom: 1rem;
        }

        .contact-info p {
            margin-bottom: 0.5rem;
            opacity: 0.9;
        }

        .contact-info a {
            color: #FFFFFF;
            text-decoration: none;
        }

        .contact-info a:hover {
            color: #FF6B35;
        }

        /* Footer */
        footer {
            background: #001F2A;
            color: #FFFFFF;
            text-align: center;
            padding: 2rem;
            width: 100%;
        }

        /* Mobile Menu */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: #003B4A;
            cursor: pointer;
        }

        /* Responsivo */
        @media (max-width: 768px) {
            .container {
                padding: 0 1rem;
            }

            nav {
                padding: 1rem;
            }

            .mobile-menu-toggle {
                display: block;
            }

            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: #FFFFFF;
                flex-direction: column;
                padding: 2rem;
                box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            }

            .nav-menu.active {
                display: flex;
            }

            .hero {
                padding: 6rem 0 3rem;
            }

            .hero h2 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .about-content {
                grid-template-columns: 1fr;
            }

            .stats {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            section {
                padding: 3rem 0;
            }
        }

        /* Animações */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            animation: fadeInUp 0.8s ease-out;
        }
