/* ==========================================================
   CONCLUSAO — "Empresas criativas precisam continuar criativas."
   ========================================================== */

.conclusao {
  width: 100%;
  background-color: #4a2a80;
  background-image: url(../img/empresas_bg.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  -webkit-background-size: auto 100%;
  -moz-background-size: auto 100%;
  -o-background-size: auto 100%;
  background-size: auto 100%;
  padding: 100px 0;
  text-align: center;
}
.conclusao__titulo {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 26px;
  text-wrap: balance;
}
.conclusao__p {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 60px;
}
.conclusao__cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.conclusao__card {
  border-radius: 25px;
  padding: 20px 30px;
  border: 1px solid rgba(255, 255, 255, .37);
  background-color: rgba(222, 205, 238, .10);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-shadow: 0 0 12px rgba(255, 255, 255, .55);
  transition: background-color .3s, transform .3s;
}
.conclusao__card:hover {
  background-color: rgba(222, 205, 238, .2);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .conclusao { padding: 70px 0; background-size: cover; }
  .conclusao__titulo { font-size: 30px; }
  .conclusao__p { font-size: 18px; margin-bottom: 40px; }
  .conclusao__cards { gap: 16px; }
  .conclusao__card { font-size: 20px; padding: 16px 24px; }
}
@media (max-width: 480px) {
  .conclusao__titulo { font-size: 26px; }
  .conclusao__card { width: 100%; }
}
