/*
 * 🇬🇧 ENGLISH
 * FOOTER STYLING
 * Applying the Art Déco aesthetics and the institutional Porto-inspired layout
 *
 * 🇧🇷 PORTUGUÊS BRASILEIRO
 * ESTILIZAÇÃO DO RODAPÉ
 * Aplicando a estética Art Déco e o layout institucional inspirado no Porto
 */

.site-footer
{
  background-color: var(--palette-red-01);
  color: var(--palette-white);
  overflow: hidden;
  padding: 80px 20px 40px 20px;
  position: relative;
}

.footer-background-skyline
{
  background-image: url('../images/horizonte-do-monumento-aos-navegantes.svg');
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 0;
  height: 100%;
  left: 50%;
  opacity: 0.15;
  pointer-events: none;
  position: absolute;
  transform: translateX(-50%);
  width: 100%;
  z-index: 1;
}

.site-footer .container
{
  position: relative;
  z-index: 2;
}

.footer-top-tier
{
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-logo
{
  height: 100px;
  width: auto;
}

.cta-newsletter-button
{
  background-color: var(--palette-white);
  border-radius: 4px;
  color: var(--palette-red-02);
  display: inline-block;
  font-weight: 700;
  padding: 10px 25px;
  text-decoration: none;
  transition: transform 0.3s var(--transition-ease);
}

.footer-socials
{
  display: flex;
  gap: 15px;
}

.social-link img
{
  height: 24px;
  transition: opacity 0.3s ease;
  width: 24px;
}

.footer-divider
{
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin: 40px 0;
}

.footer-grid
{
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(4, 1fr);
  text-align: left;
}

.column-title
{
  font-family: var(--lusitana);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.column-links
{
  font-family: var(--barlow);
  list-style: none;
  margin: 0;
  padding: 0;
}

.column-links li
{
  padding-bottom: 5px;
  padding-top: 5px;
}

.column-links a
{
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom-bar
{
  margin-top: 60px;
  padding-top: 30px;
  text-align: center;
}