:root {
  --red: #da291c;
  --red-dark: #a9160d;
  --yellow: #ffd502;
  --yellow-deep: #f9a814;
  --green: #25d366;
  --green-dark: #0f7b3f;
  --ink: #171717;
  --muted: #5f6368;
  --cream: #fffaf0;
  --white: #ffffff;
  --shell: 1240px;
  --shadow: 0 18px 44px rgba(23, 23, 23, .12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; }

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

.hero {
  position: relative;
  min-height: min(720px, calc(100vh - 24px));
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(112deg, rgba(218, 41, 28, .99) 0 38%, rgba(255, 213, 2, .94) 38% 59%, rgba(255, 255, 255, .98) 59% 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 110px;
  background: linear-gradient(180deg, transparent, #fff);
  pointer-events: none;
}

.hero__studs {
  position: absolute;
  inset: 0;
  opacity: .11;
  background-image: radial-gradient(circle, rgba(255,255,255,.9) 0 7px, rgba(0,0,0,.2) 8px, transparent 9px);
  background-size: 46px 46px;
  mask-image: linear-gradient(90deg, #000 0, transparent 48%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  min-height: min(720px, calc(100vh - 24px));
  padding: 24px 0 72px;
}

.brand {
  position: relative;
  z-index: 4;
  display: inline-grid;
  justify-items: center;
  padding: 9px 12px 8px;
  border: 3px solid #fff;
  border-radius: 14px;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  text-shadow: 0 2px 0 rgba(0,0,0,.32);
  box-shadow: 0 7px 0 var(--yellow), 0 12px 20px rgba(0,0,0,.18);
  transform: rotate(-3deg);
  transition: transform .2s ease, box-shadow .2s ease;
}

.brand:hover,
.brand:focus-visible {
  transform: rotate(0) translateY(-2px);
  box-shadow: 0 9px 0 var(--yellow), 0 16px 24px rgba(0,0,0,.2);
}

.brand__line {
  font-size: 20px;
  font-weight: 950;
  letter-spacing: -.04em;
  line-height: .78;
}

.brand__line--top { color: var(--yellow); }
.brand__line--bottom { font-size: 17px; }

.hero__figure {
  position: absolute;
  right: clamp(14px, 4vw, 70px);
  bottom: clamp(74px, 10vh, 118px);
  width: clamp(120px, 14vw, 190px);
  height: auto;
  filter: drop-shadow(0 20px 28px rgba(23,23,23,.2));
  animation: figure-float 4s ease-in-out infinite;
}

.hero__content {
  display: grid;
  justify-items: center;
  width: min(100%, 980px);
  margin: clamp(48px, 8vh, 90px) auto 0;
  text-align: center;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0,0,0,.22);
}

.eyebrow span { width: 38px; height: 3px; background: var(--yellow); }

.hero__title {
  max-width: 980px;
  margin: 0;
  color: #fff;
  font-size: clamp(54px, 7.1vw, 92px);
  font-weight: 950;
  letter-spacing: -.055em;
  line-height: .88;
  text-transform: uppercase;
  -webkit-text-stroke: 1px rgba(0,0,0,.82);
  paint-order: stroke fill;
  text-shadow: 0 10px 28px rgba(0,0,0,.2);
}

.hero__title span {
  display: block;
  color: var(--red);
  -webkit-text-stroke: 1px #fff;
  text-shadow: 0 8px 20px rgba(0,0,0,.22);
}

.hero__intro {
  max-width: 780px;
  margin: 22px 0 0;
  padding: 11px 18px;
  border: 2px solid var(--yellow);
  border-radius: 9px;
  background: var(--red);
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 800;
  line-height: 1.35;
  box-shadow: 0 5px 0 rgba(0,0,0,.16);
}

.sketch-arrow {
  width: 90px;
  height: 54px;
  margin: 2px 0 -2px;
  color: #fff;
  filter: drop-shadow(0 3px 0 rgba(0,0,0,.18));
  transform: rotate(9deg);
}

.sketch-arrow svg { width: 100%; height: 100%; overflow: visible; }
.sketch-arrow path { fill: none; stroke: currentColor; stroke-width: 7; stroke-linecap: round; stroke-linejoin: round; }

.button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  overflow: hidden;
  color: #fff;
  font-weight: 950;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition: background-color .6s cubic-bezier(.16,1,.3,1), color .6s cubic-bezier(.16,1,.3,1), box-shadow .3s ease, transform .22s ease;
}

.button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  z-index: -1;
  width: max(120px, 48%);
  height: 140%;
  background: rgba(255,255,255,.24);
  transform: translate3d(-180%,-50%,0) skewX(30deg);
  transition: transform 1.35s cubic-bezier(.22,1,.36,1), background-color .28s ease;
}

.button:hover::before,
.button:focus-visible::before { transform: translate3d(290%,-50%,0) skewX(30deg); }
.button:active { transform: scale(.95); }
.button:focus-visible { outline: 3px solid rgba(37,211,102,.34); outline-offset: 4px; }
.button__label, .button__icon, .button__arrow, .button__whatsapp { position: relative; z-index: 1; }
.button__arrow { font-size: 24px; }

.button--hero {
  width: min(100%, 630px);
  min-height: 104px;
  padding: 0 32px;
  border: 2px solid #fff;
  border-radius: 13px;
  background: var(--green);
  box-shadow: 0 5px 0 2px var(--green-dark);
  font-size: clamp(18px, 2vw, 25px);
  text-transform: uppercase;
}

.button--hero:hover,
.button--hero:focus-visible {
  background: #fff;
  color: #16a34a;
  border-color: var(--green);
  box-shadow: 0 3px 0 2px var(--green-dark);
  transform: translateY(-2px);
}

.button--hero:hover::before,
.button--hero:focus-visible::before { background: rgba(218,41,28,.72); }

.block-icon {
  display: inline-block;
  width: 42px;
  height: 34px;
  border: 3px solid currentColor;
  border-radius: 5px;
}

.block-icon::before,
.block-icon::after,
.block-icon i::before {
  content: "";
  position: absolute;
  top: -10px;
  width: 10px;
  height: 8px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 4px 4px 0 0;
}

.block-icon::before { left: 3px; }
.block-icon::after { right: 3px; }
.block-icon i::before { left: 50%; transform: translateX(-50%); }

.gift-bar {
  position: relative;
  z-index: 4;
  margin-top: -18px;
  border-top: 1px solid rgba(23,23,23,.12);
  border-bottom: 1px solid rgba(23,23,23,.12);
  background: #fff;
  box-shadow: 0 14px 28px rgba(23,23,23,.08);
}

.gift-bar__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding-block: 22px;
}

.gift-bar__copy { display: grid; gap: 5px; }
.gift-bar__copy p, .gift-bar__copy h2 { margin: 0; }
.gift-bar__kicker { color: var(--red) !important; font-size: 12px; font-weight: 950; letter-spacing: .14em; text-transform: uppercase; }

.gift-bar__copy h2 {
  font-size: clamp(20px, 2.4vw, 31px);
  font-weight: 950;
  letter-spacing: -.025em;
  line-height: 1.05;
  text-transform: uppercase;
}

.gift-bar__copy h2 span {
  display: inline-block;
  padding: 5px 9px;
  border-radius: 5px;
  background: var(--green);
  color: #fff;
  font-size: .6em;
  letter-spacing: 0;
  vertical-align: middle;
}

.gift-bar__copy > p:last-child { color: var(--muted); font-family: Arial, sans-serif; font-size: 15px; font-weight: 700; line-height: 1.4; }

.button--whatsapp {
  min-width: 290px;
  min-height: 62px;
  padding: 0 24px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 4px 0 1px var(--green-dark);
  font-size: 17px;
}

.button--whatsapp:hover,
.button--whatsapp:focus-visible { background: #fff; color: #16a34a; border-color: var(--green); transform: translateY(-2px); }
.button__whatsapp { width: 29px; height: 29px; fill: currentColor; }

.collection { padding: 82px 0 94px; background: #fff; }

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.section-heading p, .section-heading h2 { margin: 0; }
.section-heading__kicker { color: var(--red); font-size: 12px; font-weight: 950; letter-spacing: .14em; text-transform: uppercase; }
.section-heading h2 { margin-top: 7px; font-size: clamp(34px, 4vw, 55px); letter-spacing: -.05em; line-height: .95; text-transform: uppercase; }
.text-link { color: var(--red); font-size: 15px; font-weight: 950; text-decoration: none; text-transform: uppercase; }
.text-link span { display: inline-block; transition: transform .2s ease; }
.text-link:hover span, .text-link:focus-visible span { transform: translateX(5px); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  min-width: 0;
  padding: 2px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--red), var(--yellow) 48%, var(--red));
  box-shadow: 0 16px 34px rgba(218,41,28,.12);
  text-decoration: none;
  transition: transform .24s ease, box-shadow .24s ease, filter .24s ease;
}

.product-card:hover,
.product-card:focus-visible {
  filter: saturate(1.08);
  outline: none;
  box-shadow: 0 24px 46px rgba(218,41,28,.2);
  transform: translateY(-7px);
}

.product-card article { height: 100%; overflow: hidden; border-radius: 20px; background: #fff; }

.product-card__media { position: relative; padding: 14px; overflow: hidden; }
.product-card__media::after { content: ""; position: absolute; inset: 14px; border-radius: 16px; box-shadow: inset 0 0 0 1px rgba(23,23,23,.06); pointer-events: none; }
.product-card__media img { width: 100%; aspect-ratio: 1; border-radius: 16px; object-fit: cover; transition: transform .45s cubic-bezier(.16,1,.3,1); }
.product-card:hover img, .product-card:focus-visible img { transform: scale(1.045) rotate(-1deg); }

.product-card__badge {
  position: absolute;
  top: 25px;
  left: 24px;
  z-index: 2;
  padding: 6px 9px;
  border-radius: 5px;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .08em;
}

.product-card__badge--green { background: var(--green-dark); }
.product-card__badge--yellow { background: var(--yellow); color: var(--ink); }

.product-card__body { display: grid; gap: 8px; padding: 4px 18px 20px; }
.product-card__body p, .product-card__body h3 { margin: 0; }
.product-card__body p { color: var(--red); font-size: 10px; font-weight: 950; letter-spacing: .1em; text-transform: uppercase; }
.product-card__body h3 { min-height: 46px; font-size: 19px; letter-spacing: -.025em; line-height: 1.18; }

.pill-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  min-height: 44px;
  margin-top: 7px;
  padding: 0 15px;
  border-radius: 999px;
  background: linear-gradient(145deg, var(--yellow) 0, #f97316 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .03em;
  text-transform: uppercase;
  box-shadow: 0 5px 12px rgba(249,115,22,.18);
  transition: transform .18s ease, box-shadow .18s ease;
}

.product-card:hover .pill-button,
.product-card:focus-visible .pill-button { box-shadow: 0 10px 18px rgba(249,115,22,.26); transform: translateY(-2px); }
.pill-button b { font-size: 17px; }

.features { padding: 38px 0; background: var(--cream); border-block: 1px solid rgba(23,23,23,.08); }
.features__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.feature { display: grid; grid-template-columns: auto 1fr; gap: 16px; padding: 12px 28px; border-right: 1px solid rgba(23,23,23,.12); }
.feature:last-child { border-right: 0; }
.feature__number { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 10px; background: var(--red); color: var(--yellow); box-shadow: 0 4px 0 var(--yellow); font-size: 16px; font-weight: 950; }
.feature h2, .feature p { margin: 0; }
.feature h2 { font-size: 17px; text-transform: uppercase; }
.feature p { margin-top: 5px; color: var(--muted); font-family: Arial, sans-serif; font-size: 14px; font-weight: 700; line-height: 1.35; }

.final-cta { padding: 76px 0; background: var(--red); color: #fff; overflow: hidden; }
.final-cta__inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.final-cta__inner::before { content: ""; position: absolute; width: 260px; height: 260px; right: 28%; border-radius: 50%; opacity: .16; background: radial-gradient(circle at 50% 40%, #fff 0 17%, transparent 18%), radial-gradient(circle at 50% 50%, var(--yellow) 0 48%, transparent 49%); }
.final-cta p, .final-cta h2 { position: relative; margin: 0; }
.final-cta p { color: var(--yellow); font-size: 13px; font-weight: 950; letter-spacing: .18em; text-transform: uppercase; }
.final-cta h2 { margin-top: 5px; font-size: clamp(34px, 4.4vw, 60px); letter-spacing: -.05em; line-height: .96; text-transform: uppercase; }

.button--yellow {
  min-width: 250px;
  min-height: 68px;
  padding: 0 26px;
  border: 2px solid #fff;
  border-radius: 12px;
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 5px 0 rgba(0,0,0,.3);
  text-transform: uppercase;
}

.button--yellow:hover,
.button--yellow:focus-visible { background: #fff; color: var(--red); transform: translateY(-2px); }

.site-footer { padding: 28px 0; background: #111; color: #fff; }
.site-footer__inner { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 28px; }
.site-footer__brand { display: grid; gap: 3px; }
.site-footer__brand strong { color: var(--yellow); font-size: 17px; }
.site-footer__brand span, .site-footer p { color: rgba(255,255,255,.62); font-family: Arial, sans-serif; font-size: 13px; }
.site-footer p { margin: 0; }
.site-footer nav { display: flex; gap: 20px; }
.site-footer nav a { font-size: 13px; font-weight: 900; text-decoration: none; text-transform: uppercase; }
.site-footer nav a:hover, .site-footer nav a:focus-visible { color: var(--yellow); }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s cubic-bezier(.16,1,.3,1); }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes figure-float {
  0%, 100% { transform: translateY(0) rotate(1deg); }
  50% { transform: translateY(-12px) rotate(-2deg); }
}

@media (max-width: 960px) {
  .hero { min-height: auto; background: linear-gradient(150deg, rgba(218,41,28,.99) 0 55%, rgba(255,213,2,.92) 55% 73%, #fff 73% 100%); }
  .hero__inner { min-height: 660px; }
  .hero__content { margin-top: 72px; }
  .hero__figure { top: 48px; right: 28px; bottom: auto; width: min(150px, 20vw); }
  .gift-bar__inner { grid-template-columns: 1fr; }
  .button--whatsapp { justify-self: start; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .features__grid { grid-template-columns: 1fr; }
  .feature { border-right: 0; border-bottom: 1px solid rgba(23,23,23,.12); }
  .feature:last-child { border-bottom: 0; }
  .site-footer__inner { grid-template-columns: 1fr auto; }
  .site-footer p { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .shell { width: min(calc(100% - 28px), var(--shell)); }
  .hero__inner { min-height: 600px; padding-top: 18px; }
  .brand { padding: 7px 10px 6px; }
  .brand__line { font-size: 16px; }
  .brand__line--bottom { font-size: 14px; }
  .hero__figure { top: 24px; right: 16px; width: 72px; }
  .hero__content { margin-top: 76px; }
  .eyebrow { font-size: 10px; letter-spacing: .13em; }
  .eyebrow span { width: 24px; }
  .hero__title { font-size: clamp(40px, 13vw, 58px); }
  .hero__intro { margin-top: 18px; padding: 9px 12px; font-size: 15px; }
  .sketch-arrow { width: 72px; height: 44px; margin-top: 0; }
  .button--hero { min-height: 78px; padding: 0 14px; gap: 11px; font-size: 14px; }
  .block-icon { width: 34px; height: 29px; }
  .button__arrow { font-size: 19px; }
  .gift-bar { margin-top: -8px; }
  .gift-bar__inner { padding-block: 18px; gap: 18px; }
  .gift-bar__copy h2 span { margin-top: 6px; }
  .button--whatsapp { width: 100%; min-width: 0; min-height: 58px; }
  .collection { padding: 62px 0 70px; }
  .section-heading { display: grid; align-items: start; }
  .section-heading h2 { font-size: 38px; }
  .product-grid { grid-template-columns: 1fr; gap: 20px; }
  .product-card__body h3 { min-height: 0; }
  .feature { padding-inline: 4px; }
  .final-cta__inner { display: grid; }
  .button--yellow { width: 100%; min-width: 0; }
  .site-footer__inner { grid-template-columns: 1fr; }
  .site-footer p { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
