.whatsapp-text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.contact-hub {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  padding: 0 clamp(20px, 7vw, 112px) 110px;
  background: #070a11;
}

.contact-card {
  min-height: 360px;
  padding: clamp(34px, 5vw, 62px);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  overflow: hidden;
  position: relative;
}

.contact-card::before {
  content: "";
  width: 240px;
  height: 240px;
  position: absolute;
  top: -115px;
  right: -65px;
  border-radius: 50%;
  background: currentColor;
  filter: blur(75px);
  opacity: .2;
}

.whatsapp-card {
  color: #fff;
  background: linear-gradient(145deg, #0b3524, #07120e 72%);
}

.vip-card {
  color: #fff;
  background: linear-gradient(145deg, #0b2752, #100713 72%);
}

.contact-card .eyebrow {
  position: relative;
  color: #86f4ad;
}

.vip-card .eyebrow {
  color: #7cb9ff;
}

.contact-card h2 {
  position: relative;
  max-width: 560px;
  margin: 0;
  font: clamp(2rem, 3.5vw, 3.4rem)/1.02 "Archivo Black", sans-serif;
  letter-spacing: -.035em;
}

.contact-card > p:not(.eyebrow) {
  position: relative;
  max-width: 580px;
  margin: 20px 0 28px;
  color: #cbd8d1;
  font-size: 1rem;
}

.vip-card > p:not(.eyebrow) {
  color: #cad5e6;
}

.contact-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  color: #06120a;
  background: #25d366;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, filter .2s ease;
}

.contact-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.vip-button {
  color: #fff;
  background: linear-gradient(110deg, #0e7cff, #ff1d29);
}

.footer-links {
  grid-column: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  font-size: .86rem;
  font-weight: 700;
}

footer > p:not(.copyright) {
  grid-column: 1;
}

.copyright {
  grid-column: 2;
  grid-row: 1 / 4;
  align-self: center;
}

.footer-links a {
  color: #dbe6f8;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 35;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, .85);
  border-radius: 50%;
  color: #06120a;
  background: #25d366;
  box-shadow: 0 12px 34px rgba(0, 0, 0, .45);
  text-decoration: none;
  transition: transform .2s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px) scale(1.04);
}

.contact-button:focus-visible,
.floating-whatsapp:focus-visible,
.whatsapp-text-link:focus-visible,
.footer-links a:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}

.floating-whatsapp span {
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: -.03em;
}

@media (max-width: 900px) {
  .contact-hub {
    grid-template-columns: 1fr;
  }

  .copyright {
    grid-column: 1;
    grid-row: auto;
  }
}

@media (max-width: 580px) {
  .contact-hub {
    padding-bottom: 70px;
  }

  .contact-card {
    min-height: 390px;
    padding: 34px 24px;
  }

  .contact-button {
    width: 100%;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }
}
