
html {
    zoom: 0.8; /* Chrome, Edge, Safari */
}

@media screen and (max-width: 768px) {


    @media screen and (max-width: 768px) {
    
    /* 1. Esconde as setas de navegação (se existirem) */
    .prev, .next, .carrossel-container > button {
        display: none !important;
    }

    /* 2. Transforma o container de slides em um trilho de rolagem manual */
    .slides {
        display: flex !important;
        overflow-x: auto !important; /* Ativa o scroll horizontal */
        scroll-snap-type: x mandatory !important; /* Faz o efeito de "imã" */
        scroll-behavior: smooth !important;
        -webkit-overflow-scrolling: touch !important; /* Scroll suave no iOS */
        transform: none !important; /* DESATIVA o controle do JavaScript que quebra o swipe */
        width: 100% !important;
    }

    /* 3. Ajusta os itens para travarem no centro da tela */
    .slide-item {
        flex: 0 0 100% !important; /* Cada slide ocupa 100% da largura */
        scroll-snap-align: center !important; /* Alinha o slide no centro ao soltar */
        height: 350px !important; /* Altura ajustada para celular */
    }

    /* 4. Esconde a barra de rolagem horizontal para ficar limpo */
    .slides::-webkit-scrollbar {
        display: none !important;
    }
    .slides {
        -ms-overflow-style: none !important;  
        scrollbar-width: none !important;  
    }

    /* 5. Desativa a animação da borda no mobile se ficar pesado */
    /* (Opcional: remova se quiser manter a borda girando no celular) */
    .slide-item::before, .slide-item::after {
        display: none !important; 
    }
    .slide-item img {
        width: 100% !important;
        height: 100% !important;
        border: 2px solid var(--primary) !important; /* Borda simples para economizar processamento */
    }
}

    /* Ajuste de Containers e Grids para uma única coluna */
    .sobre-content, 
    .cards-container, 
    .segmentos-grid, 
    .noticias-grid, 
    .contato-container,
    .processo-step {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 10px !important;
    }

    /* Ajuste do Header e Menu para Celular */
    nav {
        flex-direction: column !important;
        padding: 10px !important;
    }

    .nav-links {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 10px !important;
        margin-top: 10px !important;
    }

    .nav-links li a {
        font-size: 12px !important;
    }

    /* Ajuste de Imagens e Carrossel */
    .slide-item, 
    .slides img, 
    .sobre-visual {
        height: 300px !important; /* Altura menor para não ocupar a tela toda */
        width: 100% !important;
    }

    .logo img {
        width: 150px !important;
    }

    /* Ajuste de Textos para não estourarem a tela */
    h1 {
        font-size: 24px !important;
        line-height: 1.2 !important;
    }

    h2 {
        font-size: 20px !important;
    }

    p {
        font-size: 16px !important;
    }

    /* Ajuste de Botões e Formulários */
    .contato-form {
        padding: 20px !important;
        width: 100% !important;
    }

    .submit-button, .cta-button {
        width: 100% !important;
        padding: 15px !important;
        font-size: 16px !important;
    }

    /* Ajuste de Seções */
    section {
        padding: 40px 15px !important;
        width: 100% !important;
        overflow-x: hidden !important;
    }

    /* Esconder elementos que atrapalham no mobile */
    .step-number {
        display: none !important;
    }
}

/* Ajuste específico para telas muito pequenas (Android Antigos/Pequenos) */
@media screen and (max-width: 480px) {
    .hero h1 {
        font-size: 20px !important;
    }
    
    .legenda {
        display: none !important; /* Esconde legenda no carrossel para limpar visual */
    }
}



        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #3CB371;
            --secondary: #DCDCDC;
            --white: #ffffff;
            --dark: #1a1a1a;
            --text-dark: #2d2d2d;
            --text-light: #666;
        }


        .revelar {
            opacity: 0;
            transform: translateY(20px);
            /* Menor distância para facilitar o disparo */
            transition: opacity 0.8s ease-out, transform 0.6s ease-out;
            visibility: visible !important;
            /* Garante que não é um erro de visibilidade do navegador */
        }

        .revelar.visivel {
            opacity: 1 !important;
            transform: translateY(0) !important;
        }

        body {
            font-family: 'Work Sans', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .hero .hero-content span {
            font-family: 'Work Sans', sans-serif;
        }

        /* Header e Navegação */
        header {
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(60, 179, 113, 0.1);
            transition: all 0.3s ease;
        }

        nav {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1.2rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        header nav div img {
            width: 200px;
        }

        .logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 2px;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo::before {
            content: '';
            width: 4px;
            height: 65px;
            background: linear-gradient(180deg, var(--primary), #2a9d5f);
            border-radius: 1px;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 600;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Carrossel Section - Ajustado para seu Layout */
        /* Carrossel Section - Ajustado para seu Layout */
        .carrossel {
            width: 100%;
            display: flex;
            justify-content: center;
            padding: 1rem 0;
            /* Espaço para não colar no header */
            margin-top: 100px;
            /* Para descer do header fixo */
        }

        .carrossel-container {
            padding-top: 60px;
            /* empurra o conteúdo para baixo */
            position: relative;
            display: flex;
            align-items: center;
            width: 100%;
            max-width: 1400px;
            /* Mesma largura do seu nav */
        }

        .carrossel-div {
            overflow: hidden;
            width: 100%;
            border-radius: 15px;
            /* Arredondado como seus cards */
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .slides {
            display: flex;
            transition: transform 2s cubic-bezier(0.3, 1, 0.2, 1);
        }

        .slides img {

            object-fit: contain;
            width: 100%;
            flex-shrink: 1;
            object-fit: cover;
            height: 1100px;
            /* Altura fixa para manter o padrão */
        }

        /* Container de cada slide ajustado para o efeito de borda */
        /* 1. Container Principal */
        .slide-item {
            position: relative;
            width: 100%;
            height: 650px;
            flex-shrink: 0;
            overflow: hidden;
            border-radius: 15px;
            display: flex;
            justify-content: center;
            align-items: center;
            background: #1a1a1a;
            cursor: pointer;
        }

        /* 2. A Linha que corre (::before e ::after) */
        .slide-item::before,
        .slide-item::after {
            content: '';
            position: absolute;
            width: 150%;
            height: 150%;
            background-image: conic-gradient(transparent,
                    var(--primary),
                    transparent 30%);
            animation: rotateBorder 2s linear infinite;
            z-index: 1;
            /* Adicionamos isso para o navegador processar melhor a animação */
            will-change: transform;
        }

        /* 3. A Imagem/Vídeo com Transição de Zoom */
        .slide-item img,
        .slide-item video {
            width: calc(100% - 6px);
            height: calc(100% - 6px);
            object-fit: cover;
            border-radius: 13px;
            position: relative;
            z-index: 2;
            transition: transform 0.3s ease-out;
            /* Transição mais rápida para não parecer atrasado */
            pointer-events: none;
            /* Isso evita que o mouse "brigue" entre a imagem e o fundo */
        }

        /* 4. COMPORTAMENTO AO PASSAR O MOUSE (HOVER) */

        /* Faz a imagem aumentar */
        .slide-item:hover img,
        .slide-item:hover video {
            transform: scale(1.01);
            /* Aumenta 5% */
        }

        /* PAUSA a animação da borda no lugar atual */
        .slide-item:hover::before,
        .slide-item:hover::after {
            animation-play-state: paused !important;

        }

        /* 5. Animação da Borda */
        @keyframes rotateBorder {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        /* Ajuste na legenda para não sofrer o zoom da imagem mas se destacar */
        .legenda {
            z-index: 3;
            transition: all 0.4s ease;
        }

        .slide-item:hover .legenda {
            bottom: 30px;
            /* Sobe um pouquinho no hover */
            background-color: var(--primary);
            /* Fica 100% sólida no hover */
        }

        /* A animação que faz o gradiente girar */
        @keyframes rotateBorder {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        /* Estilização da Legenda no canto inferior direito */
        .legenda {
            position: absolute;
            bottom: 20px;
            right: 20px;
            background-color: rgba(60, 179, 113, 1);
            /* Sua cor --primary com transparência */
            color: var(--white);
            padding: 20px 30px;
            font-size: 1rem;
            border-radius: 2px;
            text-transform: uppercase;
            letter-spacing: 1px;
            pointer-events: none;
            /* Garante que o texto não atrapalhe cliques no carrossel */
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        /* Estilo dos Botões usando seu Root */
        .anterior,
        .proximo {
            cursor: pointer;
            background: var(--primary);
            /* Sua cor verde */
            color: white;
            border: none;
            padding: 20px 15px;
            position: absolute;
            z-index: 10;
            border-radius: 5px;
            transition: 0.3s;

        }

        .anterior:hover,
        .proximo:hover {
            opacity: 1;
            transform: scale(1.1);
        }

        .anterior {
            left: -20px;
        }

        /* Pouco para fora para dar estilo */
        .proximo {
            right: -20px;
        }


        /* Hero Section */
        .hero {
            margin-top: 50px;
            height: 60vh auto;
            background: linear-gradient(135deg, #f8f9fa 0%, var(--secondary) 100%);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(60, 179, 113, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 20s infinite ease-in-out;
        }

        @keyframes float {

            0%,
            100% {
                transform: translate(0, 0) scale(1);
            }

            50% {
                transform: translate(-50px, -50px) scale(1.1);
            }
        }

        .hero-content {
    /* Reduzimos para 1200px para o conteúdo ficar mais centralizado (efeito 80%) */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    z-index: 1;
    position: relative;
}

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    /* Reduzimos de 4.5rem para 3.5rem para não atropelar a seção de baixo */
    font-size: 3.5rem; 
    font-weight: 900;
    color: var(--dark);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.hero h1 span {
    color: var(--primary);
    display: block;
    /* Reduzimos de 3rem para 2.2rem para manter a proporção */
    font-size: 2.2rem; 
    margin-top: 0.5rem;
}

.hero p {
    /* Reduzimos de 1.3rem para 1.1rem */
    font-size: 1.1rem; 
    color: var(--text-light);
    max-width: 600px;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

        .cta-button {
            display: inline-block;
            padding: 1.2rem 3rem;
            background: var(--primary);
            color: var(--white);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            border-radius: 8px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(60, 179, 113, 0.3);
        }

        .cta-button:hover {
            background: #2a9d5f;
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(60, 179, 113, 0.4);
        }

        /* Seções Gerais */
        section {
            padding: 6rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            font-family: 'Orbitron', sans-serif;
            font-size: 3rem;
            font-weight: 900;
            color: var(--dark);
            text-transform: uppercase;
            letter-spacing: -1px;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--primary);
            border-radius: 2px;
        }

        .section-header p {
            font-size: 1.2rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 1.5rem auto 0;
            font-weight: 300;
        }

        /* Objetivo da Empresa */
        .sobre {
            background: var(--white);
        }

        .sobre-content {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 4rem;
            align-items: center;
        }

        .sobre-text h3 {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .sobre-text p {
            font-size: 1.5rem;
            color: var(--text-dark);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .sobre-visual {
            position: relative;
            height: 500px;
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: transparent;
            /* ou transparente */
        }

        .sobre-visual img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: relative;
            object-fit: contain;
            /* mostra a imagem inteira */
            border-radius: 8px;
            z-index: 0;
        }

        /* Gradiente sobre a imagem */
        .sobre-visual::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, var(transparent) 0%, transparent, 100%);
            opacity: 0.6;
            /* controla a intensidade do gradiente */
            z-index: 1;
        }

        /* Efeito animado */
        .sobre-visual::after {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            background: repeating-linear-gradient(45deg,
                    transparent,
                    transparent px,
                    rgba(255, 255, 255, 0.05) 20px,
                    rgba(255, 255, 255, 0.05) 40px);
            animation: slide 30s linear infinite;
            z-index: 2;
        }


.material-text h3 {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

.material-content {
    display: grid;
    grid-template-columns: 1.3fr 1.3fr; /* Colunas iguais */
    gap: 2rem;
    align-items: stretch; /* Garante que as duas colunas tenham a mesma altura */
  
    margin-top: 5.5rem;
}

.material-visual {
    display: flex;
    justify-content: center; /* Centraliza horizontalmente */
    align-items: center;     /* Centraliza verticalmente */
    width: 100%;
    height: 100%;            /* Ocupa a altura total do grid */
}

.material-visual img {
    /* Use 'cover' se quiser que a imagem preencha todo o espaço da altura do texto */
    /* Use 'contain' se quiser ver a imagem inteira sem cortes (mas pode sobrar espaço) */
    width: 100%;
    height: 100%; 
    object-fit: cover; 
    
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 1px solid #eee;
}

.material-text {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Alinha o texto no meio da altura da imagem */
    padding: 2rem;
}

/* ... (Mantenha o seu código de Desktop como está) ... */

@media (max-width: 768px) {
    .material-content {
        grid-template-columns: 1fr; /* Empilha imagem e texto */
        gap: 1.5rem;
        padding: 0 20px; /* Margem de segurança nas laterais */
    }

    .material-visual {
        order: -1; /* Mantém a imagem no topo */
        width: 100%;
        height: auto; /* Deixa a altura livre para a imagem respirar */
    }

    .material-visual img {
        width: 100%;
        max-width: 100%; /* Ocupa a largura total disponível */
        height: auto;
        object-fit: contain; /* Garante que nada da imagem seja cortado no celular */
        border-radius: 12px;
    }

    .material-text {
        text-align: left; /* ALINHAMENTO À ESQUERDA SOLICITADO */
        padding: 0; /* Remove paddings extras que podem desalinhá-lo do container */
    }

    .material-text h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        text-align: left; /* Garante que o título também acompanhe a esquerda */
    }

    .material-text p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1rem;
        /* Remove qualquer centralização residual */
        display: block; 
    }
}


        /* Conteúdo por cima */
        .conteudo {
            position: relative;
            z-index: 3;
            color: #fff;
            text-align: center;
        }

        @keyframes slide {
            0% {
                transform: translate(0, 0);
            }

            100% {
                transform: translate(50px, 50px);
            }
        }

        .sobre-icon {
            font-size: 8rem;
            color: rgba(255, 255, 255, 0.9);
            z-index: 1;
        }

        /* Missão e Valores */
        .missao-valores {
            background: linear-gradient(135deg, #f8f9fa 0%, var(--secondary) 100%);
        }

        .cards-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .card-icon img {
            width: 5rem;
        }

        .card {
            background: var(--white);
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--primary);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(60, 179, 113, 0.15);
        }

        .card:hover::before {
            transform: scaleX(1);
        }

        .card-icon {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }

        .card h3 {
            font-size: 1.5rem;
            color: var(--dark);
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .card p {
            color: var(--text-light);
            line-height: 1.7;
        }

        .card ul {
            list-style: none;
            margin-top: 1rem;
        }

        .card ul li {
            padding: 0.5rem 0;
            color: var(--text-dark);
            position: relative;
            padding-left: 1.5rem;
        }

        .card ul li::before {
            content: '▸';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: bold;
        }

        /* Clientes */
        .segmentos {
            background: var(--white);
        }

        .segmentos-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .segmentos-card {
            background: linear-gradient(135deg, #f8f9fa 0%, var(--secondary) 100%);
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .segmentos-card:hover {
            border-color: var(--primary);
            transform: scale(1.05);
        }

        .segmentos-icon {
            font-size: 3.5rem;
            margin-bottom: 1rem;
        }

        .segmentos-icon img {
            width: 6rem;
        }

        .segmentos-card h3 {
            font-size: 1.3rem;
            color: var(--dark);
            margin-bottom: 0.8rem;
            font-weight: 700;
        }

        .segmentos-card p {
            color: var(--text-light);
            font-size: 0.95rem;
        }


        .noticias-card:hover {
            border-color: var(--primary);
            transform: scale(1.05);
        }

        .noticias {
            background: var(--white);
        }

        .noticias-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(300px, 1fr));
            gap: 2em;
            margin-top: 3rem;
        }

        .noticias-card {
            background: linear-gradient(135deg, #f8f9fa 0%, var(--secondary) 100%);
            padding: 4rem;
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        /* Funcionamento */
        .funcionamento {
            background: linear-gradient(135deg, var(--dark) 0%, #2d2d2d 100%);
            color: var(--white);
        }

        .funcionamento .section-header h2,
        .funcionamento .section-header p {
            color: var(--white);
        }

        .processo-timeline {
            position: relative;
            margin-top: 4rem;
        }

        .processo-timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--primary);
            transform: translateX(-50%);
        }

        .processo-step {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-bottom: 4rem;
            position: relative;
        }

        .processo-step:nth-child(even) .step-content {
            order: 2;
        }

        .processo-step:nth-child(even) .step-number {
            order: 1;
        }

        .step-content {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(60, 179, 113, 0.2);
        }

        .step-content h3 {
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .step-content p {
            line-height: 1.8;
            color: var(--secondary);
        }

        .step-number {
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Orbitron', sans-serif;
            font-size: 4rem;
            font-weight: 900;
            color: var(--primary);
            opacity: 0.3;
        }

        /* Contato */
        .contato {
            background: var(--white);
        }

        .contato-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-top: 3rem;
        }

        .contato-info {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .info-item {
            display: flex;
            /* Altera de flex-start para center para alinhar no meio */
            align-items: center;
            gap: 1.5rem;
            padding: 1.5rem;
            background: linear-gradient(135deg, #f8f9fa 0%, var(--secondary) 100%);
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .info-item:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 30px rgba(60, 179, 113, 0.15);
        }

        .info-item {
            display: flex;
            /* Ativa o modo flexível */
            align-items: center;
            /* Alinha verticalmente o ícone e o texto no centro */
            gap: 1.5rem;
            /* Cria um espaço entre o ícone e o texto */
            margin-bottom: 2rem;
        }

        .info-icon {
            display: flex;
            justify-content: center;
            align-items: center;
            min-width: 50px;
            /* Garante que o ícone tenha um espaço fixo */
        }

        .info-icon img {
            width: 3rem;
            height: auto;
            display: block;
        }

        .info-text h3 {
            font-size: 1.2rem;
            color: var(--dark);
            margin-bottom: 0.5rem;
            font-weight: 700;
        }

        .info-text p {
            color: var(--text-light);
            line-height: 1.6;
        }

        .info-text a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
        }

        .info-text a:hover {
            text-decoration: underline;
        }

        .contato-form {
            background: linear-gradient(135deg, var(--primary) 0%, #2a9d5f 100%);
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(60, 179, 113, 0.3);
        }

        .contato-form h3 {
            color: var(--white);
            font-size: 1.8rem;
            margin-bottom: 2rem;
            font-weight: 700;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            color: var(--white);
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: none;
            border-radius: 8px;
            font-family: 'Work Sans', sans-serif;
            font-size: 1rem;
            background: rgba(255, 255, 255, 0.95);
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            background: var(--white);
            box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .submit-button {
            width: 100%;
            padding: 1.2rem;
            background: var(--white);
            color: var(--primary);
            border: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-button:hover {
            background: var(--dark);
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: var(--secondary);
            padding: 3rem 2rem 1.5rem;
            text-align: center;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer-logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 2rem;
            font-weight: 900;
            margin-bottom: 1rem;
        }

        .footer-logo img {
            width: 20%;
            border: none;
            outline: none;
            /* Remove o contorno de seleção */
            background: transparent;
            /* Garante que não haja cor de fundo */
        }

        .footer-text {
            color: var(--secondary);
            margin-bottom: 1rem;
            font-size: 0.95rem;
        }

        .social-links {
            display: flex;
            justify-content: center; /* centraliza horizontalmente */
            gap: 2.5rem; /* aumenta espaço entre os ícones (2.5rem = 40px) */
            align-items: center;
            padding: 3rem; /* espaço interno em todas as direções */
            margin-bottom: 0; /* garante que não tem margem extra */
        }

        .social-links a img {
        width: 4rem; /* 64px cada ícone */
        display: block;
        transition: transform 0.3s ease; /* efeito suave ao passar o mouse */
    }

        .social-links a {
            color: var(--secondary);
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }


        .social-links a:hover {
            color: var(--primary);
            transform: translateY(-3px);
        }

        .copyright {
            padding-top: 2rem;
            border-top: 1px solid rgba(220, 220, 220, 0.1);
            font-size: 0.9rem;
            opacity: 0.7;
        }

        /* Responsive */
        @media (max-width: 968px) {
            .nav-links {
                display: none;
            }

            .hero h1 {
                font-size: 3rem;
            }

            .hero h1 span {
                font-size: 2rem;
            }

            .objetivo-content,
            .contato-container,
            .processo-step {
                grid-template-columns: 1fr;
            }

            .cards-container {
                grid-template-columns: 1fr;
            }

            .processo-step:nth-child(even) .step-content,
            .processo-step:nth-child(even) .step-number {
                order: initial;
            }

            .step-number {
                display: none;
            }
        }

        /* Animações de entrada */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            animation: fadeInUp 0.8s ease forwards;
        }


        /* O fundo do Lightbox */
        .lightbox {
            display: none;
            /* Escondido por padrão */
            position: fixed;
            z-index: 9999;
            /* Fica acima de TUDO */
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            /* Fundo preto com 90% de opacidade */
            justify-content: center;
            align-items: center;
            cursor: zoom-out;
        }

        /* A imagem dentro do Lightbox */
        .lightbox img {
            max-width: 90%;
            max-height: 80%;
            border: 3px solid var(--primary);
            /* Borda verde para combinar com seu site */
            border-radius: 10px;
            box-shadow: 0 0 30px rgba(60, 179, 113, 0.5);
            transform: scale(0.9);
            transition: transform 0.3s ease;
        }

        /* Quando o lightbox abre, a imagem dá um leve zoom */
        .lightbox.ativo img {
            transform: scale(1);
        }

        /* Botão de fechar (o X) */
        .fechar {
            position: absolute;
            top: 20px;
            right: 30px;
            color: white;
            font-size: 50px;
            font-weight: bold;
            cursor: pointer;
        }