:root {
  --green-900: #083c2b;
  --green-700: #0b6b3a;
  --green-600: #177a50;
  --green-850: #115237;
  --green-100: #e8f5df;
  --yellow-400: #ffd447;
  --blue-700: #174ea6;
  --red-500: #d94032;
  --ink: #172018;
  --muted: #667064;
  --line: #dfe7d9;
  --paper: #fffdf5;
  --white: #ffffff;
  --shadow: 0 18px 42px rgba(8, 60, 43, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display",
    "Helvetica Neue", Arial, system-ui, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button,
input,
a {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.top-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 10px 16px;
  background: var(--green-900);
  color: var(--white);
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  font-weight: 700;
  font-size: 0.95rem;
}

.top-strip strong {
  letter-spacing: 0;
  font-weight: 700;
}

.promo-flash {
  color: var(--yellow-400);
  animation: promo-flash 1.15s ease-out infinite;
}

@keyframes promo-flash {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.72;
    transform: scale(0.985);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 6px clamp(16px, 5vw, 64px);
  background: rgba(8, 60, 43, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo {
  width: 48px;
  height: auto;
  object-fit: contain;
  transform: none;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.94rem;
}

.site-header nav a:hover {
  color: var(--white);
}

.header-cta,
.primary-cta,
.secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.header-cta {
  min-height: 40px;
  padding: 0 16px;
  background: var(--yellow-400);
  color: var(--green-900);
}

.primary-cta {
  width: 100%;
  padding: 14px 18px;
  background: #00c853;
  color: var(--white);
  box-shadow: 0 12px 22px rgba(0, 200, 83, 0.3);
  font-size: 1.1rem;
}
.primary-cta:hover {
  background: #00e676;
  box-shadow: 0 14px 28px rgba(0, 230, 118, 0.4);
  transform: translateY(-2px);
}

.secondary-cta {
  padding: 12px 16px;
  background: var(--green-900);
  color: var(--white);
}

.header-cta:hover,
.primary-cta:hover,
.secondary-cta:hover {
  transform: translateY(-1px);
}

.header-cta svg,
.primary-cta svg,
.secondary-cta svg,
.trust-row svg,
.vsl-points svg,
.benefit-grid svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.98fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  width: min(1180px, calc(100% - 32px));
  margin: 34px auto 0;
}

.gallery {
  position: sticky;
  top: 96px;
}

.main-photo-wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.main-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.thumb-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
  padding: 8px;
  transition: all 0.2s ease;
}

.thumb.is-active {
  border: 2px solid var(--green-700);
  padding: 7px;
}

.thumb img {
  display: block;
  width: 100%;
  height: 64px;
  object-fit: contain;
  border-radius: 4px;
}

.purchase-panel {
  padding: 4px 0 0;
}

.microcopy,
.section-heading span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  padding: 6px 12px;
  background: var(--green-100);
  color: var(--green-700);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin: 14px 0 14px;
  color: var(--green-900);
  font-size: 3rem;
  line-height: 1.03;
  letter-spacing: 0;
}

.lead {
  color: var(--muted);
  font-size: 1.08rem;
  letter-spacing: 0;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px;
  background: var(--white);
  color: var(--green-900);
  font-weight: 700;
  font-size: 0.9rem;
}

.price-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 22px 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.price-block div {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.old-price {
  color: var(--muted);
  text-decoration: line-through;
}

.price-block strong {
  color: var(--green-900);
  font-size: 2.1rem;
  line-height: 1;
}

.price-block small {
  color: var(--muted);
}

.sales-proof {
  display: inline-flex;
  width: fit-content;
  margin-top: 8px;
  border-radius: 8px;
  padding: 5px 8px;
  background: var(--green-100);
  color: var(--green-700);
  font-size: 0.82rem;
  font-weight: 800;
}

.secure-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  margin-left: auto;
  padding: 0;
  white-space: nowrap;
}

.secure-badge img {
  display: block;
  width: 122px;
  max-width: 100%;
  height: auto;
}

.buy-box {
  display: grid;
  gap: 20px;
}

fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  margin-bottom: 10px;
  color: var(--green-900);
  font-weight: 900;
}

.size-options {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.size-btn {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--green-900);
  cursor: pointer;
  font-weight: 900;
}

.size-btn.is-active {
  border-color: var(--green-700);
  background: var(--green-700);
  color: var(--white);
}

.size-btn.is-sold-out,
.size-btn:disabled {
  border-color: #e1e6dd;
  background: #f2f4ef;
  color: #9aa49b;
  cursor: not-allowed;
}

.size-note,
.checkout-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.package-list {
  display: grid;
  gap: 10px;
}

.package-option {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 72px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: var(--white);
  cursor: pointer;
}

.quantity-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.quantity-row label {
  color: var(--green-900);
  font-weight: 900;
}

.stepper {
  display: inline-grid;
  grid-template-columns: 44px 54px 44px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.stepper button,
.stepper input {
  min-height: 44px;
  border: 0;
  background: transparent;
  text-align: center;
}

.stepper button {
  display: grid;
  place-items: center;
  cursor: pointer;
}

.stepper input {
  color: var(--green-900);
  font-weight: 900;
}

.vsl-section,
.benefits-section,
.measurement-section,
.reviews-section,
.faq-section,
.final-cta {
  width: min(1180px, calc(100% - 32px));
  margin: 84px auto 0;
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 740px;
  margin-bottom: 24px;
}

.section-heading h2 {
  margin-bottom: 0;
  color: var(--green-900);
  font-size: 2.1rem;
  line-height: 1.13;
}

.vsl-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.6fr);
  gap: 22px;
  align-items: stretch;
}

.video-shell {
  position: relative;
  display: grid;
  min-height: 420px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 28px;
  background:
    linear-gradient(rgba(8, 60, 43, 0.42), rgba(8, 60, 43, 0.7)),
    url("https://acdn-us.mitiendanube.com/stores/007/209/304/products/camisa-selecao-brasileira-pet-copa-2026-5-593ac0310ec0fda85b17773056010596-1024-1024.webp")
      center/cover;
  color: var(--white);
  text-align: center;
}

.video-shell div {
  display: grid;
  gap: 8px;
  max-width: 420px;
}

.video-shell strong {
  font-size: 1.4rem;
}

.video-shell p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
}

.play-button {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--yellow-400);
  color: var(--green-900);
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
}

.play-button svg {
  width: 30px;
  height: 30px;
  margin-left: 4px;
}

.vsl-points {
  display: grid;
  gap: 12px;
}

.vsl-points div {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: var(--white);
  color: var(--green-900);
  font-weight: 700;
}

.vsl-points svg {
  color: var(--blue-700);
}

.benefit-grid,
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.benefit-grid article,
.reviews-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: var(--white);
}

.benefit-grid article {
  display: grid;
  gap: 10px;
}

.benefit-grid svg {
  width: 30px;
  height: 30px;
  color: var(--red-500);
}

.benefit-grid h3,
.reviews-grid strong {
  margin-bottom: 0;
  color: var(--green-900);
}

.benefit-grid p,
.reviews-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.measurement-grid {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 22px;
}

.stars {
  color: #f5b400;
  font-size: 1rem;
}

.measure-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
}

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

.measure-row span {
  min-width: 0;
  color: var(--muted);
  font-size: 1rem;
  overflow-wrap: anywhere;
}

.measure-row span:first-child {
  color: var(--green-900);
  font-weight: 800;
}

.measure-head {
  min-height: 66px;
  border-top: 0;
  background: #f4f8ef;
}

.measure-head span {
  color: var(--green-900);
  font-size: 0.96rem;
  font-weight: 800;
}

.measure-row.is-featured {
  background: #f9fcf5;
}

.measure-row.is-muted {
  opacity: 0.75;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px 18px;
  background: var(--white);
}

summary {
  cursor: pointer;
  color: var(--green-900);
  font-weight: 900;
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(220px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(18px, 3.5vw, 42px);
  align-items: center;
  border-radius: 18px;
  padding: clamp(22px, 4vw, 42px);
  background:
    radial-gradient(circle at 12% 24%, rgba(255, 212, 71, 0.14), transparent 28%),
    linear-gradient(135deg, #064329 0%, #075735 48%, #04331f 100%);
  color: var(--white);
  text-align: left;
  box-shadow: 0 24px 48px rgba(8, 60, 43, 0.18);
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 74%, rgba(255, 255, 255, 0.06), transparent 18%),
    radial-gradient(circle at 86% 18%, rgba(255, 255, 255, 0.05), transparent 16%);
  pointer-events: none;
}

.final-cta-visual,
.final-cta-content {
  position: relative;
  z-index: 2;
}

.final-cta-visual {
  display: grid;
  min-height: 220px;
  place-items: center;
}

.shipping-seal {
  width: clamp(150px, 20vw, 220px);
  height: auto;
  border-radius: 50%;
}

.cta-bone {
  position: absolute;
  color: rgba(255, 255, 255, 0.09);
  pointer-events: none;
}

.cta-bone-one {
  left: 10%;
  top: 18%;
  width: 58px;
  height: 58px;
  transform: rotate(-22deg);
}

.cta-bone-two {
  right: 10%;
  bottom: 16%;
  width: 46px;
  height: 46px;
  transform: rotate(18deg);
}

.final-cta-content {
  display: grid;
  gap: 16px;
}

.offer-pill {
  display: inline-flex;
  width: fit-content;
  background: rgba(255, 255, 255, 0.15);
  color: var(--yellow-400);
  border: 1px solid rgba(255, 212, 71, 0.3);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.final-cta h2 {
  display: grid;
  gap: 4px;
  max-width: 660px;
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(1.9rem, 4vw, 3.35rem);
  line-height: 1.08;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.offer-price-line {
  display: block;
  color: var(--white);
}

.offer-old-price {
  display: inline-block;
  font-size: 0.78em;
  text-decoration: line-through;
  text-decoration-thickness: 3px;
  text-decoration-color: var(--yellow-400);
  opacity: 0.92;
}

.final-cta h2 .offer-new-price {
  display: inline-block;
  color: var(--yellow-400);
  font-size: 1.34em;
  line-height: 0.95;
}

.final-cta p {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.65vw, 1.24rem);
  font-weight: 800;
}

.final-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(100%, 620px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.final-benefits div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 14px;
}

.final-benefits div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.final-benefits svg {
  width: 24px;
  height: 24px;
  color: #d7f4dc;
}

.final-benefits strong {
  color: var(--white);
  font-size: 0.94rem;
  line-height: 1.2;
}

.final-cta .primary-cta {
  width: min(100%, 620px);
  min-width: 0;
  background: var(--yellow-400);
  color: var(--green-900);
  font-size: 1.1rem;
  text-transform: uppercase;
  padding: 16px 26px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(255, 212, 71, 0.3);
}

.final-cta .primary-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 25px rgba(255, 212, 71, 0.4);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  width: min(1180px, calc(100% - 32px));
  margin: 42px auto 0;
  padding: 28px 0 34px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer strong {
  color: var(--green-900);
}

.site-footer p {
  margin: 6px 0 0;
}

.site-footer > div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer a {
  color: var(--green-900);
  font-weight: 800;
}

.checkout-modal {
  width: min(520px, calc(100% - 28px));
  border: 0;
  border-radius: 8px;
  padding: 26px;
  color: var(--ink);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.checkout-modal::backdrop {
  background: rgba(8, 60, 43, 0.58);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}

.modal-summary {
  display: grid;
  gap: 8px;
  margin: 16px 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: var(--paper);
  color: var(--muted);
}

.modal-summary strong {
  color: var(--green-900);
}

.policy-page {
  width: min(920px, calc(100% - 32px));
  margin: 42px auto 80px;
}

.policy-page h1 {
  font-size: 2.4rem;
}

.policy-page section {
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--white);
}

.policy-page li {
  margin-bottom: 8px;
  color: var(--muted);
}

@media (max-width: 960px) {
  .product-hero,
  .vsl-grid,
  .measurement-grid {
    grid-template-columns: 1fr;
  }

  .final-cta {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .final-cta-visual {
    min-height: 210px;
  }

  .final-cta-content,
  .offer-pill,
  .final-cta .primary-cta {
    justify-self: center;
  }

  .gallery {
    position: static;
  }

  .benefit-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 0;
    font-size: 15px;
    line-height: 1.42;
  }

  .top-strip {
    min-height: 32px;
    padding: 6px 12px;
    gap: 0;
    font-size: 0.8rem;
    line-height: 1.2;
  }

  .top-strip strong {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .site-header {
    min-height: 60px;
    flex-wrap: nowrap;
    gap: 12px;
    padding: 10px 16px;
  }

  .site-header nav {
    display: none;
  }

  .brand {
    font-size: 1.02rem;
  }

  .brand-logo {
    width: 58px;
    height: auto;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 13px;
    border-radius: 9px;
    font-size: 0.92rem;
  }

  .product-hero {
    width: min(100% - 24px, 520px);
    gap: 22px;
    margin-top: 18px;
  }

  .main-photo-wrap {
    border-radius: 9px;
    box-shadow: 0 12px 26px rgba(8, 60, 43, 0.12);
  }

  .main-photo {
    aspect-ratio: 1 / 1;
  }

  .thumb-row {
    gap: 8px;
    margin-top: 10px;
  }

  .thumb {
    min-height: 72px;
    height: 72px;
    padding: 6px;
  }

  .thumb.is-active {
    padding: 5px;
  }

  .thumb img {
    min-height: 0;
    height: 100%;
    max-height: 60px;
  }

  .purchase-panel {
    display: flex;
    flex-direction: column;
  }

.microcopy,
.section-heading span {
    padding: 5px 10px;
    font-size: 0.68rem;
    line-height: 1.25;
  }

  h1 {
    margin: 12px 0 8px;
    font-size: 1.62rem;
    line-height: 1.12;
    font-weight: 800;
    overflow-wrap: break-word;
  }

  .lead {
    margin-bottom: 0;
    font-size: 0.96rem;
    line-height: 1.48;
  }

  .price-block {
    order: 4;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    margin: 16px 0 14px;
    padding: 14px;
    border-radius: 9px;
  }

  .price-block strong {
    font-size: 1.85rem;
  }

  .secure-badge img {
    width: 112px;
  }

  .pix-badge {
    padding: 7px 9px;
    border-radius: 8px;
    font-size: 0.74rem;
  }

  .trust-row {
    order: 5;
    gap: 8px;
    margin: 0 0 18px;
  }

  .trust-row span {
    min-height: 34px;
    padding: 7px 9px;
    border-radius: 8px;
    font-size: 0.82rem;
  }

  .buy-box {
    order: 6;
    gap: 16px;
  }

  legend {
    margin-bottom: 8px;
    font-size: 0.95rem;
  }

  .size-btn {
    min-height: 44px;
    border-radius: 8px;
    font-size: 0.9rem;
  }

  .size-note,
  .checkout-note {
    font-size: 0.84rem;
  }

  .package-option {
    min-height: 66px;
    padding: 11px;
    border-radius: 9px;
  }

  .package-option strong,
  .package-option b {
    font-size: 0.92rem;
  }

  .package-option small {
    font-size: 0.78rem;
    line-height: 1.25;
  }

  .primary-cta {
    min-height: 50px;
    border-radius: 9px;
    font-size: 0.98rem;
  }

  .section-heading h2,
  .final-cta h2 {
    font-size: 1.42rem;
    line-height: 1.18;
  }

  .final-cta {
    padding: 26px 18px;
    border-radius: 14px;
  }

  .final-cta-visual {
    min-height: 130px;
  }

  .shipping-seal {
    width: 132px;
  }

  .final-cta p {
    font-size: 1rem;
  }

  .final-benefits {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .final-benefits div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 0;
  }

  .final-benefits div {
    padding: 14px;
  }

  .quantity-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .size-options {
    grid-template-columns: repeat(5, minmax(44px, 1fr));
  }

  .package-option {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .package-option b {
    grid-column: 2;
  }

  .video-shell {
    min-height: 280px;
  }

  .vsl-section,
  .benefits-section,
  .measurement-section,
  .reviews-section,
  .faq-section,
  .final-cta {
    width: min(100% - 24px, 520px);
    margin-top: 58px;
  }

  .measure-table {
    border-radius: 9px;
  }

  .measure-row {
    grid-template-columns: 0.72fr 0.9fr 0.9fr 1.12fr;
    gap: 6px;
    min-height: 58px;
    padding: 0 10px;
  }

  .measure-row span,
  .measure-head span {
    font-size: 0.78rem;
  }
}

@media (hover: none) and (pointer: coarse) {
  .header-cta:hover,
  .primary-cta:hover,
  .secondary-cta:hover,
  .site-header nav a:hover,
  .size-btn:hover,
  .thumb:hover {
    transform: none;
    box-shadow: none;
  }
}

/* ==========================================================================
   Reviews, footer and floating contact
   ========================================================================== */

.top-strip {
  gap: 0;
  text-transform: uppercase;
}

.top-strip strong {
  display: block;
  text-wrap: balance;
}

@media (prefers-reduced-motion: reduce) {
  .promo-flash {
    animation: none;
  }
}

.reviews-section {
  width: min(1180px, calc(100% - 32px));
  margin: 84px auto 0;
  padding: 0;
}

.reviews-section .section-heading {
  max-width: 760px;
}

.reviews-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 1rem;
}

.reviews-summary .stars,
.review-card .stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: #f5b400;
}

.star-filled {
  width: 18px;
  height: 18px;
  fill: currentColor;
  color: #f5b400;
}

.reviews-grid {
  columns: 3 280px;
  column-gap: 16px;
  margin-top: 30px;
}

.review-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  margin: 0 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: var(--white);
  break-inside: avoid;
  box-shadow: 0 10px 24px rgba(8, 60, 43, 0.06);
}

.review-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.reviewer-info {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.reviewer-info strong {
  color: var(--green-900);
  font-size: 1rem;
  line-height: 1.2;
}

.reviewer-info span {
  color: var(--muted);
  font-size: 0.86rem;
}

.review-card blockquote {
  flex: 1;
  margin: 0;
  color: #3d483f;
  font-size: 0.98rem;
  line-height: 1.62;
  text-wrap: pretty;
}

.review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.verified {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 8px;
  padding: 6px 8px;
  background: var(--green-100);
  color: var(--green-700);
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.2;
}

.verified svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
}

.site-footer {
  display: block;
  width: min(1180px, calc(100% - 32px));
  margin: 64px auto 0;
  padding: 34px 0 30px;
  border-top: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
}

.site-footer .footer-container {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(220px, 0.9fr) minmax(240px, 1fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: start;
}

.site-footer .footer-brand {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.footer-logo {
  width: 96px;
  height: auto;
  object-fit: contain;
}

.footer-brand strong,
.footer-security strong,
.footer-payments strong {
  display: block;
  color: var(--green-900);
  font-size: 1rem;
  line-height: 1.25;
}

.footer-brand p,
.footer-payments p {
  margin: 8px 0 0;
  max-width: 440px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
  text-wrap: pretty;
}

.site-footer .footer-security,
.site-footer .footer-payments {
  display: grid;
  gap: 14px;
}

.footer-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #3d483f;
  font-size: 0.94rem;
  line-height: 1.45;
}

.footer-list svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: var(--green-700);
}

.payment-icons {
  display: flex;
  height: 84px;
  align-items: center;
  overflow: hidden;
  max-width: 420px;
}

.payment-methods {
  width: 100%;
  height: 84px;
  object-fit: cover;
  object-position: center;
}

.site-footer > div.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.whatsapp-button {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  display: flex;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #25d366;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.28);
}

.whatsapp-button img {
  width: 34px;
  height: 34px;
  margin-left: 2px;
}

@media (max-width: 1020px) {
  .reviews-grid {
    columns: 2 260px;
  }

  .site-footer .footer-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .reviews-section {
    width: min(100% - 24px, 520px);
    margin-top: 58px;
  }

  .reviews-grid {
    columns: 1;
  }

  .site-footer .footer-container {
    grid-template-columns: 1fr;
  }

  .review-card {
    padding: 18px;
  }

  .review-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    width: min(100% - 24px, 520px);
    margin-top: 52px;
    padding-bottom: 34px;
  }

  .site-footer .footer-brand {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .footer-logo {
    width: 82px;
  }

  .site-footer .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .payment-icons,
  .payment-methods {
    height: 64px;
  }

  .whatsapp-button {
    right: 16px;
    bottom: 24px;
    width: 54px;
    height: 54px;
  }

  .whatsapp-button img {
    width: 30px;
    height: 30px;
  }
}
