/* Reset e configurações globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #121212;
    color: #fff;
    padding-top: 60px; /* Ajuste para evitar sobreposição com o menu fixo */
    font-size: 14px; /* Fonte menor para um visual mais profissional */
}

/* MENU FIXO */
.menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #1a1a1a;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.menu .logo img {
    height: 65px; /* Ajuste do tamanho do logo */
    margin-left: 50px;
}

.menu .nav-links {
    display: flex;
    list-style: none;
    margin-right: 50px;
}

.menu .nav-links li {
    position: relative;
    margin-left: 20px;
}

.menu .nav-links li a {
    text-decoration: none;
    color: #fff;
    font-size: 16px; /* Fonte menor */
    transition: color 0.3s;
    position: relative;
    padding-bottom: 4px;
}

.menu .nav-links li a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0099ff, #0055ff);
    transition: width 0.3s ease, left 0.3s ease;
}


.menu .nav-links li a:hover::after,
.menu .nav-links li a.active::after {
    width: 100%;
    left: 0;
}

.menu .nav-links li a:hover {
    color: #0099ff;
}

/* MENU RESPONSIVO */
.menu-toggle {
    display: none;
    font-size: 22px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}

@media (max-width: 768px) {
    .menu {
        justify-content: space-between;
    }

    .menu .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        background: #1a1a1a;
        width: 100%;
        padding: 10px 0;
    }

    .menu .nav-links.active {
        display: flex;
    }

    .menu .nav-links li {
        text-align: center;
        margin: 8px 0;
    }

    .menu-toggle {
        display: block;
    }
}

/* CONTEÚDO */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 20px 0;
}

/* Banner principal */
.banner {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.banner-item {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s;
}

.banner-item.active {
    opacity: 1;
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Movendo o texto para a direita */
.banner-text {
    position: absolute;
    bottom: 15%;
    right: 5%; /* Antes era left, agora está no lado direito */
    color: white;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    text-align: right; /* Alinha o texto à direita */
}

.banner-text h2 {
    font-size: 24px;
    margin: 0;
}

.banner-text p {
    font-size: 16px;
    margin: 5px 0 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Banner estreito das marcas */
.marcas {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    background: linear-gradient(90deg, #1a1a1a, #222);
    padding: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.marcas img {
    height: 60px; /* Ajuste de tamanho uniforme */
    filter: grayscale(80%);
    transition: all 0.3s ease-in-out;
}

.marcas img:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Cards de Informações */
.cards {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.card {
    flex: 1;
    min-width: 280px;
    background: #1e1e1e;
    padding: 18px;
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(0, 153, 255, 0.5);
    transition: transform 0.3s;
}

.card:hover {
    transform: scale(1.04);
}

.card h3 {
    color: #0099ff;
    margin-bottom: 8px;
    font-weight: normal;
}

/* Container principal */
.container {
    width: 100%;
    max-width: 1200px; /* Limita a largura máxima */
    margin: 0 auto; /* Centraliza */
    padding: 0 20px; /* Adiciona um padding nas laterais */
}

/* Seção de imagem + significado */
.info-section {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    margin-top: 40px;
    flex-wrap: wrap;
}

.info-section img {
    width: 50%;
    border-radius: 8px;
    object-fit: cover;
}

.info-text {
    width: 50%;
    background: #1e1e1e;
    padding: 18px;
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(0, 153, 255, 0.5);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-text h2 {
    color: #0099ff;
    margin-bottom: 8px;
    font-weight: normal;
}

.info-text p {
    margin-bottom: 16px;
}

.info-text strong {
    color: #4169e1; /* Cor para destacar o texto importante */
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
    .info-section {
        flex-direction: column;
        align-items: center;
    }

    .info-section img,
    .info-text {
        width: 100%;
        height: auto;
    }
}

/* Estilo para a seção de Peças de Procedência */
.info-fita {
    background-color: #1e1e1e; /* Fundo escuro */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    color: #f1f1f1;
    margin-top: 30px;
}

/* Cabeçalho com ícone e título */
.info-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    position: relative;
}

/* Ícone */
.info-header i {
    font-size: 2em;
    color: #00bcd4; /* Cor do ícone */
    margin-right: 15px;
}

/* Título */
.info-header strong {
    font-size: 1.5em;
    font-weight: bold;
    color: #fff;
}

/* Linha sublinhada (estilo) */
.info-header::after {
    content: '';
    position: absolute;
    bottom: -8px; /* Distância entre o texto e a linha */
    left: 0;
    width: 100%; /* A linha ocupa toda a largura */
    height: 2px;
    background-color: #00bcd4; /* Cor da linha */
    border-radius: 2px;
}

/* Descrição do conteúdo */
.info-description {
    font-size: 1em;
    line-height: 1.6;
    text-align: justify;
    color: #b0b0b0; /* Cor mais suave para o texto */
}

/* Responsividade */
@media (max-width: 768px) {
    .info-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .info-header i {
        margin-bottom: 10px;
    }
}




/* Seção DESTAQUE */
.fita-profissional {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(90deg, #333, #222);
    padding: 20px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    margin-top: 20px;
    color: white;
}

.fita-item {
    flex: 1;
    text-align: center;
    padding: 15px 20px;
}


.titulo {
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    color: white;
}

.descricao {
    font-size: 16px;
    font-weight: 300;
    font-family: 'Poppins', sans-serif;
    color: #ddd;
    max-width: 80%;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .fita-profissional {
        flex-direction: column;
        text-align: center;
    }

    .descricao {
        max-width: 100%;
    }
}

 /* Estilo para a seção Desmanche Legal */
    #desmanche-legal {
        background-color: #f8f9fa; /* Fundo leve */
        padding: 50px 0; /* Espaçamento nas laterais e em cima/embaixo */
    }

    /* Título e subtítulo */
    #desmanche-legal .section-title h2 {
        font-size: 32px;
        font-weight: 600;
        color: #333; /* Cor escura para o título */
    }

    #desmanche-legal .section-title h3 {
        font-size: 28px;
        font-weight: 500;
        color: #FF6F00; /* Cor laranja para destacar a certificação */
    }

    #desmanche-legal .section-title p {
        font-size: 18px;
        color: #555; /* Cor para o texto */
        line-height: 1.6;
    }

    /* Coluna com o texto */
    #desmanche-legal .feature-text {
        padding-left: 30px;
        padding-right: 30px;
    }

    /* Coluna com a imagem */
    #desmanche-legal .position-relative img {
        object-fit: cover;
        width: 100%; /* A imagem ocupará toda a largura */
        height: 100%; /* A altura da imagem será 100% */
        border-radius: 10px; /* Bordas arredondadas */
    }

    /* Responsividade */
    @media (max-width: 768px) {
        /* Quando a tela for pequena, a imagem e o texto ficam em uma coluna */
        #desmanche-legal .row {
            flex-direction: column;
        }

        /* Ajustar as margens e o padding em telas menores */
        #desmanche-legal .feature-text {
            padding-left: 15px;
            padding-right: 15px;
        }
    }
    
/* Estilos do carrossel */
.carousel-container {
    position: relative;
    width: 100%; /* Ou defina um tamanho fixo para o carrossel */
    overflow: hidden;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease; /* Suaviza o movimento de transição */
}

.carousel-item {
    flex: 0 0 auto; /* Impede que os itens se expandam */
    width: 200px; /* Defina a largura das imagens */
    margin-right: 10px; /* Espaçamento entre as imagens */
}

.carousel-item img {
    width: 100%; /* Ajusta as imagens para a largura do item */
    height: auto;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/* Botões de navegação */
.carousel-prev, .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 20px;
    z-index: 1;
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

/* Estilo para a seção Remoção de Sucatas */
/* Estilo para a seção Remoção de Sucatas */
.info-section.sucata {
    display: flex;
    align-items: stretch; /* Mantém a altura igual entre imagem e texto */
    gap: 0; /* Remove espaço extra */
    border: 3px solid #0044cc; /* Moldura azul */
    border-radius: 10px; /* Bordas arredondadas */
    overflow: hidden; /* Garante que a borda fica conectada corretamente */
}

.info-section.sucata img {
    width: 50%; /* Metade do espaço disponível */
    object-fit: cover; /* Mantém a imagem ajustada */
}

.info-section.sucata .info-text {
    width: 50%; /* Metade do espaço disponível */
    padding: 30px;
    background-color: transparent; /* Remove fundo branco */
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff; /* Cor do texto branca para destacar no azul */
}

/* Responsividade */
@media (max-width: 768px) {
    .info-section.sucata {
        flex-direction: column-reverse; /* Imagem abaixo do texto */
        border-radius: 10px; /* Bordas iguais */
    }

    .info-section.sucata img,
    .info-section.sucata .info-text {
        width: 100%;
    }

    .info-section.sucata .info-text {
        text-align: center;
        padding: 20px;
    }
}
/* Estilo do Footer Fixo */
/* Estilo do Footer Fixo */
.footer {
    position: fixed;
    bottom: -100%; /* Inicialmente escondido */
    left: 0;
    width: 100%;
    background-color: #1a1a1a;
    color: #fff;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    transition: bottom 0.3s ease; /* Animação para aparecer o footer */
}

/* Container do footer */
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Logo do footer */
.footer-logo img {
    height: 50px;
    width: auto;
}

/* Texto do footer */
.footer-info {
    font-size: 14px;
    text-align: center;
    color: #bdc3c7;
    font-weight: 300;
}

/* Ícones de redes sociais */
.footer-social {
    display: flex;
    gap: 20px;
}

/* Remover sublinhado dos links de redes sociais */
.footer-social .social-icon {
    font-size: 28px;
    color: #fff;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
    padding: 8px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

/* Cores específicas para cada rede social */
.footer-social .facebook {
    background-color: #3b5998;
}

.footer-social .instagram {
    background-color: #E1306C;
}

.footer-social .google {
    background-color: #db4437;
}

.footer-social .email {
    background-color: #d14836;
}

/* Efeito de hover nos ícones */
.footer-social .social-icon:hover {
    transform: scale(1.1);
    opacity: 0.8;
    background-color: rgba(255, 255, 255, 0.1);
}

/* Efeitos de hover para as redes sociais */
.footer-social .facebook:hover {
    background-color: #2d4373;
}

.footer-social .instagram:hover {
    background-color: #b23a6e;
}

.footer-social .google:hover {
    background-color: #c1351d;
}

.footer-social .email:hover {
    background-color: #b53e2a;
}

/* Ícone para voltar ao topo */
#back-to-top {
    position: fixed;
    bottom: 60px;
    right: 20px;
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 50%;
    padding: 15px;
    cursor: pointer;
    font-size: 20px;
    display: none; /* Inicialmente escondido */
    z-index: 1100;
    transition: opacity 0.3s ease;
}

/* Efeito de hover no ícone de voltar ao topo */
#back-to-top:hover {
    background-color: #3b5998;
}

/* Responsividade para o footer */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-logo {
        margin-bottom: 15px;
    }

    .footer-social {
        justify-content: center;
        margin-top: 15px;
    }

    .footer-info {
        text-align: center;
        margin-top: 15px;
    }
}
/* Card Transparente */
.transparent-card {
    height: 20px; /* Ajuste a altura para o espaço necessário */
    background-color: rgba(255, 255, 255, 0.1); /* Cor de fundo semi-transparente */
    margin-top: 20px; /* Margem superior para separar do conteúdo */
    width: 100%; /* Garante que o card ocupe toda a largura */
}

