/* ==========================================================
   FOOTER
   VIVA PIATÃ
========================================================== */

.footer {

  padding: 5rem 0 2rem;

  background: #0D2C3A;

  color: rgba(255,255,255,.82);

}

.footer .container {

  width: min(1200px, 92%);

  margin: 0 auto;

}


/* ==========================================================
   GRID
========================================================== */

.footer-grid {

  display: grid;

  grid-template-columns: 2fr 1fr 1fr 1fr;

  gap: 3rem;

  margin-bottom: 4rem;

}


/* ==========================================================
   IDENTIDADE
========================================================== */

.footer-brand img {

  width: 220px;

  max-width: 100%;

  display: block;

  margin-bottom: 1.8rem;

}

.footer-brand p {

  color: rgba(255,255,255,.78);

  font-size: 1rem;

  line-height: 1.9;

}

.footer-brand strong {

  color: #FFFFFF;

}


/* ==========================================================
   COLUNAS
========================================================== */

.footer-links h3 {

  margin-bottom: 1.4rem;

  color: #FFFFFF;

  font-size: 1rem;

  font-weight: 700;

  letter-spacing: .04rem;

}

.footer-links {

  display: flex;

  flex-direction: column;

}

.footer-links a {

  display: inline-flex;

  align-items: center;

  margin-bottom: .9rem;

  color: rgba(255,255,255,.75);

  text-decoration: none;

  transition: .25s ease;

}

.footer-links a:hover {

  color: #D7C28A;

  transform: translateX(6px);

}


/* ==========================================================
   RODAPÉ INFERIOR
========================================================== */

.footer-bottom {

  padding-top: 2rem;

  border-top: 1px solid rgba(255,255,255,.12);

  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 2rem;

  flex-wrap: wrap;

}

.footer-bottom p {

  margin: 0;

  color: rgba(255,255,255,.65);

  font-size: .95rem;

  line-height: 1.7;

}

.footer-bottom strong {

  color: #FFFFFF;

}


/* ==========================================================
   LINKS EXTERNOS
========================================================== */

.footer a[target="_blank"]::after {

  content: "↗";

  margin-left: .45rem;

  font-size: .8rem;

  opacity: .55;

  transition: .25s ease;

}

.footer a[target="_blank"]:hover::after {

  opacity: 1;

}


/* ==========================================================
   SELEÇÃO
========================================================== */

.footer ::selection {

  background: #1F4D3A;

  color: #FFFFFF;

}


/* ==========================================================
   RESPONSIVO
========================================================== */

@media (max-width: 1100px) {

  .footer-grid {

    grid-template-columns: repeat(2, 1fr);

  }

}

@media (max-width: 720px) {

  .footer {

    padding: 4rem 0 2rem;

  }

  .footer-grid {

    grid-template-columns: 1fr;

    gap: 2.5rem;

  }

  .footer-brand {

    text-align: center;

  }

  .footer-brand img {

    margin: 0 auto 1.8rem;

  }

  .footer-links {

    text-align: center;

  }

  .footer-links a {

    justify-content: center;

  }

  .footer-links a:hover {

    transform: none;

  }

  .footer-bottom {

    flex-direction: column;

    text-align: center;

    gap: 1rem;

  }

}

.footer{

  position: relative;

}

.footer::before{

  content:"";

  position:absolute;

  top:0;

  left:50%;

  transform:translateX(-50%);

  width:min(220px,40%);

  height:3px;

  background:linear-gradient(
      90deg,
      transparent,
      #D7C28A,
      transparent
  );

}

.footer-container {

    width:min(1200px,92%);
    margin:0 auto;

}