/* FOOTER */
.site-footer{
  background: #2f667d;
  padding: 48px 0 56px 0;
}

.footer-inner{
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 64px;
}

.footer-grid{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.footer-col{
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-col-center{
  align-items: flex-start;
}

.footer-title{
  color: #d8a13a;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
}

.footer-title-spaced{
  margin-top: 22px;
}

.footer-text{
  color: #ffffff;
  font-size: 18px;
  line-height: 1.5;
  margin: 0;
  max-width: 520px;
}

.footer-social{
  display: flex;
  gap: 26px;
  align-items: center;
  margin-top: 6px;
}

.footer-social-link{
  width: 58px;
  height: 58px;
  border: 2px solid rgba(255,255,255,0.95);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-social-link:hover{
  transform: translateY(-2px);
  opacity: 0.9;
}

.footer-icon{
  width: 30px;
  height: 30px;
  fill: rgba(255,255,255,0.95);
}

/* HOVER PREMIUM - BOTÕES DE ORÇAMENTO (about-cta e contact-cta) */
.about-cta,
.contact-cta{
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.about-cta::before,
.contact-cta::before{
  content: "";
  position: absolute;
  top: -40%;
  left: -60%;
  width: 55%;
  height: 180%;
  background: linear-gradient(
    90deg,
    rgba(216,161,58,0) 0%,
    rgba(216,161,58,0.22) 45%,
    rgba(216,161,58,0.45) 55%,
    rgba(216,161,58,0) 100%
  );
  transform: rotate(18deg);
  opacity: 0;
  transition: opacity 0.18s ease;
  pointer-events: none;
}

.about-cta:hover,
.contact-cta:hover{
  transform: translateY(-2px);
  border-color: #d8a13a;
  box-shadow: 0 14px 32px rgba(0,0,0,0.18);
}

.about-cta:hover::before,
.contact-cta:hover::before{
  opacity: 1;
  animation: ctaShine 0.9s ease forwards;
}

.about-cta .about-cta-arrow,
.contact-cta .contact-cta-arrow{
  transition: transform 0.22s ease, color 0.22s ease;
}

.about-cta:hover .about-cta-arrow,
.contact-cta:hover .contact-cta-arrow{
  transform: translateX(8px);
  color: #d8a13a;
}

.about-cta:hover .about-cta-divider,
.contact-cta:hover .contact-cta-divider{
  opacity: 1;
}

/* Acessibilidade: foco no teclado */
.about-cta:focus-visible,
.contact-cta:focus-visible{
  outline: 3px solid rgba(216,161,58,0.55);
  outline-offset: 4px;
}

@keyframes ctaShine{
  0%{ left: -60%; }
  100%{ left: 120%; }
}

.footer-social-link i{
  font-size: 34px;          /* tamanho do ícone */
  color: #ffffff;           /* mesma cor dos ícones */
  line-height: 1;
  display: inline-block;
}

.footer-social-link:hover i{
  transform: translateY(-2px);
  transition: transform .2s ease, color .2s ease;
  color: #d8a13a;           /* amarelo do hover */
}

/* =========================
   RESPONSIVO - FOOTER
   (Notebook / Tablet / Celular)
   Cole no FINAL do CSS
   ========================= */

/* ---------- NOTEBOOK (<= 1366px) ---------- */
@media (max-width: 1366px) {
  .site-footer{
    padding: 44px 0 52px 0;
  }

  .footer-inner{
    padding: 0 40px;
  }

  .footer-grid{
    gap: 44px;
  }

  .footer-text{
    font-size: 16px;
    max-width: 460px;
  }

  .footer-title{
    font-size: 16px;
  }

  .footer-social{
    gap: 18px;
  }

  .footer-social-link{
    width: 52px;
    height: 52px;
    border-radius: 12px;
  }

  .footer-icon{
    width: 26px;
    height: 26px;
  }

  .footer-social-link i{
    font-size: 30px;
  }
}


/* ---------- TABLET (<= 1024px) ---------- */
@media (max-width: 1024px) {
  .site-footer{
    padding: 40px 0 46px 0;
  }

  .footer-inner{
    padding: 0 28px;
  }

  .footer-grid{
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  /* Faz a 3ª coluna "descer" e ocupar toda a largura (fica bonito em 2 linhas) */
  .footer-col:nth-child(3){
    grid-column: 1 / -1;
  }

  .footer-title{
    font-size: 16px;
  }

  .footer-title-spaced{
    margin-top: 16px;
  }

  .footer-text{
    font-size: 16px;
    max-width: 100%;
  }

  .footer-social{
    gap: 16px;
  }

  .footer-social-link{
    width: 50px;
    height: 50px;
    border-radius: 12px;
  }

  .footer-social-link i{
    font-size: 28px;
  }
}


/* ---------- CELULAR (<= 768px) ---------- */
@media (max-width: 768px) {
  .site-footer{
    padding: 34px 0 40px 0;
  }

  .footer-inner{
    padding: 0 18px;
  }

  .footer-grid{
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* remove a regra do tablet pra 3ª coluna */
  .footer-col:nth-child(3){
    grid-column: auto;
  }

  .footer-title{
    font-size: 15px;
  }

  .footer-title-spaced{
    margin-top: 12px;
  }

  .footer-text{
    font-size: 15px;
    line-height: 1.55;
  }

  .footer-social{
    gap: 14px;
    flex-wrap: wrap;
  }

  .footer-social-link{
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }

  .footer-social-link i{
    font-size: 26px;
  }
}


/* ---------- CELULAR PEQUENO (<= 480px) - opcional ---------- */
@media (max-width: 480px) {
  .footer-social-link{
    width: 46px;
    height: 46px;
  }

  .footer-social-link i{
    font-size: 24px;
  }
}
