.social-contact {
  background:
    radial-gradient(circle at 8% 18%, rgba(232, 216, 189, .48), transparent 31%),
    linear-gradient(135deg, #fffdf9 0%, #f5ece3 100%);
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 70px;
  align-items: start;
}

.social-contact h2 {
  font-size: clamp(45px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -.04em;
  margin: 18px 0 25px;
}

.social-contact-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.social-proof {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 11px;
  margin-top: 32px;
  padding-top: 22px;
  color: #7c6b5d;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.social-proof span::before {
  content: "✦";
  color: var(--gold);
  margin-right: 9px;
}

.social-contact-grid {
  display: grid;
  gap: 14px;
}

.social-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 22px;
  align-items: center;
  min-height: 164px;
  padding: 26px 30px;
  border: 1px solid rgba(95, 71, 50, .14);
  background: rgba(255, 253, 249, .9);
  box-shadow: 0 18px 55px rgba(87, 65, 45, .08);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}

.social-card::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(185, 149, 97, .2);
  border-radius: 50%;
  right: -75px;
  top: -90px;
}

.social-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 70px rgba(87, 65, 45, .14);
  border-color: rgba(185, 149, 97, .42);
}

.social-card.whatsapp {
  background: linear-gradient(135deg, #f8fff9, #edf8ef);
}

.social-card.instagram {
  background: linear-gradient(135deg, #fffaf6, #f4e6e3);
}

.social-icon {
  width: 58px;
  height: 58px;
  border: 1px solid #c9aa7e;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #846441;
  background: #fffdf9;
  font-family: Georgia, serif;
  font-size: 25px;
}

.social-card small {
  color: #9b774f;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .15em;
}

.social-card h3 {
  margin: 5px 0 6px;
  font-size: 31px;
  font-weight: 400;
}

.social-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 10px;
}

.social-card b {
  color: #7f6446;
  font-size: 11px;
}

.floating-contact {
  position: fixed;
  z-index: 60;
  right: 22px;
  bottom: 22px;
  display: flex;
  gap: 9px;
  align-items: center;
}

.floating-contact > a {
  min-width: 50px;
  height: 50px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid rgba(91, 72, 54, .18);
  border-radius: 999px;
  color: #755f49;
  background: rgba(255, 253, 249, .96);
  box-shadow: 0 14px 40px rgba(64, 56, 49, .18);
  font-family: Georgia, serif;
  font-size: 20px;
}

.floating-contact > a.whatsapp {
  color: #fff;
  background: #557f64;
  border-color: #557f64;
}

.floating-contact span {
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
}

footer {
  grid-template-columns: 1.1fr 1fr auto auto auto;
}

@media (max-width: 960px) {
  .social-contact { grid-template-columns: 1fr; gap: 42px; }
  footer { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .social-contact h2 { font-size: 43px; }
  .social-card { grid-template-columns: 52px 1fr; padding: 22px 18px; }
  .social-icon { width: 48px; height: 48px; font-size: 21px; }
  .floating-contact { right: 12px; bottom: 12px; }
  .floating-contact > a { height: 46px; min-width: 46px; padding: 0 13px; }
  footer { grid-template-columns: 1fr; padding-bottom: 88px; }
}
