/* ===== Yoga na Cadeira — LP conversão ===== */
:root {
  --bg: #fff6ec;
  --bg-soft: #ffe8d2;
  --surface: #ffffff;
  --ink: #101a14;
  --ink-soft: #2a3b32;
  --muted: #5a6b61;
  --line: #f0d9c0;
  --green: #0b7a48;
  --green-deep: #064c2e;
  --green-bright: #12a05c;
  --green-soft: #d8f5e6;
  --cta: #ff3d00;
  --cta-hover: #e03600;
  --cta-text: #ffffff;
  --yellow: #ffc400;
  --yellow-deep: #e6a800;
  --dark: #0a1f16;
  --shadow: 0 16px 40px rgba(6, 40, 24, 0.14);
  --shadow-cta: 0 12px 28px rgba(255, 61, 0, 0.35);
  --radius: 20px;
  --radius-sm: 14px;
  --max: 1100px;
  --narrow: 700px;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --display: "Nunito", system-ui, sans-serif;
  --header-h: 64px;
  --urgency-h: 42px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 80px;
}

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

a {
  color: var(--green-deep);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--cta);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.container {
  width: min(100% - 1.5rem, var(--max));
  margin-inline: auto;
}

.narrow {
  width: min(100% - 1.5rem, var(--narrow));
  margin-inline: auto;
}

.center {
  text-align: center;
}

.muted {
  color: var(--muted);
}

/* ===== Urgency bar ===== */
.urgency-bar {
  background: linear-gradient(90deg, #5b0e00, #9a1a00 40%, #c2410c);
  color: #fff;
  font-size: 0.9rem;
  position: sticky;
  top: 0;
  z-index: 60;
}

.urgency-bar__inner {
  min-height: var(--urgency-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-align: center;
  padding: 0.45rem 0;
}

.urgency-bar p {
  margin: 0;
}

.urgency-bar s {
  opacity: 0.85;
}

.urgency-bar .hl {
  color: var(--yellow);
  font-size: 1.05em;
}

.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 0 rgba(255, 196, 0, 0.7);
  animation: pulse 1.6s infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 196, 0, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 196, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 196, 0, 0);
  }
}

/* ===== Header ===== */
.topbar {
  position: sticky;
  top: var(--urgency-h);
  z-index: 50;
  background: rgba(255, 246, 236, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid transparent;
}

.topbar.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.topbar__inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo {
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--green-deep);
  text-decoration: none;
  margin-right: auto;
}

.nav {
  display: none;
  gap: 1.1rem;
  font-size: 0.92rem;
  font-weight: 600;
}

.nav a {
  color: var(--ink-soft);
  text-decoration: none;
}

.nav a:hover {
  color: var(--green);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 2px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
}

.topbar .btn--sm {
  display: none;
}

@media (min-width: 900px) {
  .nav {
    display: flex;
  }
  .nav-toggle {
    display: none;
  }
  .topbar .btn--sm {
    display: inline-flex;
  }
}

.nav.is-open {
  display: flex;
  position: absolute;
  top: calc(var(--header-h));
  left: 0;
  right: 0;
  flex-direction: column;
  background: var(--bg);
  border-bottom: 2px solid var(--line);
  padding: 1rem 1.25rem 1.25rem;
  gap: 0.85rem;
  box-shadow: var(--shadow);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  border-radius: 999px;
  font-weight: 800;
  font-family: inherit;
  text-decoration: none;
  border: 3px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-align: center;
  line-height: 1.15;
}

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

.btn--cta {
  background: linear-gradient(180deg, #ff5a1f 0%, var(--cta) 100%);
  color: var(--cta-text);
  border-color: #c23000;
  box-shadow: var(--shadow-cta);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
}

.btn--cta:hover {
  background: linear-gradient(180deg, #ff6a33 0%, var(--cta-hover) 100%);
  color: #fff;
}

.btn--sm {
  padding: 0.55rem 1rem;
  font-size: 0.88rem;
  flex-direction: row;
}

.btn--xl {
  padding: 1rem 1.6rem;
  font-size: 1.12rem;
  min-width: min(100%, 340px);
}

.btn--block {
  width: 100%;
}

.btn__sub {
  font-size: 0.72rem;
  font-weight: 600;
  opacity: 0.95;
  letter-spacing: 0.01em;
}

/* ===== Type ===== */
.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cta);
  margin: 0 0 0.65rem;
  background: #ffe4d9;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
}

.eyebrow--light {
  background: rgba(255, 255, 255, 0.15);
  color: var(--yellow);
}

.eyebrow--yellow {
  background: var(--yellow);
  color: var(--dark);
}

h1,
h2,
h3 {
  font-family: var(--display);
  line-height: 1.15;
  font-weight: 900;
  color: var(--ink);
  margin: 0 0 0.85rem;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(1.7rem, 4.5vw, 2.55rem);
}

h2 {
  font-size: clamp(1.5rem, 3.4vw, 2.15rem);
}

h3 {
  font-size: 1.12rem;
  margin-bottom: 0.4rem;
}

.lead {
  font-size: 1.08rem;
  color: var(--ink-soft);
  margin: 0 0 1rem;
}

.text-light {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
}

.text-on-dark {
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}

/* ===== Hero ===== */
.hero {
  padding: 1.75rem 0 2.75rem;
  background:
    radial-gradient(ellipse 90% 70% at 100% 0%, rgba(255, 61, 0, 0.1), transparent 50%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(11, 122, 72, 0.12), transparent 55%),
    var(--bg);
}

/* Mobile: título → imagem → resto */
.hero__grid {
  display: grid;
  gap: 1.25rem;
  align-items: start;
  grid-template-columns: 1fr;
  grid-template-areas:
    "top"
    "media"
    "body";
}

.hero__top {
  grid-area: top;
}

.hero__media {
  grid-area: media;
  display: grid;
  justify-items: center;
  gap: 0.85rem;
  margin: 0.15rem 0 0.35rem;
}

.hero__body {
  grid-area: body;
}

@media (min-width: 920px) {
  .hero__grid {
    grid-template-columns: 1.15fr 0.85fr;
    grid-template-areas:
      "top media"
      "body media";
    gap: 0.75rem 2.5rem;
    align-items: center;
  }

  .hero__media {
    align-self: center;
    margin: 0;
  }

  .hero__top h1 {
    margin-bottom: 0.5rem;
  }
}

.stars {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.7rem;
  margin-bottom: 0.9rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.stars__icons {
  color: #f5a623;
  letter-spacing: 1px;
  font-size: 1.05rem;
}

.hero__lead {
  font-size: 1.06rem;
  color: var(--ink-soft);
  margin: 0 0 1.1rem;
}

.hero__bullets {
  margin: 0 0 1.35rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.hero__bullets li {
  position: relative;
  padding: 0.7rem 0.85rem 0.7rem 2.4rem;
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 12px;
  font-weight: 600;
  color: var(--ink-soft);
}

.hero__bullets li::before {
  content: "✓";
  position: absolute;
  left: 0.7rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  display: grid;
  place-items: center;
}

.hero__cta {
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
}

.hero__cta .btn {
  width: 100%;
  max-width: 360px;
}

@media (min-width: 920px) {
  .hero__cta {
    justify-content: flex-start;
  }

  .hero__cta .btn {
    width: auto;
    max-width: none;
  }
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--green-deep);
  text-align: center;
}

@media (min-width: 920px) {
  .trust-row {
    justify-content: flex-start;
    text-align: left;
  }
}

.book-stack {
  position: relative;
  width: min(100%, 340px);
}

@media (min-width: 920px) {
  .book-stack {
    width: min(100%, 360px);
  }
}

.book-frame {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 3px solid #fff;
  background: #fff;
  transform: rotate(-1.5deg);
}

.badge-float {
  position: absolute;
  z-index: 2;
  font-family: var(--display);
  font-weight: 900;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.badge-float--sale {
  top: -8px;
  left: -8px;
  background: var(--cta);
  color: #fff;
  font-size: 1.35rem;
  padding: 0.55rem 0.9rem;
  border: 3px solid #fff;
  transform: rotate(-8deg);
}

.badge-float--off {
  top: 12px;
  right: -6px;
  background: var(--yellow);
  color: var(--dark);
  font-size: 1rem;
  padding: 0.4rem 0.7rem;
  border: 3px solid #fff;
  transform: rotate(8deg);
}

.mini-proof {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink-soft);
  text-align: center;
  background: var(--green-soft);
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
}

/* ===== Social strip ===== */
.social-strip {
  background: var(--green-deep);
  color: #fff;
  padding: 1.35rem 0;
}

.social-strip__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  text-align: center;
}

.social-strip__grid strong {
  display: block;
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1.1;
}

.social-strip__grid span {
  font-size: 0.88rem;
  opacity: 0.92;
}

@media (min-width: 720px) {
  .social-strip__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ===== Sections ===== */
.section {
  padding: 3.5rem 0;
}

.section--soft {
  background: var(--bg-soft);
}

.section--green {
  background: linear-gradient(160deg, var(--green-deep) 0%, #0a6b40 55%, #0d8a52 100%);
  color: #fff;
}

.section--green h2 {
  color: #fff;
}

.section__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2rem;
}

.section__head--light h2 {
  color: #fff;
}

/* Pain */
.pain-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.25rem 0;
}

.pain-list p {
  margin: 0;
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  background: #fff;
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  font-weight: 600;
  color: var(--ink-soft);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
}

.pain-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cta);
  color: #fff;
  font-weight: 900;
  font-size: 0.9rem;
  display: grid;
  place-items: center;
}

.callout {
  background: var(--yellow);
  color: var(--dark);
  border-radius: var(--radius);
  padding: 1.15rem 1.35rem;
  font-size: 1.12rem;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 10px 24px rgba(230, 168, 0, 0.25);
}

.callout p {
  margin: 0;
}

/* Split */
.split {
  display: grid;
  gap: 1.75rem;
  align-items: start;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2.25rem;
  }
}

.check-list {
  list-style: none;
  margin: 1.2rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.check-list li {
  position: relative;
  padding-left: 1.7rem;
  font-weight: 600;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-bright);
  font-weight: 900;
}

.check-list--light li {
  color: rgba(255, 255, 255, 0.95);
}

.card-dark {
  background: rgba(0, 0, 0, 0.22);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  padding: 1.4rem;
  backdrop-filter: blur(6px);
}

.card-dark h3 {
  color: var(--yellow);
  margin-top: 0;
}

.card-dark ol {
  margin: 0 0 1rem;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
}

.card-dark .danger {
  color: #ffb4a2;
  font-weight: 800;
}

.card-dark__footer {
  margin: 0;
  font-weight: 800;
  color: #fff;
  background: rgba(255, 196, 0, 0.18);
  padding: 0.75rem;
  border-radius: 10px;
  border-left: 4px solid var(--yellow);
}

/* Features */
.features {
  display: grid;
  gap: 0.9rem;
}

@media (min-width: 700px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .features {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  position: relative;
  overflow: hidden;
}

.feature__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--green-soft);
  color: var(--green-deep);
  font-weight: 900;
  font-family: var(--display);
  margin-bottom: 0.75rem;
}

.feature p {
  margin: 0 0 0.75rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.feature__value {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--muted);
  text-decoration: line-through;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* Value banner */
.value-banner {
  margin-top: 1.5rem;
  background: var(--dark);
  color: #fff;
  border-radius: var(--radius);
  padding: 1.35rem 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.85rem;
  box-shadow: var(--shadow);
}

.value-banner__label {
  display: block;
  font-size: 0.8rem;
  opacity: 0.8;
  font-weight: 600;
}

.value-banner__old {
  font-size: 1.35rem;
  font-weight: 800;
  text-decoration: line-through;
  opacity: 0.7;
}

.value-banner__new {
  font-family: var(--display);
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}

.value-banner__arrow {
  font-size: 1.5rem;
  color: var(--yellow);
  font-weight: 900;
  display: none;
}

/* Botão de compra grande no mobile */
.value-banner .btn {
  width: 100%;
  max-width: 100%;
  min-height: 56px;
  padding: 1rem 1.25rem;
  font-size: 1.1rem;
  border-radius: 999px;
  margin-top: 0.25rem;
}

@media (min-width: 720px) {
  .value-banner {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    text-align: left;
    gap: 1rem 1.5rem;
    padding: 1.25rem 1.35rem;
  }

  .value-banner__arrow {
    display: block;
  }

  .value-banner__new {
    font-size: 2.4rem;
  }

  .value-banner .btn {
    width: auto;
    min-width: 200px;
    margin-top: 0;
  }
}

/* Diff */
.diff-grid {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 700px) {
  .diff-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .diff-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.diff {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.15rem;
}

.diff p {
  margin: 0;
  color: var(--ink-soft);
  font-weight: 500;
}

/* Steps */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 800px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.steps li {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem;
}

.steps__num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--cta);
  color: #fff;
  font-weight: 900;
  font-family: var(--display);
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  box-shadow: 0 6px 14px rgba(255, 61, 0, 0.3);
}

.steps p {
  margin: 0;
  color: var(--ink-soft);
  font-weight: 500;
}

/* Prova social — fotos */
.proof-photos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 0 0 1rem;
  max-width: 420px;
  margin-inline: auto;
}

@media (min-width: 640px) {
  .proof-photos {
    grid-template-columns: repeat(2, 1fr);
    max-width: 720px;
    gap: 1rem;
  }
}

@media (min-width: 1000px) {
  .proof-photos {
    grid-template-columns: repeat(4, 1fr);
    max-width: none;
    gap: 1rem;
    align-items: start;
  }
}

.proof-photos__item {
  margin: 0;
  background: #111;
  border: 2px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.proof-photos__item img {
  width: 100%;
  height: auto;
  display: block;
  /* proporção original — sem crop */
  object-fit: contain;
  vertical-align: middle;
}

.legal-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
  margin: 1.25rem 0 0;
}

/* ===== OFFER / PRICE (hero da conversão) ===== */
.section--buy {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255, 196, 0, 0.12), transparent 55%),
    linear-gradient(180deg, #083822 0%, var(--dark) 100%);
  color: #fff;
  padding: 3.5rem 0 3rem;
}

.offer {
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
}

@media (min-width: 900px) {
  .offer {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 1.5rem;
  }
}

.offer__media {
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 1.1rem;
  display: grid;
  gap: 1rem;
  align-content: start;
}

.offer__media img {
  border-radius: 16px;
  width: 100%;
  max-width: 360px;
  margin-inline: auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.offer__includes {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: #d8f5e6;
}

.offer__box {
  background: #fff;
  color: var(--ink);
  border-radius: 24px;
  padding: 1.35rem 1.25rem 1.5rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  border: 4px solid var(--yellow);
  position: relative;
}

.offer__badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--dark);
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  padding: 0.45rem 0.75rem;
  border-radius: 8px;
  margin-bottom: 0.85rem;
}

.offer__title {
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
}

.offer__sub {
  margin: 0 0 1rem;
  color: var(--muted);
  font-weight: 600;
}

/* PRICE BOX — máximo contraste */
.price-box {
  background: linear-gradient(145deg, #0b5e3c 0%, #064c2e 100%);
  color: #fff;
  border-radius: 18px;
  padding: 1.25rem 1rem 1.1rem;
  text-align: center;
  margin-bottom: 1rem;
  border: 3px solid #12a05c;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.price-box__compare {
  font-size: 1rem;
  font-weight: 700;
  opacity: 0.9;
  margin-bottom: 0.15rem;
}

.price-box__compare s {
  font-size: 1.35rem;
  color: #ffb4a2;
  text-decoration-thickness: 3px;
}

.price-box__main {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.2rem;
  line-height: 0.9;
  margin: 0.2rem 0 0.45rem;
}

.price-box__currency {
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.75rem;
  margin-top: 0.55rem;
  color: var(--yellow);
}

.price-box__amount {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(4.5rem, 14vw, 6rem);
  color: #fff;
  letter-spacing: -0.04em;
  text-shadow: 0 4px 0 rgba(0, 0, 0, 0.2);
}

.price-box__save {
  display: inline-block;
  background: var(--yellow);
  color: var(--dark);
  font-weight: 900;
  font-size: 0.95rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 0.45rem;
}

.price-box__note {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
  opacity: 0.9;
}

.guarantee-chip {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background: #e8fff3;
  border: 2px solid #8fd9b0;
  border-radius: 14px;
  padding: 0.9rem;
  margin: 1rem 0;
}

.guarantee-chip__icon {
  font-size: 1.5rem;
  line-height: 1;
}

.guarantee-chip strong {
  display: block;
  color: var(--green-deep);
  font-size: 1rem;
}

.guarantee-chip p {
  margin: 0.15rem 0 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
  font-weight: 600;
}

.offer__trust {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink-soft);
}

.specs-note {
  font-size: 0.82rem;
  color: var(--muted);
}

.specs-note--center {
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
  margin: 1.25rem auto 0;
  max-width: 640px;
}

/* Garantia banner */
.guarantee-banner {
  display: grid;
  gap: 1.25rem;
  align-items: center;
  background: #fff;
  border: 3px solid var(--green);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

@media (min-width: 700px) {
  .guarantee-banner {
    grid-template-columns: auto 1fr;
    gap: 1.75rem;
    padding: 1.75rem 2rem;
  }
}

.guarantee-banner__seal {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #1abf6e, var(--green-deep));
  color: #fff;
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.05rem;
  line-height: 1.15;
  display: grid;
  place-items: center;
  text-align: center;
  border: 4px solid var(--yellow);
  box-shadow: 0 10px 24px rgba(11, 122, 72, 0.35);
  margin-inline: auto;
}

.guarantee-banner h2 {
  margin-bottom: 0.5rem;
}

.guarantee-banner p {
  margin: 0 0 0.65rem;
  color: var(--ink-soft);
  font-weight: 500;
}

.guarantee-banner__punch {
  font-weight: 800 !important;
  color: var(--ink) !important;
  font-size: 1.05rem;
}

/* FAQ */
.faq {
  display: grid;
  gap: 0.6rem;
}

.faq__item {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 1.15rem;
  font-weight: 800;
  color: var(--ink);
  position: relative;
  padding-right: 2.5rem;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--cta);
  font-size: 1.4rem;
  font-weight: 700;
}

.faq__item[open] summary::after {
  content: "−";
}

.faq__item[open] {
  border-color: var(--green);
  box-shadow: 0 8px 20px rgba(11, 122, 72, 0.08);
}

.faq__body {
  padding: 0 1.15rem 1.1rem;
  color: var(--ink-soft);
  font-weight: 500;
}

.faq__body p {
  margin: 0;
}

/* Final CTA */
.final-cta {
  background:
    radial-gradient(ellipse 70% 80% at 50% 100%, rgba(255, 61, 0, 0.1), transparent 55%),
    var(--bg);
}

.final-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.75rem;
  margin: 1rem 0 1.25rem;
}

.final-price s {
  font-size: 1.4rem;
  color: var(--muted);
  font-weight: 700;
}

.final-price strong {
  font-family: var(--display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--cta);
  line-height: 1;
}

.ps {
  text-align: left;
  background: #fff;
  border: 2px solid var(--line);
  border-left: 6px solid var(--yellow);
  border-radius: var(--radius-sm);
  padding: 1rem 1.15rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
  font-weight: 500;
  margin-top: 1.75rem;
}

/* Footer */
.footer {
  border-top: 2px solid var(--line);
  padding: 1.5rem 0 2rem;
  background: #fff0e0;
}

.footer__inner {
  display: grid;
  gap: 0.3rem;
  text-align: center;
  font-size: 0.9rem;
}

.footer p {
  margin: 0;
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.7rem 1rem;
  background: #fff;
  border-top: 3px solid var(--cta);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.12);
}

.sticky-cta[hidden] {
  display: none !important;
}

.sticky-cta__price {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
}

.sticky-cta__price s {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.95rem;
}

.sticky-cta__price strong {
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--cta);
}

.sticky-cta .btn {
  flex-direction: row;
  padding: 0.75rem 1.2rem;
  font-size: 0.95rem;
}

@media (min-width: 900px) {
  body {
    padding-bottom: 0;
  }
  .sticky-cta {
    display: none !important;
  }
}

/* ===== Lifestyle photo ===== */
.section--lifestyle {
  padding-top: 0;
}

.lifestyle {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

@media (min-width: 900px) {
  .lifestyle {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 0;
  }
}

.lifestyle__photo {
  min-height: 260px;
  background: var(--green-soft);
}

.lifestyle__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
  max-height: 460px;
}

@media (min-width: 900px) {
  .lifestyle__photo img {
    max-height: none;
    min-height: 100%;
  }
}

.lifestyle__copy {
  padding: 1.5rem 1.35rem 1.75rem;
}

@media (min-width: 900px) {
  .lifestyle__copy {
    padding: 2rem 2rem 2.1rem 1.75rem;
  }
}

.lifestyle__copy p {
  color: var(--ink-soft);
  font-weight: 500;
}

.lifestyle__cta {
  display: flex;
  justify-content: center;
  margin-top: 1.15rem;
}

.lifestyle__cta .btn {
  width: 100%;
  max-width: 360px;
  min-height: 56px;
  font-size: 1.08rem;
  padding: 1rem 1.4rem;
}

@media (min-width: 900px) {
  .lifestyle__cta {
    justify-content: flex-start;
  }

  .lifestyle__cta .btn {
    width: auto;
    max-width: none;
  }
}

/* ===== Gallery por dentro ===== */
.gallery {
  display: grid;
  gap: 1rem;
}

@media (min-width: 800px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery__item--wide {
    grid-column: 1 / -1;
  }
}

.gallery__item {
  margin: 0;
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
}

.gallery__item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #f3f0ea;
}

.gallery__item--wide img {
  aspect-ratio: 16 / 9;
}

.gallery__item figcaption {
  padding: 1rem 1.15rem 1.15rem;
  display: grid;
  gap: 0.25rem;
}

.gallery__item figcaption strong {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--ink);
}

.gallery__item figcaption span {
  font-size: 0.92rem;
  color: var(--ink-soft);
  font-weight: 500;
}

.gallery-cta {
  display: flex;
  justify-content: center;
  margin-top: 1.75rem;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .pulse-dot {
    animation: none;
  }
  .btn:hover {
    transform: none;
  }
  .gallery__item:hover {
    transform: none;
  }
}
