/* Nova seção com fundo */
.new-section {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center; /* Centraliza verticalmente */
    justify-content: center;
    padding: 50px 7%;
    background: url('../img/fundo.png') no-repeat center center;
    background-size: cover;
}

/* Container principal da seção */
.new-section .content-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    background: rgba(6, 28, 34, 0.705); /* Fundo escuro semitransparente */
    border-radius: 20px; /* Bordas arredondadas */
    padding: 40px;
    color: #ecebeb;
}

/* Ajuste do Texto */
.new-section .text-container {
    flex: 1;
    text-align: center;
    padding-left: 20px;
}

/* Título */
.new-section .text-container h1 {
    font-size: 2rem;
    margin-bottom: 15px;
}

/* Texto */
.new-section .text-container p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Botão CTA */
.new-section .text-container .cta-button {
    display: inline-block;
    padding: 10px 20px;
    background: transparent;
    color: #ecebeb;
    border: 2px solid #ffffff;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.new-section .text-container .cta-button:hover {
    background: #a5a5a5;
    color: #fff;
}

/* Ajuste da imagem (lado esquerdo) */
.new-section .image-container {
    flex: 1;
    padding-right: 20px;
}

.new-section .image-container img {
    width: 100%;
    border-radius: 15px;
    object-fit: cover;
}

.logo-carousel-section {
    padding: 40px 7%;
    background-color: #f8f9fa;
    text-align: center;
  }
  
  .logo-carousel-section h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #2A3D4A;
    font-family: 'Aleo', serif;
  }
  
  .logo-carousel-section hr {
    width: 80px;
    height: 3px;
    background-color: #A9472E;
    border: none;
    margin: 0 auto 30px;
  }
  
  .logo-carousel {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 30px;
    scroll-behavior: smooth;
    padding-bottom: 10px;
  }
  
  .logo-carousel::-webkit-scrollbar {
    display: none; /* Esconde barra no Chrome/Safari */
  }
  
  .logo-carousel img {
    height: 60px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
    transition: transform 0.3s ease;
  }
  
  .logo-carousel img:hover {
    transform: scale(1.05);
  }
  
/* 🔹 RESPONSIVIDADE */

/* 📱 Mobile: Remover imagem e centralizar conteúdo */
@media (max-width: 768px) {
    .new-section .content-container {
        flex-direction: column;
        padding: 30px;
    }

    .new-section .image-container {
        display: none; /* REMOVE A IMAGEM EM TELAS PEQUENAS */
    }

    .new-section .text-container {
        text-align: center;
        padding: 0;
    }

    .new-section .text-container h1 {
        font-size: 1.6rem;
    }

    .new-section .text-container p {
        font-size: 1rem;
    }
}

/* 📱📱 Mobile muito pequeno (menor que 480px) */
@media (max-width: 480px) {
    .new-section {
        padding: 30px 5%;
    }

    .new-section .content-container {
        padding: 20px;
    }

    .new-section .text-container h1 {
        font-size: 1.4rem;
    }

    .new-section .text-container p {
        font-size: 0.9rem;
    }

    .new-section .text-container .cta-button {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}