/* ==========================================================================
   MARCA - LAR DA FE
   ========================================================================== */

.hero {
  min-height: 82dvh;
  justify-content: center;
  padding: clamp(34px, 7vw, 72px) 24px 118px;
  text-align: center;
}

.hero__inner {
  width: min(100%, var(--maxw));
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__title {
  max-width: 860px;
  color: var(--cor-azul-profundo);
  font-size: clamp(3.1rem, 9vw, 6.3rem);
  line-height: .98;
  letter-spacing: 0;
}

.hero__title::first-line {
  color: var(--cor-azul-profundo);
}

.hero__text {
  max-width: 650px;
  margin-top: 26px;
  color: var(--cor-texto-suave);
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
  border-radius: var(--raio-selo);
  text-decoration: none;
  font-weight: 900;
  box-shadow: var(--sombra-leve);
}

.hero__btn--primary {
  background: var(--cor-azul-profundo);
  color: #fff;
}

.hero__btn--primary::before {
  content: "▶";
  margin-right: 8px;
  font-size: .82em;
}

.hero__btn--secondary {
  background: rgba(255, 255, 255, .74);
  color: var(--cor-azul-profundo);
  border: 1px solid rgba(15, 43, 82, .14);
}

.hero__btn--scroll {
  background: var(--cor-azul-profundo);
  color: #fff;
}

.hero__btn--scroll::after {
  content: "↓";
  margin-left: 10px;
  font-size: 1.05em;
  line-height: 1;
}

.hero__btn:hover,
.cta__btn:hover {
  transform: translateY(-3px);
}

.cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  margin-top: -58px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.link-card {
  display: block;
  padding: 0;
  background: transparent;
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(15, 43, 82, .12);
}

.link-card:nth-child(3) {
  grid-column: 1 / -1;
  width: calc((100% - 26px) / 2);
  justify-self: center;
}

.link-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: inherit;
}

.vitrine {
  padding-top: 64px;
}

.vitrine__titulo,
.cta__title {
  color: var(--cor-azul-profundo);
}

.vitrine__seta {
  border-color: rgba(15, 43, 82, .3);
  color: var(--cor-azul-profundo);
  background: rgba(255, 255, 255, .65);
}

.vitrine__seta:hover {
  background: var(--cor-azul-profundo);
  color: #fff;
}

.galeria .trilho {
  padding-top: 8px;
  padding-bottom: 18px;
}

.gallery-card {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.gallery-card img,
.gallery-card video {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 0;
  box-shadow: none;
}

.slide__legenda {
  background: var(--cor-luz);
  color: var(--cor-texto-suave);
  font-family: var(--fonte-corpo);
  font-weight: 600;
  min-height: 120px;
}

.cta {
  padding-top: 54px;
}

.cta__btn {
  background: var(--cor-azul-profundo);
}

.footer small {
  color: var(--cor-azul-profundo);
  font-weight: 800;
}

@media (max-width: 560px) {
  .hero {
    min-height: 82dvh;
    padding: 30px 20px 108px;
  }

  .hero__title {
    font-size: clamp(2.6rem, 15vw, 4.4rem);
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__btn {
    width: 100%;
  }

  .cards {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .link-card:nth-child(3) {
    grid-column: auto;
    width: 100%;
  }
}
