:root {
  --green: #119447;
  --green-dark: #087436;
  --blue: #00438c;
  --blue-dark: #062f66;
  --red: #ff2636;
  --black: #111111;
  --muted: #5d636d;
  --line: #dfe7ef;
  --soft: #f4f8fc;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--black);
  font-family: Inter, Arial, sans-serif;
  font-weight: 700;
  max-width: 100%;
  overflow-x: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p,
span,
a,
li,
summary {
  max-width: 100%;
  overflow-wrap: break-word;
}

.top-alert {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(0, 67, 140, .12);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 8px 24px rgba(0, 67, 140, .07);
}

.store-brand {
  flex: 0 1 auto;
  display: inline-flex;
  align-items: center;
  width: clamp(200px, 56vw, 240px);
  min-width: 0;
}

.store-brand img {
  width: 100%;
  height: auto;
}

.top-alert__badge {
  flex: 0 0 auto;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(180deg, #23b85d, var(--green));
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  padding: 0 12px;
  white-space: nowrap;
}

.delivery-ribbon {
  position: sticky;
  top: 53px;
  z-index: 9;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 1px;
  min-height: 52px;
  padding: 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(6, 116, 54, .24);
  background:
    linear-gradient(120deg, #00b84f, #16d463 32%, #078d3f 64%, #00c853);
  background-size: 220% 100%;
  box-shadow: 0 12px 28px rgba(0, 148, 71, .2);
  color: var(--white);
  animation: delivery-ribbon-gradient 4.8s ease-in-out infinite;
}

.delivery-ribbon::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, .34), transparent 19%),
    radial-gradient(circle at 80% 50%, rgba(255, 255, 255, .22), transparent 19%);
  opacity: .9;
}

.delivery-ribbon::after {
  content: "";
  position: absolute;
  top: -45%;
  bottom: -45%;
  left: -30%;
  width: 24%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .55), transparent);
  animation: delivery-ribbon-shine 3.2s ease-in-out infinite;
}

.delivery-ribbon__item {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  font-size: clamp(14px, 3.55vw, 21px);
  font-weight: 1000;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .18);
  animation: delivery-ribbon-text 2.2s ease-in-out infinite;
  text-align: center;
}

.delivery-ribbon__item + .delivery-ribbon__item {
  box-shadow: inset 1px 0 0 rgba(255, 255, 255, .3);
}

.delivery-ribbon__icon {
  flex: 0 0 auto;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, .2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .22), 0 4px 12px rgba(0, 0, 0, .14);
}

.delivery-ribbon__icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes delivery-ribbon-gradient {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes delivery-ribbon-shine {
  0% {
    left: -30%;
    opacity: 0;
  }

  20%,
  58% {
    opacity: 1;
  }

  80%,
  100% {
    left: 112%;
    opacity: 0;
  }
}

@keyframes delivery-ribbon-text {
  0%,
  100% {
    transform: scale(1);
  }

  45% {
    transform: scale(1.035);
  }
}

@media (max-width: 430px) {
  .top-alert {
    gap: 8px;
    justify-content: flex-start;
    padding-left: 10px;
    padding-right: 10px;
  }

  .store-brand {
    width: 166px;
  }

  .top-alert__badge {
    display: none;
  }

  .delivery-ribbon {
    top: 55px;
    min-height: 58px;
  }

  .delivery-ribbon__item {
    flex-direction: column;
    gap: 4px;
    min-height: 58px;
    padding: 6px 4px;
    font-size: 14px;
    text-align: center;
  }

  .delivery-ribbon__icon {
    width: 25px;
    height: 25px;
  }

  .delivery-ribbon__icon svg {
    width: 17px;
    height: 17px;
  }
}

@media (max-width: 680px) {
  .top-alert {
    justify-content: flex-start;
  }

  .store-brand {
    width: 210px;
  }

  .top-alert__badge {
    display: none;
  }
}

.page {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  overflow: hidden;
  background: var(--white);
}

.hero,
.simple-section,
.cod-box,
.offers,
.final,
footer {
  padding: 26px 18px;
  text-align: center;
}

.stock {
  display: inline-block;
  margin: 0 0 12px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #fff0f1;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: 25px;
  line-height: 1.05;
  font-weight: 900;
}

.hero-subtitle {
  margin: -8px 0 18px;
  color: var(--blue);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 16px;
  font-size: 23px;
  line-height: 1.08;
  font-weight: 900;
}

h3 {
  margin-bottom: 8px;
  font-size: 22px;
  font-weight: 900;
}

.hero-image {
  width: 100%;
  max-width: 100%;
  margin-bottom: 24px;
  border-radius: 4px;
}

.hero-video-wrap {
  position: relative;
  margin-bottom: 24px;
}

.hero-video-wrap .hero-image {
  margin-bottom: 0;
}

.hero-video-product {
  aspect-ratio: 1 / 1;
  background: #111111;
  object-fit: cover;
}

.sound-prompt {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: grid;
  width: min(78%, 250px);
  min-height: 136px;
  place-items: center;
  gap: 7px;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(255, 255, 255, .72);
  border-radius: 5px;
  background: rgba(0, 105, 153, .88);
  color: #ffffff;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.15;
  padding: 14px;
  text-align: center;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .28);
  animation: sound-prompt-blink 1.05s ease-in-out infinite;
}

.sound-prompt::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, .06), transparent 48%);
  pointer-events: none;
}

.sound-prompt__icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
}

.sound-prompt__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.sound-prompt.is-hidden {
  display: none;
}

.resume-prompt[hidden] {
  display: none;
}

.resume-prompt {
  position: absolute;
  inset: 0;
  z-index: 7;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 14px;
  border-radius: 4px;
  background: rgba(0, 91, 132, .9);
  color: #ffffff;
  padding: 22px;
  text-align: center;
}

.resume-prompt p {
  margin: 0 0 2px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.25;
}

.resume-prompt button {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 12px;
  width: min(100%, 230px);
  min-height: 40px;
  border: 0;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
  font-weight: 900;
  padding: 0;
  text-align: left;
}

.resume-prompt button span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .95);
  border-radius: 50%;
  color: #ffffff;
  font-size: 16px;
  line-height: 1;
}

.video-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 6;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: end;
  gap: 0;
  min-height: 54px;
  padding-top: 14px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .38));
}

.hero-video-wrap:not(.is-audio-active) .video-controls {
  display: none;
}

.video-play-toggle {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  font-family: inherit;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 2px 7px rgba(0, 0, 0, .42);
}

.video-progress {
  position: relative;
  display: block;
  width: 100%;
  height: 10px;
  overflow: hidden;
  align-self: end;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, .26);
  cursor: pointer;
  padding: 0;
}

.video-progress span {
  position: absolute;
  inset: 0 auto 0 0;
  display: block;
  width: 0%;
  background: #0b7fac;
}

@keyframes sound-prompt-blink {
  0%,
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: .74;
    transform: translate(-50%, -50%) scale(1.035);
  }
}

.rating-line {
  display: grid;
  gap: 3px;
  margin: -6px 0 18px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.rating-line span {
  color: #ffb000;
  font-size: 19px;
  letter-spacing: 1px;
  line-height: 1;
}

.rating-line b {
  color: var(--black);
  font-size: 15px;
}

.hero-video {
  aspect-ratio: 1 / 1;
  background: #111111;
  object-fit: cover;
}

.price-line {
  margin-bottom: 6px;
}

.price-line span,
.old-price {
  color: var(--black);
  font-size: 18px;
  text-decoration: line-through;
}

.price-line span {
  text-decoration: none;
}

.price-line strong,
.new-price {
  display: block;
  color: var(--red);
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}

.installment,
.unit-price {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 15px;
}

.cta {
  min-height: 54px;
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 2px solid #0b6c33;
  border-radius: 6px;
  background: linear-gradient(180deg, #34bd63, var(--green));
  color: var(--white);
  font-size: 17px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(17, 148, 71, .18);
}

.cta-dark {
  border-color: #222;
  background: linear-gradient(180deg, #3b3b3b, #111);
}

.trust-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 18px;
}

.trust-row span {
  padding: 11px;
  border: 1px solid rgba(0, 67, 140, .12);
  border-radius: 6px;
  background: #ffffff;
  color: var(--blue-dark);
  font-size: 18px;
}

.cod-box {
  border-top: 8px solid var(--soft);
  border-bottom: 8px solid var(--soft);
}

.cod-box h2 {
  color: var(--blue);
  text-transform: uppercase;
}

.cod-lead {
  margin-bottom: 18px;
  font-size: 20px;
  line-height: 1.35;
}

.cod-steps {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.cod-steps div {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fbfbfb;
  text-align: left;
}

.cod-steps b {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  background: var(--blue);
  color: var(--white);
  font-size: 20px;
}

.cod-steps span {
  font-size: 18px;
}

.payment-note,
.body-copy,
.faq p,
.final p,
footer p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

.social-proof {
  padding: 30px 18px;
  background: #f6f8f6;
  text-align: center;
}

.proof-heading {
  margin: 0 auto 20px;
}

.proof-heading h2 {
  margin-bottom: 8px;
}

.proof-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

.proof-kicker {
  display: inline-flex;
  margin-bottom: 8px;
  border-radius: 999px;
  background: #fff0f1;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  padding: 7px 11px;
}

.proof-heading p {
  color: #ffb000;
  font-size: 15px;
  font-weight: 900;
}

.proof-heading p b {
  color: var(--black);
}

.reels-grid {
  display: flex;
  gap: 16px;
  margin: 0 -18px;
  overscroll-behavior-x: contain;
  overflow-x: auto;
  padding: 0 18px 8px;
  scroll-padding: 18px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.reels-grid::-webkit-scrollbar {
  height: 0;
}

.reel-card {
  flex: 0 0 min(76vw, 260px);
  scroll-snap-align: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 12px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .05);
  text-align: left;
}

.reel-player {
  position: relative;
  display: block;
  width: 100%;
  height: clamp(290px, 92vw, 360px);
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: #111111;
  cursor: pointer;
  padding: 0;
}

.reel-player img,
.reel-player video {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  object-position: center;
}

.reel-player video {
  background: #111111;
}

.play-badge {
  position: absolute;
  inset: 0;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin: auto;
  border-radius: 50%;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .22);
}

.play-badge::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 20px solid #111111;
}

.reel-duration {
  position: absolute;
  right: 10px;
  bottom: 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .72);
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  padding: 5px 8px;
}

.reel-card h3 {
  margin: 10px 0 5px;
  font-size: 16px;
  line-height: 1.12;
}

.reel-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.32;
}

.proof-images {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 20px;
}

.proof-images figure {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .04);
}

.proof-images img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  object-fit: contain;
  object-position: center;
}

.proof-images figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.havana-testimonials {
  display: grid;
  gap: 16px;
  margin: 22px auto 24px;
  max-width: 420px;
}

.havana-testimonials figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 67, 140, .12);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(0, 67, 140, .08);
}

.havana-testimonials img {
  display: block;
  width: 100%;
  height: auto;
}

.testimonial-list {
  display: grid;
  gap: 8px;
  margin: 0 auto 20px;
  max-width: 340px;
}

.testimonial-card {
  display: grid;
  grid-template-columns: minmax(0, .52fr) minmax(0, .48fr);
  gap: 10px;
  align-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  text-align: center;
  box-shadow: none;
}

.testimonial-card img {
  width: 100%;
  aspect-ratio: 1 / 1.28;
  height: auto;
  border: 1px solid rgba(0, 67, 140, .1);
  border-radius: 8px;
  background: #eef4f8;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .08);
  object-fit: cover;
  object-position: center top;
}

.testimonial-card .stars {
  display: block;
  margin-bottom: 8px;
  color: #ffb000;
  font-size: 16px;
  line-height: 1;
}

.testimonial-card p {
  margin: 0;
  color: var(--black);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.08;
}

.testimonial-card small {
  display: inline-flex;
  margin-top: 10px;
  border-radius: 999px;
  background: #f0fbf4;
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 900;
  padding: 5px 8px;
}

.video-proof {
  display: grid;
  grid-template-columns: minmax(0, .52fr) minmax(0, .48fr);
  gap: 10px;
  align-items: center;
  max-width: 340px;
  margin: 10px auto 20px;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
  text-align: center;
}

.video-proof__copy {
  order: 2;
}

.video-proof__kicker {
  margin: 0 0 12px;
  color: #ffb000;
  font-size: 17px;
  letter-spacing: 1px;
}

.video-proof h3 {
  margin: 0 0 12px;
  color: var(--black);
  font-size: 14px;
  line-height: 1.1;
  text-transform: uppercase;
}

.video-proof > p:not(.video-proof__kicker) {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.video-proof__copy > p:not(.video-proof__kicker) {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.25;
}

.video-proof__copy span {
  color: #4da3ff;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 2px;
}

.vimeo-frame {
  order: 1;
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 8px;
  background: #111111;
}

.vimeo-frame iframe,
.vimeo-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.product-info-image {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 20px auto 0;
  border-radius: 8px;
}

.guarantee-section {
  display: grid;
  gap: 16px;
  padding: 28px 18px;
  border-top: 8px solid var(--soft);
  background: #ffffff;
  text-align: left;
}

.guarantee-visual {
  position: relative;
  margin: 0;
}

.guarantee-section img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  background: #f7f7f7;
  object-fit: contain;
}

.guarantee-visual figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: grid;
  gap: 3px;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 8px;
  background: rgba(0, 67, 140, .9);
  color: #ffffff;
  padding: 12px;
  text-align: center;
  box-shadow: 0 12px 26px rgba(0, 0, 0, .18);
}

.guarantee-visual b {
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.guarantee-visual small {
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
  font-weight: 900;
}

.guarantee-section div {
  border: 1px solid #cfe8d7;
  border-radius: 8px;
  background: #f3fbf6;
  padding: 16px;
}

.guarantee-section span {
  display: inline-flex;
  margin-bottom: 9px;
  border-radius: 999px;
  background: var(--green);
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  padding: 7px 10px;
  text-transform: uppercase;
}

.guarantee-section h2 {
  margin-bottom: 10px;
  color: var(--green-dark);
  font-size: 22px;
}

.guarantee-section p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.42;
}

.guarantee-section ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.guarantee-section li {
  position: relative;
  color: var(--black);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
  padding-left: 25px;
}

.guarantee-section li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--green);
  font-weight: 900;
}

.check-list {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  text-align: left;
}

.check-list li {
  position: relative;
  margin-bottom: 9px;
  padding-left: 34px;
  font-size: 21px;
  line-height: 1.15;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 3px;
  background: #80bf66;
  color: var(--white);
  font-weight: 900;
}

.offers {
  background: #fafafa;
}

.offer {
  position: relative;
  margin-bottom: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.offer.featured {
  border: 2px solid var(--green);
}

.tag {
  width: max-content;
  margin: -4px auto 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-size: 12px;
  text-transform: uppercase;
}

.offer img {
  width: 100%;
  max-height: 220px;
  object-fit: contain;
  margin: 0 auto 12px;
}

.old-price {
  margin: 6px 0 0;
  font-size: 16px;
}

.new-price {
  margin: 4px 0 2px;
  font-size: 38px;
}

.faq {
  border-top: 8px solid var(--soft);
}

details {
  margin-bottom: 10px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  text-align: left;
}

summary {
  cursor: pointer;
  padding: 14px;
  font-size: 17px;
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 14px 14px;
}

.final {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: var(--white);
}

.final p {
  color: rgba(255, 255, 255, .78);
}

footer {
  padding-bottom: 34px;
  background: #f2f2f2;
}

footer p {
  margin-bottom: 0;
  font-size: 12px;
}

.legal-info {
  display: grid;
  max-width: 720px;
  gap: 4px;
  margin: 16px auto 0;
  color: #5d636d;
  font-size: 12px;
  font-style: normal;
  line-height: 1.45;
}

.legal-info b {
  color: #00438c;
  font-size: 14px;
}

.legal-info a {
  color: #00438c;
  font-weight: 900;
}

body.modal-open {
  overflow: hidden;
}

.lead-modal[hidden] {
  display: none;
}

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  padding: 16px;
}

.lead-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .62);
}

.lead-modal__dialog {
  position: relative;
  width: min(100%, 390px);
  max-height: calc(100vh - 28px);
  overflow-y: auto;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .34);
  padding: 22px 18px 18px;
  text-align: center;
}

.lead-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: #111111;
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.modal-kicker {
  margin: 0 38px 8px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.lead-modal h2 {
  margin-bottom: 8px;
  font-size: 25px;
}

.modal-copy,
.privacy-note {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.modal-offers {
  display: grid;
  gap: 10px;
  margin-top: 17px;
}

.modal-offer {
  display: grid;
  gap: 3px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--black);
  cursor: pointer;
  padding: 14px 14px 13px;
  text-align: left;
}

.modal-offer.featured {
  border: 2px solid var(--green);
  box-shadow: 0 10px 22px rgba(17, 148, 71, .13);
}

.modal-offer span {
  width: max-content;
  max-width: 100%;
  border-radius: 999px;
  background: #fff1f1;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  padding: 5px 8px;
  text-transform: uppercase;
}

.modal-offer b {
  color: var(--black);
  font-size: 18px;
  font-weight: 900;
}

.modal-offer strong {
  color: var(--red);
  font-size: 31px;
  line-height: 1;
}

.modal-offer small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.selected-offer {
  margin: 0 0 14px;
  border: 1px solid #cfe8d7;
  border-radius: 6px;
  background: #f0fbf4;
  color: var(--green-dark);
  padding: 10px 12px;
  font-size: 14px;
}

.lead-form {
  display: grid;
  gap: 11px;
  margin-top: 12px;
}

.lead-form label {
  display: grid;
  gap: 6px;
  color: #232323;
  font-size: 13px;
  font-weight: 900;
  text-align: left;
}

.lead-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid #d5d8dd;
  border-radius: 5px;
  background: #ffffff;
  color: var(--black);
  font-size: 16px;
  font-weight: 700;
  outline: none;
  padding: 12px;
}

.lead-form input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(17, 148, 71, .12);
}

.privacy-note {
  margin: 1px 0 2px;
  font-size: 12px;
  text-align: left;
}

.modal-back {
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  padding: 4px;
}

.lead-form.is-loading .cta {
  opacity: .78;
  pointer-events: none;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(255, 38, 54, .72);
  outline-offset: 3px;
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

body.stories-open {
  overflow: hidden;
}

body.modal-open .story-bubble,
body.stories-open .story-bubble {
  display: none;
}

.story-bubble {
  position: fixed;
  left: 14px;
  bottom: 16px;
  z-index: 120;
  display: grid;
  justify-items: center;
  gap: 5px;
  width: 82px;
  border: 0;
  background: transparent;
  color: #111111;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, .24));
}

.story-bubble__ring {
  position: relative;
  display: block;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  padding: 4px;
  background: conic-gradient(from 210deg, #ffd600, #ff7a00, #ff0069, #d300c5, #7638fa, #ffd600);
}

.story-bubble__ring::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  pointer-events: none;
}

.story-bubble__video {
  width: 100%;
  height: 100%;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: #111111;
  object-fit: cover;
}

.story-bubble__label {
  max-width: 82px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .94);
  color: #111111;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  padding: 5px 8px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .12);
}

.story-viewer[hidden] {
  display: none;
}

.story-viewer {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: grid;
  place-items: center;
  background: #050505;
}

.story-viewer__backdrop {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 16%, rgba(255, 255, 255, .14), transparent 36%), rgba(0, 0, 0, .9);
}

.story-viewer__shell {
  position: relative;
  width: 100%;
  height: 100dvh;
  max-width: 440px;
  overflow: hidden;
  background: #111111;
  color: #ffffff;
  isolation: isolate;
}

.story-progress {
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  z-index: 6;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: 3px;
}

.story-progress__bar {
  height: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, .34);
}

.story-progress__fill {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: #ffffff;
  transform: scaleX(0);
  transform-origin: left center;
}

.story-progress__bar.is-done .story-progress__fill {
  transform: scaleX(1);
}

.story-viewer__header {
  position: absolute;
  top: 22px;
  left: 14px;
  right: 14px;
  z-index: 7;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  pointer-events: none;
}

.story-profile {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 9px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .58);
}

.story-profile__avatar {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, .72);
  border-radius: 50%;
  background: #222222;
}

.story-profile__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-profile b,
.story-profile small {
  display: block;
  line-height: 1.1;
}

.story-profile b {
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
}

.story-profile small {
  margin-top: 2px;
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
  font-weight: 800;
}

.story-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  pointer-events: auto;
}

.story-icon,
.story-close {
  display: grid;
  place-items: center;
  border: 0;
  color: #ffffff;
  cursor: pointer;
  font-family: inherit;
  font-weight: 900;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .6);
}

.story-icon {
  min-width: 48px;
  height: 34px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .42);
  font-size: 12px;
}

.story-close {
  width: 38px;
  height: 38px;
  background: transparent;
  font-size: 34px;
  line-height: 1;
}

.story-media {
  position: absolute;
  inset: 0;
  z-index: auto;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #2a2a2a, #111111 42%, #050505);
}

.story-media video {
  width: 100%;
  height: 100%;
  background: #111111;
  object-fit: contain;
}

.story-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 92px;
  z-index: 5;
  margin: 0;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(0, 0, 0, .18), rgba(0, 0, 0, .56));
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.3;
  padding: 13px 14px;
  text-align: left;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .62);
}

.story-cta {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 22px;
  z-index: 8;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #0b6c33;
  border-radius: 6px;
  background: linear-gradient(180deg, #38b75a, var(--green));
  color: #ffffff;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.1;
  padding: 0 16px;
  box-shadow: 0 14px 30px rgba(17, 148, 71, .34), 0 5px 18px rgba(0, 0, 0, .35);
}

.story-tap {
  position: absolute;
  top: 78px;
  bottom: 0;
  z-index: 4;
  width: 50%;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.story-tap--prev {
  left: 0;
}

.story-tap--next {
  right: 0;
}

@media (min-width: 720px) {
  body {
    background: #eeeeee;
  }

  .page {
    margin-top: 0;
    box-shadow: 0 0 40px rgba(0, 0, 0, .08);
  }
}

@media (min-width: 900px) {
  body {
    background: #f1f3f1;
  }

  .top-alert {
    padding: 16px 24px;
    letter-spacing: 0;
  }

  .store-brand {
    width: 236px;
  }

  .top-alert__badge {
    min-height: 38px;
    font-size: 14px;
    padding: 0 16px;
  }

  .page {
    width: 100%;
    max-width: none;
    margin: 0;
    overflow: visible;
    background: transparent;
    box-shadow: none;
  }

  .hero,
  .simple-section,
  .cod-box,
  .offers,
  .final,
  footer {
    width: min(100%, 1180px);
    margin: 0 auto;
    padding: 54px 32px;
  }

  .hero {
    display: grid;
    grid-template-columns: minmax(360px, 500px) minmax(360px, 500px);
    column-gap: 72px;
    align-items: center;
    min-height: calc(100vh - 110px);
    text-align: left;
  }

  .hero .stock,
  .hero h1,
  .hero .hero-subtitle,
  .hero .price-line,
  .hero .installment,
  .hero .cta,
  .hero .trust-row {
    grid-column: 1;
  }

  .hero-video-wrap {
    grid-column: 2;
    grid-row: 1 / span 6;
    width: min(100%, 500px);
    margin: 0 auto;
    align-self: center;
  }

  .hero .rating-line {
    grid-column: 2;
    grid-row: 7;
    justify-self: center;
    width: min(100%, 500px);
    margin: 14px 0 0;
    text-align: center;
  }

  .hero h1 {
    max-width: 480px;
    margin-bottom: 12px;
    font-size: 58px;
    line-height: .95;
    letter-spacing: 0;
  }

  .hero-subtitle {
    max-width: 470px;
    margin: 0 0 30px;
    font-size: 20px;
    line-height: 1.18;
  }

  .hero-video-product {
    width: 100%;
  }

  .stock {
    margin-bottom: 14px;
    padding: 9px 14px;
    font-size: 14px;
  }

  .price-line {
    margin: 0 0 8px;
  }

  .price-line span {
    font-size: 20px;
  }

  .price-line strong {
    font-size: 62px;
  }

  .installment {
    margin-bottom: 22px;
    font-size: 18px;
  }

  .hero .cta {
    width: min(100%, 430px);
    min-height: 62px;
    font-size: 19px;
  }

  .trust-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: min(100%, 520px);
    margin-top: 22px;
  }

  .trust-row span {
    display: grid;
    min-height: 62px;
    place-items: center;
    border-radius: 6px;
    font-size: 15px;
    text-align: center;
  }

  .cod-box {
    display: grid;
    grid-template-columns: minmax(320px, .8fr) minmax(450px, 1.2fr);
    gap: 34px;
    align-items: center;
    border: 0;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 12px 34px rgba(0, 0, 0, .06);
    text-align: left;
  }

  .cod-box h2 {
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 14px;
    font-size: 38px;
  }

  .cod-lead {
    grid-column: 1;
    grid-row: 2;
    margin-bottom: 0;
    font-size: 22px;
  }

  .cod-steps {
    grid-column: 2;
    grid-row: 1 / span 2;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0;
  }

  .cod-steps div {
    min-height: 82px;
    border-radius: 8px;
  }

  .payment-note {
    grid-column: 2;
    grid-row: 3;
    margin: -4px 0 0;
  }

  .simple-section {
    display: grid;
    grid-template-columns: minmax(320px, .9fr) minmax(440px, 1.1fr);
    gap: 44px;
    align-items: start;
    text-align: left;
  }

  .simple-section h2 {
    grid-column: 1;
    grid-row: 1 / span 2;
    margin: 0;
    font-size: 40px;
  }

  .check-list {
    grid-column: 2;
    margin-bottom: 18px;
  }

  .check-list li {
    margin-bottom: 13px;
    font-size: 20px;
    line-height: 1.25;
  }

  .body-copy {
    grid-column: 2;
    font-size: 18px;
  }

  .social-proof {
    width: 100%;
    max-width: none;
    padding: 70px max(32px, calc((100vw - 1180px) / 2));
  }

  .proof-heading {
    max-width: 780px;
    margin-bottom: 30px;
  }

  .proof-heading h2 {
    font-size: 42px;
  }

  .proof-heading p {
    font-size: 18px;
  }

  .testimonial-list {
    grid-template-columns: 1fr;
    max-width: 560px;
    gap: 12px;
    margin: 0 auto 30px;
  }

  .testimonial-card {
    grid-template-columns: minmax(0, .48fr) minmax(0, .52fr);
    min-height: 0;
    padding: 0;
  }

  .testimonial-card img {
    width: 100%;
    height: auto;
  }

  .testimonial-card p {
    font-size: 20px;
  }

  .video-proof {
    max-width: 560px;
    margin: 0 auto 30px;
  }

  .video-proof h3 {
    font-size: 18px;
  }

  .product-info-image {
    max-width: 560px;
  }

  .reels-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    max-width: 1180px;
    margin: 0 auto;
    overflow: visible;
    padding: 0;
    scroll-snap-type: none;
  }

  .reel-card {
    display: flex;
    flex: initial;
    flex-direction: column;
    padding: 14px;
    border-radius: 10px;
    scroll-snap-align: none;
  }

  .reel-player {
    height: clamp(300px, 30vw, 380px);
    border-radius: 10px;
  }

  .reel-card h3 {
    font-size: 17px;
  }

  .reel-card p {
    font-size: 13px;
  }

  .play-badge {
    width: 64px;
    height: 64px;
  }

  .proof-images {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    max-width: 720px;
    margin: 26px auto 0;
  }

  .proof-images figure {
    border-radius: 10px;
  }

  .proof-images img {
    height: auto;
    max-height: none;
  }

  .havana-testimonials {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
    gap: 18px;
    max-width: 1040px;
    margin: 30px auto 34px;
  }

  .havana-testimonials figure {
    border-radius: 10px;
  }

  .guarantee-section {
    grid-template-columns: minmax(300px, .9fr) minmax(420px, 1.1fr);
    align-items: center;
    padding: 64px max(32px, calc((100vw - 980px) / 2));
  }

  .guarantee-section img {
    height: auto;
  }

  .guarantee-section div {
    padding: 28px;
  }

  .guarantee-section h2 {
    font-size: 34px;
  }

  .offers {
    width: 100%;
    max-width: none;
    background: #fafafa;
    padding: 64px max(32px, calc((100vw - 1180px) / 2)) 70px;
  }

  .offers h2 {
    width: min(100%, 1180px);
    margin: 0 auto 28px;
    font-size: 42px;
  }

  .offers {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }

  .offers h2 {
    grid-column: 1 / -1;
    text-align: center;
  }

  .offer {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
    border-radius: 10px;
    padding: 22px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .06);
  }

  .offer.featured {
    transform: translateY(-10px);
  }

  .offer img {
    height: 240px;
    max-height: none;
  }

  .offer h3 {
    font-size: 24px;
  }

  .offer .cta {
    margin-top: auto;
  }

  .faq {
    display: block;
    max-width: 980px;
    border-top: 0;
  }

  .faq h2 {
    text-align: center;
    font-size: 40px;
  }

  details {
    border-radius: 8px;
  }

  .final {
    width: 100%;
    max-width: none;
    display: grid;
    justify-items: center;
    padding: 70px 24px;
  }

  .final h2 {
    max-width: 760px;
    font-size: 42px;
  }

  .final p {
    max-width: 680px;
    font-size: 18px;
  }

  .final .cta {
    width: min(100%, 420px);
  }

  footer {
    max-width: none;
    width: 100%;
    padding: 28px max(24px, calc((100vw - 980px) / 2));
  }

  footer p {
    font-size: 13px;
  }

  .lead-modal__dialog {
    width: min(100%, 460px);
  }

  .story-bubble {
    left: 24px;
    bottom: 24px;
    width: 94px;
  }

  .story-bubble__ring {
    width: 78px;
    height: 78px;
  }

  .story-viewer__shell {
    height: min(100dvh, 860px);
    border-radius: 18px;
    box-shadow: 0 30px 100px rgba(0, 0, 0, .55);
  }
}

@media (min-width: 1200px) {
  .hero {
    column-gap: 82px;
  }

  .hero h1 {
    font-size: 66px;
  }
}

@media (max-width: 360px) {
  .page {
    width: 100vw;
    max-width: 100vw;
  }

  h1 {
    font-size: 25px;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  h2,
  h3,
  p,
  span,
  a,
  li,
  summary {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-image,
  .offer img {
    width: 100%;
    max-width: 100%;
  }

  .hero,
  .simple-section,
  .cod-box,
  .offers,
  .final,
  footer {
    padding-left: 14px;
    padding-right: 14px;
  }

  .top-alert {
    padding-left: 10px;
    padding-right: 10px;
  }

  .store-brand {
    width: 200px;
  }

  .top-alert__badge {
    min-height: 31px;
    font-size: 11px;
    padding: 0 9px;
  }
}

/* Rodape institucional */
.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1.1fr) minmax(260px, 1.5fr) minmax(190px, .9fr) minmax(180px, .8fr);
  gap: 24px;
  width: 100%;
  max-width: none;
  padding: 38px clamp(18px, 5vw, 74px) 28px;
  border-top: 1px solid #dfe7ef;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfa 100%);
  color: #5d636d;
  text-align: left;
}

.footer-brand,
.footer-contact,
.footer-links,
.site-footer .legal-info {
  display: grid;
  gap: 7px;
  min-width: 0;
  margin: 0;
}

.site-footer b {
  color: #00438c;
  font-size: 15px;
  font-weight: 900;
}

.footer-brand p,
.footer-contact span,
.site-footer .legal-info span {
  margin: 0;
  color: #5d636d;
  font-size: 13px;
  line-height: 1.45;
}

.footer-contact a,
.footer-links a,
.site-footer .legal-info a {
  color: #00438c;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.footer-links a {
  width: max-content;
  max-width: 100%;
  border-bottom: 1px solid rgba(0, 67, 140, .18);
  padding-bottom: 2px;
}

.footer-copy {
  grid-column: 1 / -1;
  border-top: 1px solid #dfe7ef;
  color: #5d636d;
  font-size: 12px;
  padding-top: 18px;
}

@media (max-width: 980px) {
  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .site-footer {
    grid-template-columns: 1fr;
    text-align: left;
  }
}
