:root {
  --brand-orange: #f66e48;
  --brand-pink: #f1405a;
  --brand-yellow: #face3a;
  --ink: #181818;
  --paper: #ffffff;
  --whatsapp: #25d366;
  --whatsapp-hover: #1eb857;
  --header-height: 84px;
  --hero-vertical-gap: clamp(1rem, 2.4vh, 2rem);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Sora", sans-serif;
  color: var(--paper);
  background: #0b0b0b;
}

.container {
  width: min(1140px, calc(100% - 2rem));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #ff661a;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: clamp(136px, 10vw, 105px);
  height: auto;
  display: block;
  padding: 0.5rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.header-whatsapp,
.header-call {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: 999px;
  padding: 0.72rem 1.1rem;
  text-decoration: none;
  font-weight: 700;
  color: #fff;
  background: none;
  border: 2px solid rgb(255 255 255 / 97%);
  backdrop-filter: blur(3px);
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.header-whatsapp:hover,
.header-call:hover {
  transform: translateY(-2px);
  background: none;
}

.hero {
  min-height: calc(100vh - var(--header-height));
  min-height: calc(100dvh - var(--header-height));
  margin-top: var(--header-height);
  padding-block: var(--hero-vertical-gap);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: clamp(1.2rem, 2.7vw, 2.25rem) clamp(1rem, 2.8vw, 2.2rem) clamp(1.45rem, 2.9vw, 2rem);
  max-width: 880px;
  margin-top: 3vw;
  background: #f4464f;
  border-radius: 18px;
  border: 1px solid #f7ca3d;
}

.hero-badge {
  display: inline-block;
  margin-bottom: 1.1rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
  background: rgba(241, 64, 90, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero h1 {
  margin: 0;
  font-family: "Barlow", sans-serif;
  font-size: clamp(2.05rem, 5vw, 4rem);
  line-height: 1.03;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.hero-subtitle {
  margin: 2rem auto 0;
  font-size: clamp(1.05rem, 2.1vw, 1.5rem);
  font-weight: 500;
  margin-bottom: 2rem;
  max-width: 680px;
}

.hero-subtitle strong {
  color: var(--brand-yellow);
}

.hero-products {
  margin: 1rem auto 0;
  padding: 0;
  list-style: none;
  max-width: 760px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

.hero-products li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: none;
  border: 1px solid rgb(255 255 255);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-size: 0.94rem;
  font-weight: 600;
  color: #fff;
}

.hero-products i {
  color: #ffc203;
}

.hero-support {
  margin: 1.9rem auto 12px;
  color: rgb(255 255 255);
  font-size: 1rem;
  background: #ffc20300;
  width: fit-content;
  border-radius: 4px;
  padding: 0 1rem;
  font-weight: 600;
}

.hero-cta {
  margin-top: 1.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  text-decoration: none;
  text-align: center;
  padding: 1.03rem 1.5rem;
  border-radius: 14px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  background: #4caf50;
  border: none;
  box-shadow: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: none;
}

.hero-cta:focus-visible,
.header-whatsapp:focus-visible,
.header-call:focus-visible {
  outline: 3px solid rgba(250, 206, 58, 0.95);
  outline-offset: 2px;
}

.checker-band {
  --tile: 72px;
  height: calc(var(--tile) * 2);
  background:
    linear-gradient(90deg, #ff661a 50%, transparent 0) 0 0 / calc(var(--tile) * 2) var(--tile) repeat-x,
    linear-gradient(90deg, transparent 50%, #ff661a 0) 0 var(--tile) / calc(var(--tile) * 2) var(--tile) repeat-x,
    #efefef;
}

.authorized-brands {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 10.2rem 0;
  background: #1a1110;
}

.authorized-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.authorized-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 15%, rgb(255 102 26 / 24%), #00000021 45%), linear-gradient(180deg, rgba(18, 12, 10, 0.76) 0%, rgb(18 12 10 / 0%) 100%);
  z-index: -1;
}

.authorized-content {
  text-align: center;
}

.authorized-kicker {
  margin: 0 0 1.2rem;
  font-family: "Barlow", sans-serif;
  font-size: clamp(2rem, 4.2vw, 3.15rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.authorized-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.9rem;
  max-width: 1240px;
  margin: 0 auto;
}

.authorized-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 16px;
  padding: 1rem 0.9rem;
  backdrop-filter: blur(4px);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.authorized-card img {
  width: 100%;
  max-width: 180px;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  border-radius: 10px;
  background: #fff7ef;
  padding: 0.45rem;
  height: 6rem;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.authorized-card.is-loaded img {
  opacity: 1;
}

.authorized-card h3 {
  margin: 0.7rem 0 0;
  color: #fff3e4;
  font-size: 1.05rem;
  font-weight: 700;
}

.lp-proof {
  padding: 5rem 0;
  background:
    radial-gradient(circle at 10% 12%, rgba(246, 110, 72, 0.25), transparent 42%),
    radial-gradient(circle at 90% 88%, rgba(250, 206, 58, 0.3), transparent 45%),
    #fff6ef;
}

.lp-proof-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.4rem;
  align-items: stretch;
  background: #ffffff00;
  border-radius: 20px;
  border: none;
  box-shadow: none;
  padding: 2rem;
}

.lp-proof-kicker {
  display: inline-block;
  margin-bottom: 0.9rem;
  background: #ef304e;
  color: #fff;
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.lp-proof-copy h2 {
  margin: 0;
  color: #1c1c1c;
  font-family: "Barlow", sans-serif;
  line-height: 1.06;
  font-size: clamp(1.7rem, 2.3vw, 2.7rem);
}

.lp-proof-copy p {
  margin: 1rem 0 1.15rem;
  color: #363636;
  font-size: 1.02rem;
}

.lp-proof-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  align-items: stretch;
}

.lp-proof-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.72rem;
  align-items: start;
  color: #282828;
  background: linear-gradient(180deg, #fff7f2 0%, #ffeee3 100%);
  border: 1px solid #ffd3bb;
  border-radius: 14px;
  padding: 0.78rem 0.82rem;
  font-size: 0.94rem;
  line-height: 1.35;
  min-height: 86px;
  height: 100%;
  box-shadow: 0 8px 18px rgba(255, 102, 26, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lp-proof-list li:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(255, 102, 26, 0.16);
}

.lp-proof-list i {
  color: white;
  margin-top: 0;
  font-size: 1.25rem;
  background: #ff661a;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  padding: 0;
  border-radius: 8px;
}

.lp-proof-cta {
  margin-top: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, var(--whatsapp), #128640);
  border-radius: 12px;
  font-weight: 700;
  padding: 0.95rem 1.15rem;
  box-shadow: 0 14px 26px rgba(30, 184, 87, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lp-proof-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(30, 184, 87, 0.4);
}

.lp-proof-photo {
  margin: 0;
  border-radius: 15px;
  overflow: hidden;
  background: #f3eee8;
  position: relative;
  height: 25rem;
  width: 130%;
}

.lp-proof-photo img {
  width: 105%;
  height: 25rem;
  min-height: 335px;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.lp-proof-photo.is-loaded img {
  opacity: 1;
}

.lp-proof-photo figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.7rem 0.8rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.74), transparent);
}

.reviews {
  padding: 5.2rem 0 5.5rem;
  background: #ef304e;
}

.reviews-head {
  text-align: center;
  max-width: 840px;
  margin: 0 auto 2rem;
}

.reviews-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.9rem;
  font-weight: 700;
  color: #ffd39d;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.reviews-head h2 {
  margin: 0;
  font-family: "Barlow", sans-serif;
  font-size: clamp(2rem, 3.8vw, 3.25rem);
  line-height: 1.02;
  text-transform: uppercase;
}

.reviews-lead {
  margin: 0.95rem auto 0;
  max-width: 710px;
  color: #fff3e6;
  font-size: 1.04rem;
}

.reviews-lead strong {
  color: #ffdd6c;
}

.reviews-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
}

.reviews-nav {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.reviews-nav:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.5);
}

.reviews-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(290px, 340px);
  gap: 1rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  padding: 0.25rem 0.1rem 0.75rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.5) transparent;
}

.reviews-track:focus-visible {
  outline: 3px solid rgba(250, 206, 58, 0.95);
  outline-offset: 2px;
  border-radius: 12px;
}

.reviews-track::-webkit-scrollbar {
  height: 8px;
}

.reviews-track::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.45);
  border-radius: 999px;
}

.review-card {
  scroll-snap-align: start;
  background: linear-gradient(180deg, #fff 0%, #fff8f2 100%);
  color: #232323;
  border-radius: 18px;
  border: 1px solid #ffd5ba;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
  padding: 1.05rem 1rem 1rem;
  min-height: 252px;
  display: flex;
  flex-direction: column;
}

.review-stars {
  margin: 0 0 0.7rem;
  color: #f5b400;
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.review-text {
  margin: 0;
  color: #2e2e2e;
  line-height: 1.44;
  font-size: 0.94rem;
  flex: 1;
}

.review-author {
  margin-top: 0.95rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: center;
}

.review-author strong {
  display: block;
  color: #171717;
  font-size: 0.95rem;
}

.review-author span {
  color: #ffffff;
  font-size: 0.84rem;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.85rem;
  color: #fff;
  background: linear-gradient(135deg, #ff661a 0%, #ef304e 100%);
}

.review-avatar.tone-soft {
  background: linear-gradient(135deg, #ffa347 0%, #ff6f5a 100%);
}

.review-avatar.tone-dark {
  background: linear-gradient(135deg, #602833 0%, #95273f 100%);
}

.review-avatar.tone-wine {
  background: linear-gradient(135deg, #7c1727 0%, #b20620 100%);
}

.best-sellers {
  padding: 5.3rem 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 102, 26, 0.18), transparent 38%),
    radial-gradient(circle at 12% 85%, rgba(239, 48, 78, 0.14), transparent 36%),
    #fff7ef;
  overflow-x: clip;
}

.best-sellers .container {
  max-width: 1320px;
}

.best-sellers-inner {
  display: grid;
  gap: 1.5rem;
  width: 100%;
  margin-inline: auto;
}

.best-sellers-copy {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.best-sellers-kicker {
  margin: 0 0 0.55rem;
  color: #ef304e;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.best-sellers-copy h2 {
  margin: 0;
  color: #151515;
  font-family: "Barlow", sans-serif;
  font-size: clamp(2rem, 3.7vw, 3.1rem);
  line-height: 1.05;
}

.best-intro-lead {
  margin: 0.75rem auto 0;
  max-width: 620px;
  color: #3d3d3d;
  font-size: 1.03rem;
}

.best-sellers-gallery {
  margin-top: 0.35rem;
  background: none;
  border: none;
  border-radius: 24px;
  padding: 1.1rem;
  box-shadow: none;
  max-width: 1380px;
  width: 100%;
  margin-inline: auto;
  overflow: hidden;
}

.products-shell {
  position: relative;
}

.best-sellers-gallery-title {
  margin: 0 0 0.8rem;
  text-align: center;
  color: #ffe1c4;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.best-sellers-list {
  margin: 1rem auto 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  max-width: 1200px;
  text-align: left;
  width: 100%;
}

.best-sellers-list li {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.85rem;
  background: #fff4ea;
  border: 1px solid #ffd8c1;
  border-radius: 15px;
  color: #2c2c2c;
  font-size: 1rem;
  line-height: 1.4;
  padding: 1rem 1rem;
  min-height: 128px;
  box-shadow: 0 12px 24px rgba(255, 102, 26, 0.09);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.best-sellers-list li:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(255, 102, 26, 0.12);
}

.best-sellers-list li i {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #ff661a 0%, #ef304e 100%);
  color: #fff;
  font-size: 1.35rem;
  margin-top: 0.02rem;
  box-shadow: 0 8px 18px rgba(239, 48, 78, 0.3);
  animation: iconPulse 2.4s ease-in-out infinite;
}

.best-item-title {
  display: block;
  color: #ef304e;
  font-weight: 700;
  font-size: 1.1rem;
}

.best-item-text {
  display: block;
  margin-top: 0.18rem;
  color: #2d2d2d;
  font-size: 1rem;
}

.best-sellers-list li:nth-child(2) i {
  animation-delay: 0.2s;
}

.best-sellers-list li:nth-child(3) i {
  animation-delay: 0.4s;
}

.best-sellers-list li:nth-child(4) i {
  animation-delay: 0.6s;
}

.best-sellers-list li:nth-child(5) i {
  animation-delay: 0.8s;
}

.best-sellers-list li:nth-child(6) i {
  animation-delay: 1s;
}

@keyframes iconPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 8px 18px rgba(239, 48, 78, 0.3);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 14px 24px rgba(239, 48, 78, 0.42);
  }
}

.best-sellers-cta {
  margin-top: 2.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #25d366 0%, #158a41 100%);
  border-radius: 12px;
  font-weight: 700;
  padding: 0.95rem 1.05rem;
  box-shadow: 0 14px 26px rgba(21, 138, 65, 0.31);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  max-width: 700px;
  margin-inline: auto;
}

.best-sellers-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(21, 138, 65, 0.38);
}

.products-track {
  display: flex;
  gap: 0.72rem;
  overflow-x: auto;
  scroll-snap-type: none;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  padding: 0.15rem 3rem 0.65rem;
  justify-content: flex-start;
}

.products-track:focus-visible {
  outline: 3px solid rgba(255, 206, 145, 0.95);
  outline-offset: 2px;
  border-radius: 12px;
}

.products-track::-webkit-scrollbar {
  display: none;
}

.products-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(239, 48, 78, 0.88);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 3;
  box-shadow: 0 12px 24px rgba(30, 18, 12, 0.25);
  transition: transform 0.2s ease, background-color 0.2s ease, opacity 0.2s ease;
}

.products-nav:hover {
  transform: translateY(-50%) scale(1.04);
  background: #ef304e;
}

.products-nav:focus-visible {
  outline: 3px solid rgba(250, 206, 58, 0.95);
  outline-offset: 2px;
}

.products-nav:disabled {
  opacity: 0.38;
  cursor: default;
  transform: translateY(-50%);
}

.products-nav-prev {
  left: 0.35rem;
}

.products-nav-next {
  right: 0.35rem;
}

.products-nav i {
  font-size: 1.35rem;
}

.products-hint {
  margin: 0.42rem 0 0;
  text-align: center;
  color: #6f5446;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.product-card {
  flex: 0 0 clamp(260px, 21vw, 330px);
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #f3eee8;
  border: 1px solid #7f4a34;
  height: 300px;
  position: relative;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, #f3eee8 8%, #fbf7f3 28%, #f3eee8 40%);
  background-size: 200% 100%;
  animation: productSkeleton 1.2s linear infinite;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.product-card.is-loaded::before,
.product-card.is-error::before {
  opacity: 0;
  transition: opacity 0.25s ease;
}

.product-card.is-loaded img {
  opacity: 1;
}

@keyframes productSkeleton {
  to {
    background-position-x: -200%;
  }
}

.product-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.58rem 0.65rem;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.85), transparent);
}

.final-cta {
  padding: 4.6rem 0 4.8rem;
  background: url("../img/background.jpeg") center center / cover no-repeat;
}

.final-cta-card {
  max-width: 980px;
  margin: 0 auto;
  background: linear-gradient(180deg, #fffaf6 0%, #fff0e4 100%);
  border: 1px solid #ffcfa7;
  border-radius: 24px;
  padding: 2.2rem 1.5rem;
  text-align: center;
  box-shadow: 0 24px 50px rgba(30, 18, 12, 0.16);
  position: relative;
}

.final-cta-badge {
  margin: 0 auto 0.85rem;
  width: fit-content;
  background: linear-gradient(135deg, #ef304e 0%, #ff661a 100%);
  color: #fff;
  border-radius: 999px;
  padding: 0.38rem 0.8rem;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.final-cta-card h2 {
  margin: 0;
  color: #171717;
  font-family: "Barlow", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.06;
}

.final-cta-offer {
  margin: 1.9rem 0 0;
  color: #263238;
  font-size: 1.08rem;
  font-weight: 600;
}

.final-cta-urgency {
  margin: 1.58rem 0 15px;
  color: #ef304e;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.final-timer {
  margin: 1rem auto 0;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: #e93c54;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  padding: 0.62rem 0.72rem;
  box-shadow: 0 12px 24px rgba(30, 23, 21, 0.35);
}

.timer-box {
  min-width: 74px;
  background: #fff;
  border-radius: 10px;
  padding: 0.45rem 0.5rem;
  border: 1px solid #ffd0b4;
}

.timer-value {
  display: block;
  font-family: "Barlow", sans-serif;
  font-weight: 800;
  color: #f13648;
  font-size: clamp(1.3rem, 3.5vw, 2.7rem);
  line-height: 1;
}

.timer-label {
  display: block;
  margin-top: 0.22rem;
  color: #e93c54;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.timer-sep {
  color: #fff;
  font-weight: 800;
  font-size: 1.4rem;
  line-height: 1;
}

.final-cta-button {
  margin-top: 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: min(100%, 720px);
  text-decoration: none;
  color: #fff;
  font-size: clamp(1rem, 2.1vw, 1.24rem);
  font-weight: 800;
  border-radius: 16px;
  padding: 1.2rem 1.1rem;
  background: linear-gradient(135deg, #25d366 0%, #118f40 100%);
  box-shadow: 0 16px 28px rgba(17, 143, 64, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.final-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 32px rgba(17, 143, 64, 0.42);
}

.site-footer {
  background: #df334d;
  color: #f8dddd;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 5.4rem 0 5.8rem;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.footer-inner strong {
  display: block;
  font-size: 1.08rem;
}

.footer-inner p {
  margin: 0.4rem 0 0;
  color: #eaafaf;
  max-width: 560px;
}

.footer-meta {
  margin-top: 0.35rem;
  color: #ffd7d7;
  font-size: 0.95rem;
}

.footer-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.footer-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.62rem 1rem;
  color: #ffffff;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.footer-action:hover {
  transform: translateY(-2px);
}

.footer-action-whatsapp {
  background: #25d366;
  box-shadow: 0 10px 20px rgba(20, 128, 62, 0.32);
}

.footer-action-whatsapp:hover {
  background: #1eb857;
}

.footer-action-call {
  background: #ff7c2a;
  box-shadow: 0 10px 20px rgba(180, 74, 0, 0.28);
}

.footer-action-call:hover {
  background: #ef6f1f;
}

.footer-links {
  display: grid;
  gap: 0.35rem;
  text-align: right;
}

.footer-links a {
  color: #ffb5b5;
  text-decoration: none;
  font-weight: 600;
}

.footer-links a:hover {
  text-decoration: underline;
}

.floating-whatsapp {
  position: fixed;
  right: 1.2rem;
  bottom: calc(1.2rem + env(safe-area-inset-bottom, 0px));
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.86rem 1.15rem;
  border-radius: 999px;
  background: #25d366;
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(20, 128, 62, 0.38);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
  background: #1eb857;
  box-shadow: 0 18px 30px rgba(20, 128, 62, 0.44);
}

.floating-whatsapp:focus-visible {
  outline: 3px solid rgba(250, 206, 58, 0.95);
  outline-offset: 2px;
}

@media (max-width: 767px) {
  :root {
    --header-height: 76px;
    --hero-vertical-gap: clamp(0.75rem, 1.8vh, 1.3rem);
  }

  .header-inner {
    min-height: 76px;
  }

  .brand img {
    width: clamp(92px, 10vw, 98px);
    height: auto;
    display: block;
    padding: 0.5rem;
  }

  .header-actions {
    gap: 0.4rem;
  }

  .header-whatsapp,
  .header-call {
    padding: 0.62rem 0.92rem;
    font-size: 0.88rem;
  }

  .header-whatsapp i,
  .header-call i {
    font-size: 1rem;
  }

  .hero-content {
    margin-top: 0;
  }

  .hero-badge {
    font-size: 0.8rem;
  }

  .hero-cta {
    width: 100%;
    max-width: 305px;
  }

  .hero-products {
    gap: 0.45rem;
  }

  .hero-products li {
    font-size: 0.85rem;
    padding: 0.4rem 0.7rem;
  }

  .checker-band {
    --tile: 44px;
  }

  .authorized-brands {
    padding: 4rem 0;
  }

  .authorized-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lp-proof {
    padding: 3.5rem 0;
  }

  .lp-proof-card {
    grid-template-columns: 1fr;
    padding: 1.2rem;
  }

  .lp-proof-cta {
    width: 100%;
  }

  .lp-proof-list {
    grid-template-columns: 1fr;
  }

  .lp-proof-photo {
    margin: 0;
    border-radius: 15px;
    overflow: hidden;
    background: #111;
    position: relative;
    height: 21rem;
    width: 100%;
  }

  .lp-proof-photo img {
    width: 105%;
    height: 16rem;
    min-height: 335px;
    object-fit: cover;
    display: block;
  }

  .reviews {
    padding: 4rem 0 4.3rem;
  }

  .reviews-shell {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .reviews-nav {
    display: none;
  }

  .reviews-track {
    grid-auto-columns: minmax(84%, 84%);
    gap: 0.8rem;
  }

  .review-card {
    min-height: 235px;
  }

  .best-sellers {
    padding: 4rem 0;
  }

  .best-sellers-gallery {
    padding: 1rem;
  }

  .best-sellers-copy h2 {
    font-size: clamp(1.8rem, 10vw, 2.45rem);
  }

  .best-sellers-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .best-sellers-list li {
    min-height: 116px;
  }

  .best-sellers-cta {
    width: 100%;
  }

  .product-card {
    flex-basis: 100vw;
    height: 260px;
  }

  .products-track {
    padding-inline: 2.45rem;
  }

  .products-nav {
    width: 44px;
    height: 44px;
  }

  .products-nav i {
    font-size: 1.18rem;
  }

  .products-nav-prev {
    left: 0.16rem;
  }

  .products-nav-next {
    right: 0.16rem;
  }

  .products-hint {
    font-size: 0.76rem;
  }

  .final-cta {
    padding: 3.7rem 0 3.9rem;
  }

  .final-cta-card {
    padding: 1.35rem 1rem;
  }

  .final-timer {
    width: 100%;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.55rem 0.5rem;
  }

  .timer-box {
    min-width: 64px;
  }

  .final-cta-button {
    width: 100%;
  }

  .footer-inner {
    flex-direction: column;
    gap: 0.9rem;
  }

  .footer-links {
    text-align: left;
  }

  .footer-actions {
    width: 100%;
  }

  .footer-action {
    flex: 1 1 180px;
  }

  .floating-whatsapp {
    right: 0.75rem;
    bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
    padding: 0.75rem 0.95rem;
    font-size: 0.9rem;
  }
}

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

  .best-sellers-list {
    grid-template-columns: 1fr;
  }
}
