.main-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Alinhamento dos banners --- */
.banner-container {
    display: flex;
    gap: 15px;
    margin-bottom: 60px;
}

h1, h2, h3 {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.card {
    flex: 1;
    height: 320px;
    display: flex;
    align-items: center; /* Centraliza verticalmente */
    justify-content: center; /* Centraliza horizontalmente */
    padding: 20px;
    background-size: cover;
    background-position: center;
}

.ecological {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('https://images.unsplash.com/photo-1542601906990-b4d3fb778b09?auto=format&fit=crop&w=800&q=80');

}
.budget {
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://images.unsplash.com/photo-1554224155-6726b3ff858f?auto=format&fit=crop&w=800&q=80');
}

.border-box {
    border: 1px solid rgba(255, 255, 255, 0.6);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.border-box h2 {
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 10px;
}

.border-box p {
    font-size: 0.9rem;
    letter-spacing: 1px;
    max-width: 300px;
}

/* --- LOGOS ALIGNMENT --- */
.clientes-container {
    text-align: center;
    padding: 40px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.clientes-container h2 {
    color: #556b82; /* Tom de azul acinzentado do print */
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 30px;
    font-size: 24px;
}

.logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; /* Garante que as logos quebrem linha no celular */
    gap: 40px; /* Espaçamento entre as logos */
    max-width: 1200px;
    margin: 0 auto;
}

.logos-grid img {
    max-height: 150px; /* Ajusta a altura uniforme para todas */
    width: auto;
    filter: grayscale(20%); /* Opcional: suaviza as cores */
    transition: transform 0.3s ease;
}

.logos-grid img:hover {
    transform: scale(1.1); /* Efeito visual ao passar o mouse */
    filter: grayscale(0%);
}

/* Responsividade */
@media (max-width: 850px) {
    .banner-container {
        flex-direction: column;
    }
    .logos-row {
        justify-content: center;
    }

    .banner-container {
        display: block;
    }
}