
/* RODApÉ */
.site-footer {
  background-color: #92402D;
  color: #F9F0D5;
  padding: 70px 47px 32px;
}

.footer-container {
  max-width: 1260px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 56px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 24px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-column h3 {
  font-family: var(--font-primary);
  font-size: 28px;
  margin-bottom: 18px;
  color: #F4E3AE;
  text-transform: uppercase;
}

.footer-column p,
.footer-column a {
  font-family: var(--font-primary);
  font-size: 15px;
  line-height: 1.3;
  color: #FFF;
  text-decoration: none;
}

.footer-column a {
  margin-bottom: 10px;
  transition: color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
  position: relative;
}

.footer-column a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background-color: rgba(249, 240, 213, 0.4);
  transition: background-color 0.3s ease;
}

.footer-column a:hover::after {
  background-color: #F4E3AE;
  color: #F4E3AE;
  transform: translateX(4px);
}

.footer-brand p {
  margin-bottom: 10px;
}
/* primeiro <p> (slogan) com bem mais respiro pra nao colar na descricao */
.footer-brand p:first-of-type {
  margin-bottom: 10px;
  font-style: regular;
  letter-spacing: 0.03em;
}

.footer-bottom {
  margin-top: 64px;
  text-align: center;
}

.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  margin-bottom: 22px;
}

.footer-social img {
  width: 34px;
  height: 34px;
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-social a:hover img {
  transform: translateY(-4px) scale(1.06);
  opacity: 0.75;
}

.footer-bottom p {
  font-family: Arial, sans-serif;
  font-size: 11px;
  line-height: 1.3;
  letter-spacing: 0.3px;
}

/* MOBILE */
@media (max-width: 768px) {
  .site-footer {
    padding: 56px 47px 28px;
  }

  .footer-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .footer-column {
    align-items: flex-start;
    text-align: left;
  }

  .footer-logo {
    width: 120px;
  }

  .footer-column h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .footer-column p,
  .footer-column a {
    font-size: 15px;
  }

  .footer-bottom {
    margin-top: 48px;
  }

  .footer-social img {
    width: 42px;
    height: 42px;
  }

  .footer-bottom p {
    font-size: 10px;
  }
}

/* FAIXA ANIMADA FOOTER
 */
 .footer-marquee {
   width: 100%;
   height: 60px;
   background-image: url("../img/elements/faixa.png");
   background-repeat: repeat-x;
   background-size: auto 60px;
   background-position: 0 0;
   animation: footerMarqueeLoop 8s linear infinite;
 }

 @keyframes footerMarqueeLoop {
   from {
     background-position-x: 0;
   }

   to {
     background-position-x: -500px;
   }
 }

 @media (max-width: 768px) {
   .footer-marquee {
     height: 45px;
     background-size: auto 45px;
   }
 }

/* PIN LOCALIAÇÃO */
.footer-location {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  text-decoration: none;
}

.footer-location span {
  color: #FFFFFF;
  font-family: var(--font-primary);
  font-size: 18px;
  line-height: 1.3;
}

.location-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

/* hover elegante */
.footer-location:hover .location-icon {
  transform: translateY(-2px);
}

.footer-location:hover span {
  color: #F4E3AE;
}

.policy-location{
  display: flex;
  align-items: center;
  gap: 10px;

  margin-top: 20px;

  color: #ffffff;
  text-decoration: none;

  font-size: 15px;
  font-weight: 500;

  transition: opacity 0.3s ease;
}

.policy-location:hover{
  opacity: 0.7;
}

.policy-location img{
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
}
