/* ======================================================
   FOOTER
   ====================================================== */

.site-footer {
  position: relative;
  color: #ffffff;
  background-color: #263e4f;
  overflow: hidden;
}


/* ------ CTA SUPERIOR ----- */

.site-footer-cta {
  position: relative;
  width: calc(100% - 84px);
  min-height: 380px;
  margin: 42px auto 0;
  border-radius: 32px;
  overflow: hidden;
  background-color: #07111f;
}

.site-footer-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 0%, rgba(115, 199, 211, 0.28) 0%, rgba(115, 199, 211, 0) 34%),
    linear-gradient(
      180deg,
      rgba(38, 62, 79, 0.08) 0%,
      rgba(38, 62, 79, 0.7) 54%,
      rgba(115, 199, 211, 0.62) 100%
    );
}

.site-footer-cta-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 100%),
    linear-gradient(60deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 100%);
  background-size: 88px 88px;
}

.site-footer-cta-content {
  position: relative;
  z-index: 2;
  min-height: 380px;
  max-width: 760px;
  margin: 0 auto;
  padding: 70px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.site-footer-cta-avatars {
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-footer-cta-avatars span {
  width: 60px;
  height: 60px;
  margin-left: -8px;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.site-footer-cta-avatars span:first-child {
  margin-left: 0;
}

.site-footer-cta-avatars img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-footer-cta-kicker {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.76);
  font-family: var(--font-secondary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer-cta h2 {
  max-width: 760px;
  margin: 0 0 14px;
  color: #ffffff;
  font-family: var(--font-secondary);
  font-size: clamp(2.4rem, 5.2vw, 5.2rem);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.site-footer-cta p {
  max-width: 580px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-family: var(--font-primary);
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.6;
}

.site-footer-cta-actions {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.site-footer-cta-button {
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #07111f;
  background-color: #ffffff;
  text-decoration: none;
  font-family: var(--font-secondary);
  font-size: 0.88rem;
  font-weight: 400;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease;
}

.site-footer-cta-button:hover {
  color: #07111f;
  background-color: #abcb03;
  transform: translateY(-2px);
}

.site-footer-cta-button i {
  font-size: 1rem;
}

.site-footer-cta-handle {
  min-height: 50px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.88);
  background-color: rgba(255, 255, 255, 0.08);
  font-family: var(--font-secondary);
  font-size: 0.86rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
}


/* ------ CONTEÚDO PRINCIPAL ----- */

.site-footer-main {
  padding: 84px 0 48px;
}

.site-footer-container {
  padding-left: 42px;
  padding-right: 42px;
  display: grid;
  grid-template-columns: 1.1fr 2.8fr;
  gap: 76px;
}

.site-footer-brand {
  max-width: 340px;
}

.site-footer-logo {
  width: 210px;
  display: inline-flex;
  margin-bottom: 28px;
}

.site-footer-logo img {
  width: 100%;
  height: auto;
}

.site-footer-brand p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.7;
}

.site-footer-socials {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-footer-socials a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.06);
  text-decoration: none;
  font-size: 0.95rem;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
}

.site-footer-socials a:hover {
  color: #263e4f;
  background-color: #ffffff;
  transform: translateY(-2px);
}

.site-footer-nav {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 34px;
}

.site-footer-column {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.site-footer-column h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-family: var(--font-secondary);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.site-footer-column a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.58);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 400;
  line-height: 1.32;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.site-footer-column a:hover {
  color: #ffffff;
  transform: translateX(4px);
}


/* ------ BASE ----- */

.site-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer-bottom-container {
  min-height: 76px;
  padding-left: 42px;
  padding-right: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.78rem;
  font-weight: 500;
}

.site-footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.site-footer-bottom-links a {
  color: rgba(255, 255, 255, 0.46);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
}

.site-footer-bottom-links a:hover {
  color: #ffffff;
}


/* ------ RESPONSIVO ----- */

@media (max-width: 1199.98px) {
  .site-footer-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .site-footer-container {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .site-footer-brand {
    max-width: 520px;
  }
}

@media (max-width: 991.98px) {
  .site-footer-cta {
    width: calc(100% - 48px);
    margin-top: 32px;
  }

  .site-footer-container,
  .site-footer-bottom-container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .site-footer-main {
    padding: 68px 0 42px;
  }
}

@media (max-width: 767.98px) {
  .site-footer-cta {
    width: calc(100% - 28px);
    min-height: 360px;
    margin-top: 24px;
    border-radius: 24px;
  }

  .site-footer-cta-content {
    min-height: 360px;
    padding: 56px 20px;
  }

  .site-footer-cta h2 {
    font-size: clamp(2.3rem, 12vw, 4.2rem);
  }

  .site-footer-nav {
    grid-template-columns: 1fr 1fr;
    gap: 34px 24px;
  }

  .site-footer-logo {
    width: 180px;
  }

  .site-footer-bottom-container {
    min-height: auto;
    padding-top: 24px;
    padding-bottom: 24px;
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .site-footer-nav {
    grid-template-columns: 1fr;
  }

  .site-footer-cta-actions {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }

  .site-footer-cta-button,
  .site-footer-cta-handle {
    width: 100%;
    justify-content: center;
  }
}