/* ==========================================================
   FRENTES — "Uma consultoria. Duas frentes estratégicas."
   ========================================================== */

.frentes {
  background-color: #09183f;
  background-image: url(../img/bg_frentes.jpg);
  background-repeat: no-repeat;
  background-position: right top;
  padding: 100px 0;
}
.frentes__grid {
  display: grid;
  grid-template-columns: minmax(0, 572px) 756px;
  justify-content: space-between;
  gap: 40px;
  align-items: start;
}
.frentes__eyebrow { color: var(--coral); margin-bottom: 14px; }
.frentes__titulo {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 16px;
}
.frentes__p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 40px;
  text-wrap: pretty;
}

/* Cards ----------------------------------------------------- */
.frentes__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 46px;
}
.frentes__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #fff;
  border-radius: 25px;
  padding: 40px 27px 37px;
  box-shadow: 0 12px 30px rgba(10, 0, 52, .18);
  color: #2c2c2c;
}
.frentes__card--link {
  transition: transform .35s ease, box-shadow .35s ease;
}
.frentes__card--link:hover {
  color: #2c2c2c;
  transform: translateY(-8px);
  box-shadow: 0 26px 50px rgba(10, 0, 52, .35);
}
.frentes__logo {
  height: 57px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  margin-bottom: 26px;
}
.frentes__tags {
  font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
  font-size: 13px;
  line-height: 1.2;
  color: #7c7c7c;
  margin-bottom: 32px;
}
.frentes__card p {
  font-family: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  color: #2c2c2c;
  margin-bottom: 44px;
  text-wrap: balance;
}
.frentes__bt {
  display: inline-block;
  margin-top: auto;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
  padding: 10px 16px;
  transition: background-color .3s, padding .3s, box-shadow .3s;
}
.frentes__bt--aqui { background-color: #ffb8b3 }
.frentes__bt--site { background-color: var(--coral); }
.frentes__card--link:hover .frentes__bt--site {
  background-color: #fd5f54;
  padding: 10px 26px;
  box-shadow: 0 8px 20px rgba(255, 104, 13, .4);
}

/* Responsivo ----------------------------------------------- */
@media (max-width: 1400px) {
  .frentes__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr); }
  .frentes__cards { gap: 24px; }
}
@media (max-width: 1024px) {
  .frentes__grid { grid-template-columns: 1fr; gap: 50px; }
  .frentes__cards { max-width: 756px; }
}
@media (max-width: 768px) {
  .frentes { padding: 70px 0; background-size: 60% auto; }
  .frentes__titulo { font-size: 30px; }
}
@media (max-width: 600px) {
  .frentes__cards { grid-template-columns: 1fr; }
  .frentes__logo { height: 48px; }
}
