        /* NOVO ESTILO PARA A IMAGEM DO LOGO */
        /* 1. Previne que o site inteiro fique maior que a tela */
html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* 2. Corta especificamente as linhas laranjas que estão vazando na seção de marcas */

        
        .logo__image {
            height: 50px;
            /* Altura ideal para o logo na nav bar */
            width: auto;
            display: block;
        }

        /* Ajuste na Media Query para responsividade do logo */
        @media (max-width: 1024px) {
            /* ... outros estilos de media query ... */

            .logo__image {
                height: 30px;
            }
        }

        /* Variáveis de Cores */
        :root {
            --color-primary: #FC6300;;
            /* Laranja da CTA e logo */
            --color-text-dark: #333;  
            --color-text-light: #fff;
            --color-background-light: #f4f4f4;
            --color-cta-dark: #333;
            /* Cor do botão primário */
        }

        /* Estilos Globais e Reset Básico */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            /* MUDANÇA: Aplicação da nova fonte */
            font-family: 'Rubik', sans-serif;
        }

        /* Opcional: Se quiser que o corpo do texto seja mais leve, adicione: */
        body {
            font-family: 'Rubik', sans-serif;
            font-weight: 400;
            /* Peso padrão da fonte */
        }

        body {
            background-color: #fff;
        }

        a {
            text-decoration: none;
            color: var(--color-text-dark);
        }

        /* -------------------- HEADER -------------------- */
        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .header__logo {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .header__logo h1 {
            font-size: 24px;
            color: var(--color-primary);
            line-height: 1;
            font-weight: bold;
        }

        .header__logo p {
            font-size: 10px;
            margin-top: 2px;
            color: var(--color-text-dark);
            text-transform: uppercase;
        }

        .header__menu {
            list-style: none;
            display: flex;
            gap: 30px;
            font-size: 14px;
            font-weight: 600;
        }

        .header__menu-item a {
            text-transform: uppercase;
            transition: color 0.3s;
        }

        .header__menu-item a:hover {
            color: var(--color-primary);
        }

        .header__cta-button {
            /* Degradê e cor de fundo */
            background-image: linear-gradient(to left, #693500, var(--color-primary));
            background-color: var(--color-primary);

            color: var(--color-text-light);
            padding: 10px 20px;

            /* Forma de pílula (25px) */
            border-radius: 25px;

            font-weight: bold;
            text-transform: uppercase;
            font-size: 12px;

            /* Alinhamento do ícone e texto */
            display: flex;
            align-items: center;
            gap: 8px;

            /* Contorno Interno (box-shadow) ajustado para ser mais fino e próximo */
            /* 1. Contorno Branco (1.5px de espessura, bem próximo à borda) */
            box-shadow: inset 0 0 0 1.5px rgb(255, 255, 255);

            transition: background-color 0.5s;
        }

        .header__cta-button:hover {
            /* Efeito hover: remove o degradê e usa uma cor sólida escura */
            background-image: none;
            background-color: #FC6300;;
            /* Remove a sombra para simplificar o hover */
            box-shadow: none;
        }


        /* -------------------- ESTILO DO ÍCONE -------------------- */
        /* (A classe 'fab fa-whatsapp' requer uma biblioteca de ícones como Font Awesome no <head>) */
        .header__cta-button i {
            font-size: 16px;
        }

        /* -------------------- HERO SECTION -------------------- */
        .hero {
            display: flex;
            max-width: 1400px;
            margin: 20px auto 0;
            border-radius: 25px;
            overflow: hidden;
        }

        .hero__content {
            flex: 1;
            padding: 80px 50px;
            background-color: var(--color-background-light);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .hero__title {
            font-size: 44px;
            font-weight: 800;
            color: var(--color-text-dark);
            margin-bottom: 20px;
            line-height: 1.1;
        }

        .hero__subtitle {
            font-size: 18px;
            line-height: 1.6;
            color: #666;
            margin-bottom: 30px;
        }

        .hero__cta-primary {
            background-color: var(--color-cta-dark);
            color: var(--color-text-light);
            padding: 15px 30px;
            border: none;
            border-radius: 30px;
            font-weight: 600;
            font-size: 14px;
            text-transform: uppercase;
            cursor: pointer;
            width: fit-content;
            transition: background-color 0.3s;
        }

        .hero__cta-primary:hover {
            background-color: #444;
        }

        .hero__rating {
            display: flex;
            align-items: center;
            margin-top: 20px;
            gap: 5px;
            font-size: 12px;
            color: #666;
        }

        .hero__stars {
            color: var(--color-primary);
            font-size: 16px;
            letter-spacing: 1px;
        }

        .hero__rating-text {
            font-weight: 600;
            text-transform: uppercase;
        }

 .hero__image {
    flex: 1;
    /* O caminho ajustado para subir um nível (..) e encontrar a imagem na raiz do projeto */
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('../15.png') no-repeat center center/cover;
    min-height: 500px;
}

        /* -------------------- Media Queries -------------------- */

        @media (max-width: 1024px) {
            .header {
                flex-wrap: wrap;
                justify-content: center;
                gap: 15px;
            }

            .header__nav {
                display: none;
            }

            .header__logo {
                flex-grow: 1;
            }

            .header__cta-button {
                flex-grow: 1;
                text-align: center;
            }

            .hero {
                flex-direction: column;
                border: none;
                margin-top: 0;
            }

            .hero__content {
                padding: 40px 5%;
                text-align: center;
            }

            .hero__title {
                font-size: 32px;
            }

            .hero__cta-primary {
                margin: 0 auto;
            }

            .hero__rating {
                justify-content: center;
            }

            .hero__image {
                min-height: 300px;
            }
        }

        /* -------------------- LAYOUT GERAL E UTILS -------------------- */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section {
            padding: 60px 0;
            margin-top: 20px;
        }

        .section--produtos {
            background-color: var(--color-background-light);
        }

        /* NOVO: Estilo para o RÓTULO "SERVIÇOS DISPONÍVEIS" */
        .produtos__label {
            display: inline-block;
            font-size: 10px;
            font-weight: bold;
            color: var(--color-primary);
            text-transform: uppercase;
            border: 1px solid var(--color-primary);
            padding: 3px 8px;
            border-radius: 3px;
            margin-bottom: 8px;
        }

        /* NOVO: Estilo para o layout lado a lado */
        .section__header-flex {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            /* Alinha a descrição com a parte de baixo do título */
            margin-bottom: 50px;
            padding-bottom: 20px;
            border-bottom: 1px solid #ddd;
        }

        .section__header-flex>div {
            /* Define a largura do bloco do título */
            flex-basis: 40%;
        }

        .section__header-flex>p {
            /* Define a largura do bloco da descrição */
            flex-basis: 50%;
        }

        .section__title {
            font-size: 36px;
            font-weight: 800;
            color: var(--color-text-dark);
            line-height: 1.1;
            margin-bottom: 0;
        }

        .section__description {
            font-size: 16px;
            line-height: 1.6;
        }

        .section__cta-center {
            text-align: center;
            margin-top: 60px;
        }

        /* -------------------- LAYOUT GERAL E UTILS -------------------- */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section {
            padding: 60px 0;
            margin-top: 20px;
        }

        .section--produtos {
            /* Fundo BRANCO, conforme o Middle.png */
            background-color: var(--color-text-light);
        }

        /* NOVA CLASSE: Para colorir apenas a palavra 'máquinas' */
        .text-primary {
            color: var(--color-primary);
        }

        /* Estilo para o RÓTULO "SERVIÇOS DISPONÍVEIS" */
        .produtos__label {
            display: inline-block;
            font-size: 10px;
            font-weight: bold;
            color: var(--color-primary);
            text-transform: uppercase;
            border: 1px solid var(--color-primary);
            padding: 3px 8px;
            border-radius: 3px;
            margin-bottom: 8px;
        }

        /* Estilo para o layout lado a lado (Título e Descrição) */
        .section__header-flex {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 50px;
            padding-bottom: 20px;
            border-bottom: 1px solid #ddd;
        }

        .section__header-flex>div {
            flex-basis: 40%;
        }

        .section__header-flex>p {
            flex-basis: 50%;
        }

        .section__title {
            font-size: 36px;
            font-weight: 800;
            color: var(--color-text-dark);
            /* Cor principal do título (Preto) */
            line-height: 1.1;
            margin-bottom: 0;
        }

        .section__description {
            font-size: 16px;
            color: #000000;
            line-height: 1.6;
        }

        .section__cta-center {
            text-align: center;
            margin-top: 60px;
        }

        /* -------------------- PRODUTOS GRID (NOVO E CORRIGIDO) -------------------- */
        .produtos__grid {
            display: flex;
            gap: 30px;
            justify-content: flex-start;
            /* Alinha o início à esquerda */
            flex-wrap: nowrap;
            /* ESSENCIAL: Impede a quebra de linha */
            overflow-x: auto;
            /* PERMITE A ROLAGEM HORIZONTAL */
            scroll-behavior: smooth;
            /* Animação suave na rolagem via JS */
            padding-bottom: 15px;
            padding-left: 15px;
            padding-right: 15px;
            /* Opcional: Esconde a barra de rolagem para um visual mais limpo */
            -ms-overflow-style: none;
            /* IE and Edge */
            scrollbar-width: none;
            /* Firefox */
        }

        .produtos__grid::-webkit-scrollbar {
            display: none;
            /* Chrome, Safari, Edge */
        }

        /* 1. Aumente a altura do container da imagem (Isso empurra tudo para baixo) */
.produto-card__image-wrapper {
    /* Aumente este valor. Antes era 125px. Sugestão: 200px ou 220px */
    height: 220px; 
    
    overflow: hidden;
    border-radius: 6px;
    margin-bottom: 10px; /* Um pouco mais de espaço abaixo da imagem */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

/* 2. (Opcional) Dê mais espaço para o texto */
.produto-card__text {
    padding: 0 5px;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    text-align: left;
    
    /* Aumente aqui para garantir que cards com pouco texto fiquem alinhados */
    min-height: 90px; 
}

/* 3. O Card em si (Ajuste Final) */
.produto-card {
    background-color: #fff0de;
    border-radius: 12px;
    box-shadow: 0 0 0 1px #838383, 0 4px 10px rgba(0, 0, 0, 0.04);
    
    width: 400px; /* Largura */
    
    /* Se quiser forçar uma altura mínima total para o card: */
    min-height: 450px; /* Garante que o card seja bem alto */
    
    text-align: left;
    position: relative;
    border: none;
    padding: 15px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 15px;
    
    /* Garante que o botão fique sempre no final se o card crescer muito */
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
}

        /* Barra Laranja Superior (Pseudo-elemento do Card) */
        .produto-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 8%;
            width: 45%;
            height: 12px;
            /* Altura da barra */

            /* Move a barra para cima metade de sua altura (4px) para centralização vertical */
            transform: translateY(-6.5px);

            background-image: linear-gradient(to top, #FC6300, #FC6300);

            /* NOVO: Aplica um alto border-radius para criar o formato de pílula nas laterais e no topo */
            border-radius: 9999px;

            /* REMOVIDAS: as regras border-bottom-left-radius e border-bottom-right-radius */

            z-index: 2;
        }

        .produto-card:hover {
            /* Efeito de contorno laranja sutil no hover */
            box-shadow: 0 0 0 1px var(--color-primary), 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        /* Container da Imagem */
        .produto-card__image-wrapper {
    /* Altura grande para a imagem */
    height: 225px; 
    width: 100%; /* Ocupa toda a largura do card */
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1; 
    /* Removemos o border-radius interno, pois o card já tem overflow:hidden */
    border-radius: 25px; 
}

        /* Título: Garante alinhamento e peso visual */
        .produto-card__title {
            font-size: 19px;
            /* Levemente menor para caber melhor */
            font-weight: 700;
            color: var(--color-text-dark);
            text-align: left;
            padding: 0;
            margin: 0 0 4px;
            /* Margem inferior reduzida */
        }

        .produto-card__text {
            padding: 0;
            font-size: 13px;
            /* Levemente menor para mais texto em menos espaço */
            color: #666;
            line-height: 1.3;
            /* Espaçamento entre linhas mais apertado */
            text-align: left;
            /* CHAVE: Reduz a altura mínima para o texto, se necessário.
       Ajuste este valor conforme a quantidade de texto que você tem. */
            min-height: 50px;
            /* Era 60px, agora 50px */
        }

        /* Link (Botão de Orçamento): Garante alinhamento esquerdo e margem inferior reduzida */
        .produto-card__link {
            display: inline-block;
            color: var(--color-primary);
            font-weight: 600;

            /* CHAVE: Reduz o padding vertical */
            padding: 8px 0 15px;
            /* Reduzido de 10px 0 20px */

            margin: 8px 0 0 0;
            /* Margem superior reduzida */
            text-transform: uppercase;
            font-size: 12px;
            transition: color 0.3s;
            position: relative;
            border: none;
        }

        .produto-card__image {
            width: auto;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }

        .produto-card:hover .produto-card__image {
            transform: scale(1.05);
        }

        .produto-card__title {
            font-size: 22px;
            font-weight: 700;
            color: var(--color-text-dark);
            text-align: left;
            padding: 0 5px;
            margin: 0 0 8px;
        }

        .produto-card__text {
            padding: 0 5px;
            font-size: 14px;
            color: #666;
            line-height: 1.5;
            text-align: left;
            min-height: 70px;
        }

        /* NOVO ESTILO DO LINK (LINHA LARANJA E SETA) */
        .produto-card__link {
            display: inline-block;
            color: var(--color-primary);
            font-weight: 600;
            padding: 15px 0 25px;
            margin: 15px 0 0 5px;
            /* Alinhamento à esquerda */
            text-transform: uppercase;
            font-size: 12px;
            transition: color 0.3s;
            position: relative;
            border: none;
        }

        /* Linha Laranja com pseudo-elemento (::before) - Alinhada à esquerda */
        .produto-card__link::before {
            content: '';
            display: block;
            position: absolute;
            bottom: 10px;
            left: 0;
            /* Alinhado à esquerda */
            width: 100px;
            height: 2px;
            background-color: var(--color-primary);
            border-radius: 2px;
            transform: none;
            /* Remove a centralização */
        }

        .produto-card__link:hover {
            color: #FC6300;
        }

        .produto-card__link:hover::after {
            transform: translateX(5px);
        }

        /* --- Media Query para Responsividade --- */
        @media (max-width: 900px) {
            .section__header-flex {
                flex-direction: column;
                align-items: flex-start;
                margin-bottom: 30px;
                border-bottom: none;
            }

            .section__header-flex>div,
            .section__header-flex>p {
                flex-basis: 100%;
                width: 100%;
            }

            .section__title {
                font-size: 32px;
            }

            .section__description {
                margin-top: 15px;
            }
        }

        @media (max-width: 600px) {
            .section {
                padding: 40px 0;
            }

            .produtos__grid {
                gap: 20px;
            }

            .produto-card {
                width: 100%;
                max-width: 350px;
            }
        }

        .botao-custom {
            position: relative;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 32px;
            background: linear-gradient(90deg, #FC6300, #B84A00);
            color: #ffffff;
            font-size: 14px;
            font-weight: 600;
            border-radius: 100px;
            text-decoration: none;
        }

        /* 1ª borda interna */
        .botao-custom::before {
            content: "";
            position: absolute;
            inset: 3px;
            border: 2px solid rgba(255, 255, 255, 0.5);
            border-radius: 100px;
        }

        .botao-custom img {
            width: 18px;
            height: 18px;
            filter: brightness(0) invert(1);
            /* deixa o ícone branco */
        }

        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);

            /* Mantém o estilo com o degradê do botão da imagem */
            background: linear-gradient(to bottom, #FC6300, #FC6300);
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            cursor: pointer;
            z-index: 10;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            transition: all 0.2s ease-in-out;
            /* Adiciona uma transição para o opacity, usado para desabilitar o botão */
            opacity: 1;
        }

        .carousel-btn:hover {
            transform: translateY(-50%) scale(1.05);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
        }

        .carousel-btn:disabled {
            cursor: not-allowed;
            opacity: 0.5 !important;
            /* Desabilita o visual quando não é possível rolar */
        }

        /* Posição do botão da direita */
        .right-btn {
            right: -25px;
        }

        /* NOVO: Posição do botão da esquerda */
        .left-btn {
            left: -25px;
            /* Posição espelhada do botão da direita */
        }

        .carousel-wrapper {
            position: relative;
            max-width: 100%;
            /* ou a largura total da sua seção */
            margin-top: 20px;
            /* Adicione overflow: hidden se quiser que as setas NÃO ultrapassem os limites do wrapper,
       mas a imagem sugere que ela está um pouco para fora. */
        }

        /* ... seu .produtos__grid e .produto-card CSS ... */

        /* --- CSS DOS BOTÕES DE NAVEGAÇÃO (Ajustado) --- */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);

            /* Mantém o estilo com o degradê do botão da imagem */
            background: linear-gradient(to bottom, #FC6300, #FC6300);
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            cursor: pointer;
            z-index: 10;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            transition: all 0.2s ease-in-out;
            /* Adiciona uma transição para o opacity, usado para desabilitar o botão */
            opacity: 1;
        }

        .carousel-btn:hover {
            transform: translateY(-50%) scale(1.05);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
        }

        .carousel-btn:disabled {
            cursor: not-allowed;
            opacity: 0.5 !important;
            /* Desabilita o visual quando não é possível rolar */
        }

        /* Posição do botão da direita */
        .right-btn {
            right: -25px;
        }

        /* NOVO: Posição do botão da esquerda */
        .left-btn {
            left: -25px;
            /* Posição espelhada do botão da direita */
        }

        .carousel-wrapper {
            position: relative;
            max-width: 100%;
            margin-top: 20px;
            /* ... outras regras ... */
        }

        /* 1. FADING DA DIREITA (Estático) - Usando Pseudo-elemento */
        .carousel-wrapper::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            height: 100%;
            width: 80px;
            /* Largura do fading */

            /* Gradiente: de transparente (0%) para branco (100%) */
            background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);

            z-index: 5;
            pointer-events: none;
        }

        /* 2. FADING DA ESQUERDA (Dinâmico) - Usando Elemento Real */
        .carousel-fade-left {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 80px;

            /* Gradiente: de transparente (0%) para branco (100%) - Sentido oposto */
            background: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);

            z-index: 5;
            pointer-events: none;
            opacity: 0;
            /* Começa invisível */
            transition: opacity 0.3s ease;
            /* Transição para o JS controlar o fade suavemente */
        }

        .contato-button-wrapper {
            width: 100%;
            /* CHAVE: Centralização usando Flexbox */
            display: flex;
            justify-content: center;
            margin: 40px 0;
            /* Espaçamento vertical */
        }

        /* --- ESTILO DO BOTÃO CUSTOMIZADO (Seu Código) --- */
        .botao-custom {
            position: relative;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 32px;
            background: linear-gradient(90deg, #FC6300, #B84A00);
            color: #ffffff;
            font-size: 14px;
            font-weight: 600;
            border-radius: 100px;
            /* Formato de pílula */
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        /* Efeito de borda interna (1ª borda interna) */
        .botao-custom::before {
            content: "";
            position: absolute;
            /* Ajusta a posição interna, criando o espaço de 3px da borda */
            inset: 3px;
            border: 2px solid rgba(255, 255, 255, 0.5);
            border-radius: 100px;
        }

        /* Estilo para ícones (se houver, com a tag <img>) */
        .botao-custom img {
            width: 18px;
            height: 18px;
            filter: brightness(0) invert(1);
        }
.empresa__section {
    background-color: #fff9f5;
    padding: 60px 5%; /* Espaçamento interno */
    width: 100%;
    /* Removemos o grid daqui, pois quem controla o layout é o container interno */
    display: block; 
}

/* Container Interno (Centraliza e aplica o Grid Texto/Imagem) */
.container-interno {
    max-width: 1200px;
    margin: 0 auto;
    
    display: grid;
    grid-template-columns: 0.8fr 1.2fr; /* Texto (40%) | Imagens (60%) */
    gap: 100px; /* Espaço entre as colunas */
    align-items: center; /* Alinha verticalmente */
}

/* --- Coluna da Esquerda (Texto) --- */
.empresa__conteudo {
    /* Ocupa o espaço disponível no grid */
    width: 100%;
}

/* Container do Botão CTA */
.empresa__cta-container {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    gap: 10%; /* Garante que a seta cole no botão */
}

/* Botão Pílula Laranja */
.empresa__cta-dropdown {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    
    background-color: #ffefe5;
    color: #333333;
    border-radius: 100px;
    
    margin-right: -12px; /* Puxa a seta para cima do botão */
    position: relative;
    z-index: 1;
}

.empresa__cta-dropdown:hover {
    background-color: #ffefe5;
}

/* Seta no Círculo Laranja */
.empresa__cta-container .arrow-icon {
    width: 32px;
    height: 32px;
    background-color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.2); /* Sombra suave */
    position: relative;
    z-index: 2;
}

/* Estilo do Logo (Imagem) */
.empresa__logo {
    margin-bottom: 20px;
    max-width: 350px; /* Tamanho máximo do logo */
}
.empresa__logo img {
    width: 100%;
    height: auto;
    display: block;
}

/* Texto descritivo */
.texto-empresa p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.destaque {
    color: #333;
    font-weight: 700;
}
.destaque-laranja {
    color: var(--color-primary);
    font-weight: 700;
}

/* --- Coluna da Direita (Galeria) --- */
.empresa__galeria {
    height: 750px; /* Altura fixa aumentada */
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
}

.galeria__item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;

    /* CHAVES: Adicione estas propriedades para centralizar o conteúdo da imagem */
    display: flex;
    justify-content: center; /* Centraliza horizontalmente */
    align-items: center;    /* Centraliza verticalmente */
    /* Mantenha as outras regras de estilo aqui */
}

/* O estilo da imagem deve permanecer assim para preencher todo o contêiner: */
.galeria__item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Essencial para preencher e manter o aspecto */
    display: block;
}

/* Posicionamento dos itens da galeria */
.galeria__item.principal {
    grid-row: 1 / span 2; /* Ocupa a altura toda da esquerda */
    grid-column: 1 / 2;
}

.galeria__item.placeholder {
    background-color: #e6e6e6; /* Cinza */
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.galeria__item.auxiliar {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

/* -------------------- MEDIA QUERIES (Responsividade) -------------------- */

@media (max-width: 1000px) {
    /* No tablet/celular, vira uma coluna só */
    .container-interno {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Galeria ajustada para mobile */
    .empresa__galeria {
        height: auto; /* Altura automática */
        grid-template-rows: 300px 200px; /* Alturas fixas para as linhas */
    }
    
    /* Esconde o quadrado cinza no mobile para economizar espaço */
    .galeria__item.placeholder {
        display: none;
    }
    
    .galeria__item.principal {
        grid-column: 1 / -1; /* Ocupa toda a largura */
        grid-row: auto;
    }
    
    .galeria__item.auxiliar {
        grid-column: 1 / -1;
        grid-row: auto;
    }
}
.aluga__logo {
    margin-bottom: 0; 
    /* Garante que o logo fique na mesma área do título anterior */
    width: 100%; 
    max-width: 300px; /* Ajuste este valor para controlar o tamanho do logo */
    height: auto;
}

.aluga__logo img {
    width: 100%;
    height: auto;
    display: block;
}

/* Opcional: Remova o estilo do título antigo se ele não for mais usado */
.aluga__titulo {
    display: none; 
}
/* Definições de Estilo para o Bloco de Texto */
.texto-empresa {
    max-width: 500px;
    padding-right: 40px; 
}

/* Estilo do Título Principal (aluga aqui!) */
.texto-empresa h1 {
    font-size: 5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

/* Estilo do Subtítulo (MÁQUINAS E EQUIPAMENTOS) */
.texto-empresa h2 {
    font-size: 1.25rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 2rem;
}

/* Estilo do Corpo do Texto (Parágrafos) */
.texto-empresa p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

/* Estilo para os Destaques em Cor Cinza Escuro */
.destaque {
    font-weight: 700;
    color: #333;
}

/* Estilo para os Destaques em Cor Laranja */
.destaque-laranja {
    font-weight: 700;
    color: #ff8c00; 
}
/* --- SEÇÃO DE MARCAS (AS MELHORES MARCAS) --- */

/* --- SEÇÃO DE MARCAS: REGRAS GERAIS --- */

/* --- SEÇÃO MARCAS --- */
.marcas-section {
    padding-top: 50px; 
    padding-bottom: 80px;
    text-align: center;
}

.marcas__header {
    max-width: 800px;
    margin: 0 auto 50px auto; 
}

/* CONTAINER DO TÍTULO COM LINHAS LATERAIS */
.marcas__titulo {
    font-size: 40px;
    font-weight: 700;
    display: inline-block;
    position: relative;
    padding: 0 15px;
    line-height: 1.1; /* Propriedade corrigida */
}

/* Adicionando as linhas laterais do título (que faltavam no seu código) */
.marcas__titulo::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -150px;
    width: 140px;
    height: 3px;
    background-color: #fca049;
    border-radius: 5px;
}

.marcas__titulo::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -150px;
    width: 140px;
    height: 3px;
    background-color: #fca049;
    border-radius: 5px;
}

/* Responsividade das linhas */
@media (max-width: 900px) {
    .marcas__titulo::before,
    .marcas__titulo::after {
        display: none;
    }
}

/* ESTILOS DE COR DO TÍTULO */
.titulo__parte-degrade {
    background: linear-gradient(90deg, #FC6300, #B84A00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent; 
}
.titulo__parte-cinza {
    color: #333; 
}

.marcas__descricao {
    font-size: 16px;
    color: #555;
    margin-top: 20px;
    line-height: 1.5;
}

/* CONTÊINERES DE SCROLL */
.marcas__grid-container {
    overflow-x: auto; 
    max-width: 100%; 
    padding: 0 15px; 
    margin: 0 auto;
}

.marcas__grid-scroll {
    display: flex; 
    gap: 20px;
    width: max-content; /* Permite que os itens fiquem na mesma linha */
    margin: 0 auto;
    padding: 20px 0;
}

/* ESTILO DOS QUADRADOS E IMAGENS */
.marcas__item {
    background-color: #FFFFFF; /* Fundo branco */
    border: 1px solid #ddd;
    border-radius: 10px;
    width: 90px; 
    height: 90px; 
    flex-shrink: 0; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05); 
    
    /* Configuração para a imagem: */
    overflow: hidden; 
    display: flex;
    justify-content: center;
    align-items: center;
}

.marcas__item img {
    width: 100%; 
    height: 100%; 
    object-fit: contain; /* Redimensiona para caber, mantendo a proporção */
    padding: 15px; /* Evita que a logo toque as bordas */
}

.marcas__cta {
    margin-top: 60px;
}

/* Responsividade (Removendo linhas em telas pequenas) */
@media (max-width: 768px) {
    .marcas__titulo::before,
    .marcas__titulo::after {
        content: none;
    }
}
/* --- SEÇÃO VANTAGENS (FUNDO BRANCO) --- */
.section--vantagens {
    background-color: #ffffff; /* Fundo Branco */
    padding-bottom: 80px;
}

/* Header Lado a Lado */
.vantagens-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    gap: 40px;
}
.vantagens-header .section__title { flex: 1; }
.vantagens-header .section__description { flex: 1; margin-top: 10px; }

/* CARD VANTAGEM */
.vantagem-card {
    background-color: #fff;
    border: 1px solid #c5c5c5; /* Borda sutil para destacar no fundo branco */
    border-radius: 20px;
    padding: 30px;
    width: 320px;
    min-height: 200px;
    
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.vantagem-top-bar{
            content: '';
            display: flex;
            position: absolute;
            bottom: 10px;
            left: 0;
            /* Alinhado à esquerda */
            width: 100px;
            height: 2px;
            background-color: var(--color-primary);
            border-radius: 2px;
            transform: none;
            /* Remove a centralização */
        }

.vantagem-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 15px;
}

.vantagem-text {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
    margin-bottom: auto; 
}

.vantagem-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    margin-top: 30px;
}
.vantagem-link i { font-size: 18px; }

/* FADES BRANCOS PARA O CARROSSEL */
.fade-white {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100px;
    pointer-events: none;
    z-index: 5;
}
.carousel-fade-left.fade-white {
    left: 0;
    background: linear-gradient(to right, #ffffff 30%, rgba(255, 255, 255, 0) 100%);
}
.carousel-fade-right.fade-white {
    right: 0;
    background: linear-gradient(to left, #ffffff 30%, rgba(255, 255, 255, 0) 100%);
}

/* Responsividade */
@media (max-width: 768px) {
    .vantagens-header { flex-direction: column; gap: 20px; }
}
.titulo__parte-degrade {
    background: linear-gradient(90deg, #FC6300, #B84A00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent; 
}

/* Parte do texto Cinza Escuro (Mantido) */
.titulo__parte-cinza {
    color: #333; 
}
/* ---------------------------------------------------------------- */
/* Botão Flutuante do WhatsApp (CLASSE QUE FAZ O BOTÃO APARECER E FLUTUAR) */
/* ---------------------------------------------------------------- */

.whatsapp-float {
    position: fixed;
    bottom: 40px; 
    right: 40px; 
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    
    /* CHAVE 1: Suaviza todas as mudanças em 0.3 segundos */
    transition: all 0.3s ease; 
}

.whatsapp-float:hover {
    /* CHAVE 2: Faz o botão crescer 10% */
    transform: scale(1.1); 
    
    /* CHAVE 3: Muda a cor de fundo */
    background-color: #128C7E; 
    
    /* Animação extra: Sombra mais intensa */
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.8);
}

/* Regras de media query (manter) */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}
/* ========================================================================= */
/* 1. ANIMAÇÃO TYPEWRITER (Efeito Máquina de Escrever) */
/* ========================================================================= */

.typewriter-h2 {
    /* Garante que o texto comece oculto (exceto o que será digitado) */
    white-space: pre-wrap; /* Mantém espaços e quebras de linha */
    overflow: hidden; /* Oculta o texto restante */
    border-right: 0.15em solid #FC6300; /* Simula o cursor */
    /* Remove a animação do cursor inicialmente */
    animation: none; 
}

/* Animação do cursor piscando (aplicada APENAS quando .cursor-digitando está presente) */
.cursor-digitando {
    animation: piscar-cursor 0.75s step-end infinite;
}

@keyframes piscar-cursor {
    from, to { border-color: transparent; }
    50% { border-color: #FC6300; } 
}


/* ========================================================================= */
/* 2. ANIMAÇÃO DE SCROLL (Fade-in / Surgir) */
/* ========================================================================= */

/* Estado inicial (oculto) */
.animar-scroll {
    opacity: 0;
    /* Move 30px para baixo (efeito 'surgindo de baixo') */
    transform: translateY(30px); 
    transition: opacity 1s ease-out, transform 0.8s ease-out;
}

/* Estado final (visível) - Aplicado via JavaScript */
.animar-scroll.visivel {
    opacity: 1;
    transform: translateY(0);
}