.investidores-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
}

.investidor-item {
    width: 200px;
    height: 120px;
    background: var(--branco);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(10, 37, 89, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.investidor-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(10, 37, 89, 0.15);
}

.investidor-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.investidor-nome {
    font-weight: 600;
    color: var(--azul-escuro);
    text-align: center;
}

.investidor-placeholder {
    border: 2px dashed var(--cinza-medio);
    background: var(--cinza-claro);
}

.investidores-cta {
    text-align: center;
    margin-top: 2rem;
}

.investidores-cta p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--azul-medio);
    margin-top: -1.5rem;
    margin-bottom: 2rem;
}

.nossos-investidores {
    padding: 5rem 5%;
    background: var(--branco);
}
