/* ============================   FEEDBACK   =========================== */
.feedbacks-section {
  background-color: #0F1B40;
  color: whitesmoke;
  padding: 4rem 2rem;
   text-align: center;

  border-radius: 20px;
  /* max-width: 1200px; */
  /* width: 90%; */
  margin: 0 auto 4rem auto;
}

.feedbacks-title {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.feedbacks-subtitle {
  font-size: 1rem;
  margin-bottom: 3rem;
  opacity: 0.8;
}

.feedback-group {
  margin-bottom: 4rem;
   
  align-content: center;
}

.feedback-group h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #F20574;
}

.feedback-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.feedback-card {
  background-color: #1A2B60;
  border-radius: 20px;
  padding: 0.5rem;
  /* max-width: 300px; */
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.feedback-card:hover {
  transform: scale(1.05);
}

.feedback-card img {
  width: 600px;
  height: 200px;
  border-radius: 15px;
}

.feedback-card-big
{
   background-color: #1A2B60;
  border-radius: 20px;
  padding: 0.5rem;
  /* max-width: 300px; */
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.feedback-card-big:hover {
  transform: scale(1.05);
}

.feedback-card-big img {
  width: 600px;
  height: 280px;
  border-radius: 15px;
}

.feedback-card-clients
{
   background-color: #1A2B60;
  border-radius: 20px;
  padding: 0.5rem;
  /* max-width: 300px; */
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.feedback-card-clients:hover {
  transform: scale(1.05);
}

.feedback-card-clients img {
  width: 600px;
  height: 230px;
  border-radius: 15px;
}

.feedback-cta {
  margin-top: 2rem;
}

.feedback-cta p {
  font-weight: 600;
  margin-bottom: 1rem;
}

.btn-primary {
  background: #FFD700;
  color: #0F1B40;
  font-weight: bold;
  padding: 0.75rem 1.5rem;
  padding: 1rem;
  border-radius: 12px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 12pt;
  text-decoration: none;
}
.btn-primary:hover {
  background: #f2c200;
}

/* @media (max-width: 768px) {
  .feedback-cards {
    flex-direction: column;
    align-items: center;
  }
} */



/* Responsivo: telas pequenas */
@media (max-width: 768px) {

  /* Container de cards */
.feedback-cards {
  display: flex;
  flex-wrap: wrap;       /* permite quebrar linhas em telas pequenas */
  gap: 1rem;             /* espaço entre as imagens */
  justify-content: center; /* centraliza horizontalmente */
}

/* Cards individuais */
.feedback-card,
.feedback-card-big,
.feedback-card-clients {
  flex: 1 1 30%;       /* cresce e encolhe, largura mínima 200px */
  max-width: 300px;      /* largura máxima do card */
   /* background: wheat;
    height: 30px; */
}

.feedback-card img,
.feedback-card-big img,
.feedback-card-clients img {
  width: 100%;           /* imagem ocupa 100% do card */
  height: auto;         
  border-radius: 10px;   /* opcional: bordas arredondadas */
  display: block;
}

  .feedback-cards {
    flex-direction: column;  /* empilha cards verticalmente */
    align-items: center;
    gap: 1.5rem;
  }

  .feedback-card,
  .feedback-card-big,
  .feedback-card-clients {
    max-width: 100%;   /* ocupa quase toda a largura da tela */
  }
}
/* ============================   END FEEDBACK   =========================== */
