body {
  padding: 0;
}

p {
  font-family: "Roboto", sans-serif;
}

.larger-text {
  font-size: 11.5vh;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: white;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100% !important;
  height: 150px;
  background: transparent;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.title {
  background-color: #002d72;
  height: calc(100% + 2%);
}

.logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Container dos clientes */
.clientes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  padding: 20px 0;
}

/* Responsivo para diferentes tamanhos de tela */
@media (max-width: 768px) {
  .clientes-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
  }

  .logo {
    height: 120px;
    padding: 5px;
  }
}

@media (max-width: 480px) {
  .clientes-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
  }

  .logo {
    height: 100px;
    padding: 5px;
  }
}
