@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

.start-page footer.bg-card.border-t.border-border.py-12 {
  display: none !important;
}

.footer-v2 {
  background: #083264;
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.18); /* linha suave no início do rodapé */
  padding: 64px 24px 10px;
  min-height: 240px;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  font-family: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, sans-serif;
  font-size: 16px; /* Força a mesma base tipográfica entre start e landing */
}

.footer-v2::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #083264;
  z-index: 0;
  pointer-events: none;
}

.footer-v2__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: space-between;
  min-height: 100%;
  width: 100%;
  position: relative;
  z-index: 1;
}

.footer-v2__grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 0.95fr;
  gap: 36px;
  align-items: flex-start;
  text-align: left;
}

.footer-v2__brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 12px;
}

.footer-v2__logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.footer-v2__logo img {
  height: 48px;
  width: auto;
  display: block;
}

.footer-v2__description {
  margin: 0;
  font-size: 1em;
  line-height: 1.7;
  color: #ffffff;
  opacity: 0.92;
  font-weight: 400 !important;
}

.footer-v2__social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-v2__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: #ffffff;
  transition: transform 0.2s ease, color 0.2s ease;
}

.footer-v2__social a svg {
  width: 24px;
  height: 24px;
}

.footer-v2__icon-img {
  width: 28px;
  height: 28px;
  display: block;
}

.footer-v2__social a:hover {
  transform: translateY(-2px);
  color: #f18719;
}

.footer-v2__title {
  margin: 0 0 14px;
  font-weight: 600;
  font-size: 1.02rem;
  color: #ffffff;
}

.footer-v2__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.footer-v2__links a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 400 !important;
  font-size: 16px;
  line-height: 1.6;
  transition: color 0.2s ease;
}

.footer-v2__links a:hover {
  color: #f18719;
}

.footer-v2__contact {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-weight: 400 !important;
  font-size: 16px;
}

.footer-v2__contact svg {
  width: 18px;
  height: 18px;
}

.footer-v2__bottom {
  background: #083264;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding: 18px 0 12px;
  margin-top: 8px;
  font-size: 0.95em;
  color: #ffffff;
  font-weight: 400;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  width: 100%;
}

.footer-v2__bottom span {
  display: block;
  width: 100%;
}

/* ✅ Garantir tipografia idêntica ao landing na página start */
.start-page .footer-v2,
.start-page .footer-v2 p,
.start-page .footer-v2 a,
.start-page .footer-v2 span {
  font-size: 16px !important;
  line-height: 1.6;
}

@media (max-width: 640px) {
  .footer-v2 {
    padding: 40px 16px 28px;
    min-height: 0;
  }

  .footer-v2__grid {
    gap: 24px;
    margin-bottom: 16px;
  }
}
