
*{
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
 
}
html, body {
    overflow-x: hidden; 
}
main {
    margin-top: 280px; 
}
@media (min-width: 992px) {
    main {
        margin-top: 170px;
    }
}
.card-img-top {
    aspect-ratio: 16 / 9; 
    object-fit: cover; 
    width: 100%;
    background-color: #f8f9fa; 
}
.navbar-nav .nav-link {
    transition: color 0.3s ease;
}
.navbar-nav .nav-link:hover {
    color: #FF6600 !important; 
}
.numeros {
display: flex;
gap: 20px;
align-items: center;
justify-content: center;
height: 50px;
background-color: #d88c00;
}
.numeros p {
    margin: 0;
}
.conheca {
    color: #ffffff;
   -webkit-text-stroke: 0.5px #ffffff;
}
.texto-destaque {
    color: #ff7b00;
 
    -webkit-text-stroke: 0.5px #ff7b00;
}
.resultados {
      color: #ff7b00; 
    text-shadow: 0 0 10px rgba(255, 123, 0, 0.5); 
    -webkit-text-stroke: 0.5px #ff7b00;
}
.estrategica {
     color: #ff7b00; 
  
    -webkit-text-stroke: 0.5px #ff7b00;
}
.btn-novarota {
    background-color: #FF6600;
    color: #ffffff;
    border: none;
    font-weight: bold;
    transition: all 0.3s ease; 
}
.btn-novarota:hover {
    background-color: #CC5200; 
    color: #ffffff;
    box-shadow: 0px 5px 15px rgba(255, 102, 0, 0.4); 
    /* Removemos a linha do 'transform' para o botão não crescer e bugar a barra lateral */
}
.equipe-container {
    display: flex;
    flex-wrap: wrap; 
    gap: 20px; 
    height: auto;
    min-height: 400px; 
    justify-content: center;
    align-items: stretch; 
}
.equipe-card {
    display: flex;
    width: 250px; 
    border-radius: 15px;
    background-color: #0d1b2a;
    overflow: hidden; 
    transition: all 0.6s ease-in-out; 
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.equipe-card:hover {
    width: 550px; 
}
.equipe-foto {
    width: 250px;
    min-width: 250px; 
    height: 100%;
    flex-shrink: 0; 
}
.equipe-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block; 
    object-position: top center; 
    transition: all 0.6s ease-in-out;
}
.equipe-texto {
    width: 300px; 
    min-width: 300px; 
    padding: 30px 25px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0; 
    transition: opacity 0.6s ease-in-out; 
    transition-delay: 0.1s; 
}
.equipe-texto p:last-child {
    margin-bottom: 0;
    font-size: 0.95rem; 
}
.equipe-card:hover .equipe-texto {
    opacity: 1;
}
@media (max-width: 992px) {
    .equipe-card {
        width: 100%;
        max-width: 400px;
        flex-direction: column;
}
    .equipe-card:hover {
        width: 100%; 
}
    .equipe-foto {
        width: 100%;
        min-width: 100%;
        height: 350px;
}
    .equipe-texto {
        width: 100%;
        min-width: 100%;
        opacity: 1; 
        height: auto;
}
}
/* Container e Card base mantidos iguais aos seus */
.fornecedores-container {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    align-items: flex-start; 
}

.fornecedor-card {
    width: 260px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.fornecedor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15) !important;
}

.fornecedor-logo {
    height: 140px; 
    padding: 0; 
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    overflow: hidden; 
}

.fornecedor-logo img {
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}

/* CAIXA DE TEXTO (AQUI ESTAVA O PROBLEMA) */
.fornecedor-texto {
    max-height: 0; 
    opacity: 0;
    padding: 0 20px; 
    background-color: #0d1b2a; 
    color: white;
    transition: all 0.4s ease-in-out;
    overflow: hidden; /* ADICIONADO: Impede que o texto vaze quando o card está fechado */
}

/* EFEITO AO PASSAR O MOUSE (HOVER) */
.fornecedor-card:hover .fornecedor-texto {
    max-height: 200px; 
    opacity: 1;
    padding: 20px; 
}

/* RESPONSIVIDADE (CELULARES E TABLETS) */
@media (max-width: 768px) {
    .fornecedor-card {
        width: 100%;
        max-width: 300px;
        margin: 0 auto; /* Ajuda a centralizar o card sozinho na tela do celular */
    }
    
    /* Removida a regra que forçava todos os textos a ficarem abertos.
       No celular, o efeito de "abrir" vai acontecer quando a pessoa TOCAR no card. */
       
    .fornecedor-card:hover {
        transform: none; /* Evita que o card pule a tela no celular ao ser tocado */
    }
}
.btn-whatsapp {
    background-color: #25D366;
    color: white;
    border-radius: 50px;
    padding: 15px 40px;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.4s ease-in-out; 
}
.btn-whatsapp:hover {
   
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4) !important; 
    transform: translateY(-2px); 
}