.section-home{
    background-image: url(../assets/img/bannerhome.webp)!important;
    min-height: 400px;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.section-operadoras {
  display: flex;
  flex-wrap: wrap; /* Permite que os cards sejam responsivos */
  justify-content: center; /* Centraliza os cards */
  gap: 20px; /* Espaçamento entre os cards */
  padding: 20px;
  width: 60%;
  margin: 30px auto;
}

.card {
  width: 150px;
  height: 140px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  transform: perspective(1000px); /* Define a perspectiva 3D */
  transition: transform 0.5s ease, box-shadow 0.3s ease;
}

.card a{
  display: flex;
  align-items: center;
  justify-content: center;
}

.card:hover {
  transform: perspective(1000px) rotateY(15deg) rotateX(10deg) scale(1.1); /* Animação 3D */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); /* Efeito de profundidade */
}

.card img {
  max-width: 130px; /* Ajusta o tamanho da imagem ao card */
  max-height: 130px; /* Mantém a proporção */
  object-fit: contain; /* Evita distorções */
  border-radius: 8px;
}

  .section-operadoras h3{
    font-size: 24px;
    text-align: center;
  }

  .section-operadoras__plan{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
  }