@font-face {
  font-family: "Solution Social";
  src: url("../fonts/solution-dsocial-icons.woff") format("woff");
  font-style: normal;
  font-weight: normal;
  font-display: block;
}

:root {
  --green: #236144;
  --green-dark: #174d35;
  --green-light: #3ca663;
  --red: #e83b43;
  --gold: #aca74d;
  --ink: #1d2420;
  --muted: #626c66;
  --paper: #ffffff;
  --line: #edf0ed;
  --shadow: 0 10px 28px rgba(32, 66, 48, 0.09);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background: #eef1ee;
  font-family: "Roboto", "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.site-shell {
  width: min(100%, 560px);
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 0 42px rgba(28, 55, 40, 0.12);
}

.topbar {
  position: relative;
  z-index: 5;
  display: flex;
  min-height: 96px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 22px 15px;
  background: rgba(255, 255, 255, 0.98);
}

.brand {
  display: flex;
  width: 198px;
  align-items: center;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.header-action {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 17px;
  color: #fff;
  background: linear-gradient(135deg, #2a6d4c, var(--green-dark));
  border-radius: 999px;
  box-shadow: 0 7px 16px rgba(23, 77, 53, 0.18);
  font-size: 0.9rem;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.header-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(23, 77, 53, 0.26);
}

.social-glyph {
  font-family: "Solution Social" !important;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  speak: none;
}

.icon-social-facebook::before { content: "\6b"; }
.icon-social-instagram::before { content: "\6f"; }
.icon-social-whatsapp::before { content: "\44"; }
.icon-social-telegram::before { content: "\53"; }
.icon-social-tiktok::before { content: "\54"; }

.header-action .social-glyph {
  font-size: 1.75rem;
}

.hero {
  position: relative;
  height: 330px;
  overflow: hidden;
  background: #f7f3ec;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 61% center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 253, 249, 0.98) 0%, rgba(255, 253, 249, 0.86) 27%, rgba(255, 253, 249, 0.16) 49%, rgba(255, 253, 249, 0) 64%),
    linear-gradient(0deg, rgba(23, 77, 53, 0.72) 0%, transparent 18%);
}

.hero::after {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -45px;
  height: 98px;
  background: #fff;
  border-radius: 50% 45% 0 0 / 58% 58% 0 0;
  transform: rotate(-2deg);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: 51%;
  padding: 42px 0 0 30px;
}

.hero h1 {
  margin: 0;
  color: var(--green-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.45rem, 10vw, 3.7rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

.hero h1 em {
  color: var(--red);
  font-style: normal;
}

.hero-copy > p:last-child {
  max-width: 255px;
  margin: 16px 0 0;
  color: #3e4943;
  font-size: 0.9rem;
  line-height: 1.55;
}

.social-section {
  padding: 24px 20px 30px;
}

.section-heading {
  margin-bottom: 23px;
  text-align: center;
}

.section-heading > p {
  margin: 0 0 5px;
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  color: var(--green-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 7vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.035em;
}

.section-heading h2 em {
  color: var(--red);
  font-style: normal;
}

.heading-mark {
  display: block;
  width: 44px;
  height: 3px;
  margin: 13px auto 0;
  background: linear-gradient(90deg, var(--green) 0 55%, var(--gold) 55% 100%);
  border-radius: 10px;
}

.link-list {
  display: grid;
  gap: 11px;
}

.social-link {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 28px;
  min-height: 78px;
  align-items: center;
  gap: 14px;
  padding: 11px 15px 11px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 19px;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.social-link:hover {
  transform: translateY(-2px);
  border-color: rgba(35, 97, 68, 0.22);
  box-shadow: 0 14px 34px rgba(32, 66, 48, 0.13);
}

.social-link.catalog {
  color: #fff;
  background: linear-gradient(135deg, #2a6d4c, var(--green-dark));
  border-color: transparent;
  box-shadow: 0 12px 28px rgba(23, 77, 53, 0.2);
}

.social-link.catalog:hover {
  border-color: transparent;
  box-shadow: 0 16px 34px rgba(23, 77, 53, 0.27);
}

.catalog .link-copy small {
  color: rgba(255, 255, 255, 0.75);
}

.catalog .link-arrow {
  color: #fff;
}

.network-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  font-size: 2rem;
}

.facebook .network-icon { background: #1877f2; }
.instagram .network-icon { background: linear-gradient(145deg, #7335bd, #df2d76 62%, #f6a23c); }
.tiktok .network-icon { background: #101010; }
.telegram .network-icon { background: #25a8e0; }
.whatsapp .network-icon { background: #18c96e; }

.catalog-glyph {
  color: var(--green-dark);
  background: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  font-weight: 700;
}

.google-glyph {
  color: #fff;
  background: conic-gradient(from -35deg, #4285f4 0 28%, #34a853 28% 47%, #fbbc05 47% 66%, #ea4335 66% 100%);
  font-family: Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.link-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 4px;
}

.link-copy strong {
  overflow: hidden;
  font-size: 1rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.link-copy small {
  overflow: hidden;
  color: var(--muted);
  font-size: 0.78rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.link-arrow {
  color: var(--green-light);
  font-family: Georgia, serif;
  font-size: 2.1rem;
  line-height: 1;
  text-align: right;
}

.contact-card {
  margin-top: 26px;
  overflow: hidden;
  background: #fbfcfa;
  border: 1px solid rgba(35, 97, 68, 0.13);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.contact-heading {
  padding: 20px 20px 15px;
}

.contact-heading p {
  margin: 0 0 5px;
  color: var(--gold);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-heading h2 {
  margin: 0;
  color: var(--green-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.2;
}

.contact-details {
  display: grid;
  font-style: normal;
}

.contact-row {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  padding: 14px 18px;
  border-top: 1px solid var(--line);
}

.contact-row > span:nth-child(2),
.phone-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 5px;
}

.contact-row strong {
  color: var(--ink);
  font-size: 0.88rem;
  font-style: normal;
}

.contact-row small {
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.45;
}

.contact-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--green-dark);
  background: rgba(35, 97, 68, 0.09);
  border-radius: 12px;
  font-size: 1rem;
}

.contact-arrow {
  color: var(--green-light);
  font-family: Georgia, serif;
  font-size: 1.8rem;
}

.phone-row {
  grid-template-columns: 38px minmax(0, 1fr);
}

.phone-links {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.phone-links a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 11px;
  color: var(--green-dark);
  background: #fff;
  border: 1px solid rgba(35, 97, 68, 0.16);
  border-radius: 999px;
  font-size: 0.77rem;
  font-weight: 700;
}

.phone-links a:hover {
  color: #fff;
  background: var(--green-dark);
}

.promo-card {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  margin: 0 20px 30px;
  padding: 20px 17px;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 20%, rgba(239, 36, 56, 0.1), transparent 9rem),
    linear-gradient(135deg, #fbf6f0, #fff);
  border: 1px solid #f2e9e2;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.gift {
  position: relative;
  width: 70px;
  height: 58px;
  margin-top: 12px;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 8px 18px rgba(58, 49, 42, 0.1);
}

.gift::before {
  content: "";
  position: absolute;
  left: 29px;
  top: -5px;
  width: 13px;
  height: 63px;
  background: var(--red);
}

.gift::after {
  content: "";
  position: absolute;
  left: -5px;
  top: -9px;
  width: 80px;
  height: 13px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 3px 8px rgba(58, 49, 42, 0.09);
}

.gift span::before,
.gift span::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: -26px;
  width: 28px;
  height: 22px;
  border: 8px solid var(--red);
  border-radius: 50% 50% 8px 50%;
}

.gift span::before {
  left: 10px;
  transform: rotate(18deg);
}

.gift span::after {
  right: 9px;
  transform: scaleX(-1) rotate(18deg);
}

.promo-copy h2 {
  margin: 0;
  color: var(--green-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
  line-height: 1.22;
}

.promo-copy h2 em {
  color: var(--red);
  font-style: normal;
}

.promo-copy p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.77rem;
  line-height: 1.4;
}

.footer {
  padding: 25px 18px;
  color: #fff;
  background: var(--green-dark);
  text-align: center;
}

.footer p {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  font-size: 0.82rem;
}

.footer i {
  width: 1px;
  height: 17px;
  background: rgba(255, 255, 255, 0.45);
}

.footer strong {
  color: #d8cc68;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 600;
}

:focus-visible {
  outline: 3px solid rgba(239, 36, 56, 0.5);
  outline-offset: 4px;
}

@media (min-width: 500px) {
  body {
    padding: 24px 0;
  }

  .site-shell {
    min-height: calc(100vh - 48px);
    border-radius: 18px;
  }

}

@media (max-width: 390px) {
  .topbar {
    min-height: 98px;
    padding-inline: 16px;
  }

  .brand {
    width: 164px;
  }

  .header-action {
    width: 46px;
    padding: 0;
  }

  .header-action > span:last-child {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .hero {
    height: 315px;
  }

  .hero-copy {
    width: 62%;
    padding-left: 20px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-copy > p:last-child {
    font-size: 0.82rem;
  }

  .social-section {
    padding-inline: 14px;
  }

  .social-link {
    grid-template-columns: 50px minmax(0, 1fr) 22px;
    gap: 11px;
    padding-right: 12px;
  }

  .contact-row {
    padding-inline: 14px;
  }

  .phone-links {
    flex-direction: column;
    align-items: flex-start;
  }

  .network-icon {
    width: 50px;
    height: 50px;
  }

  .promo-card {
    grid-template-columns: 66px minmax(0, 1fr);
    gap: 11px;
    margin-inline: 14px;
  }

  .gift {
    width: 58px;
    height: 50px;
  }

  .gift::before {
    left: 24px;
    width: 11px;
    height: 55px;
  }

  .gift::after {
    width: 68px;
  }

  .gift span::before,
  .gift span::after {
    width: 24px;
    height: 19px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
