* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: #eef5f0;
}

body.mobile-links-page {
  min-height: 100dvh;
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: #142018;
  background:
    linear-gradient(180deg, rgba(238, 245, 240, 0.96) 0%, rgba(255, 255, 255, 0.94) 100%),
    #eef5f0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.mobile-links-shell {
  width: min(100%, 460px);
  min-height: 100dvh;
  margin: 0 auto;
  padding: max(18px, env(safe-area-inset-top)) 14px max(18px, env(safe-area-inset-bottom));
  display: grid;
  place-items: center;
}

.mobile-links-card {
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(20, 32, 24, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 54px rgba(20, 32, 24, 0.14);
}

.mobile-links-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111814;
}

.mobile-links-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.mobile-links-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 24, 20, 0.04), rgba(17, 24, 20, 0.48));
  pointer-events: none;
}

.mobile-links-content {
  position: relative;
  padding: 0 18px 20px;
}

.mobile-links-logo {
  width: 96px;
  height: 96px;
  margin: -48px auto 14px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(20, 83, 45, 0.14);
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(20, 32, 24, 0.16);
}

.mobile-links-logo img {
  width: 76px;
  height: 76px;
  display: block;
  object-fit: contain;
}

.mobile-links-kicker,
.mobile-links-intro,
.mobile-links-note {
  margin: 0;
  text-align: center;
}

.mobile-links-kicker {
  color: #155e36;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.mobile-links-content h1 {
  margin: 6px 0 4px;
  color: #132019;
  font-size: clamp(2.2rem, 13vw, 3.1rem);
  font-weight: 800;
  line-height: 0.98;
  text-align: center;
}

.mobile-links-intro {
  color: #4c5a51;
  font-size: 0.98rem;
  line-height: 1.55;
}

.mobile-links-list {
  display: grid;
  gap: 11px;
  margin-top: 22px;
}

.mobile-link-button {
  min-height: 68px;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 12px;
  padding: 11px 13px;
  border: 1px solid rgba(19, 28, 39, 0.08);
  border-radius: 8px;
  color: #132019;
  text-decoration: none;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(20, 32, 24, 0.07);
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.mobile-link-button:active {
  transform: scale(0.985);
}

.mobile-link-button:focus-visible {
  outline: 3px solid rgba(21, 94, 54, 0.28);
  outline-offset: 3px;
}

.mobile-link-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #ffffff;
  font-size: 1.2rem;
}

.link-site .mobile-link-icon {
  background: #155e36;
}

.link-whatsapp .mobile-link-icon {
  background: #22a85a;
}

.link-email .mobile-link-icon {
  background: #2563eb;
}

.link-instagram .mobile-link-icon {
  background: #c13584;
}

.link-youtube .mobile-link-icon {
  background: #c91919;
}

.mobile-link-button strong,
.mobile-link-button small {
  display: block;
  overflow-wrap: anywhere;
}

.mobile-link-button strong {
  color: #132019;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
}

.mobile-link-button small {
  margin-top: 3px;
  color: #5b685f;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.25;
}

.mobile-link-arrow {
  color: #8b978f;
  font-size: 0.82rem;
}

.mobile-links-note {
  margin-top: 18px;
  color: #155e36;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.45;
}

@media (min-width: 560px) {
  body.mobile-links-page {
    background:
      linear-gradient(135deg, rgba(21, 94, 54, 0.14), rgba(250, 204, 21, 0.12)),
      #f5f7f3;
  }

  .mobile-links-shell {
    padding: 34px 20px;
  }
}

@media (max-width: 360px) {
  .mobile-links-shell {
    padding-left: 10px;
    padding-right: 10px;
  }

  .mobile-links-content {
    padding-left: 14px;
    padding-right: 14px;
  }

  .mobile-link-button {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 10px;
    padding: 10px;
  }

  .mobile-link-icon {
    width: 42px;
    height: 42px;
  }

  .mobile-link-button small {
    font-size: 0.78rem;
  }

  .mobile-link-arrow {
    display: none;
  }
}
