.lp-cr-root {
  font-family: "Poppins", system-ui, -apple-system, sans-serif;
  background: #F9F7F5;
  color: #111827;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
.lp-cr-root * {
  box-sizing: border-box;
}
.lp-cr-root img {
  max-width: 100%;
  height: auto;
  display: block;
}
.lp-cr-root button {
  font-family: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  padding: 0;
  color: inherit;
}
.lp-cr-root a {
  color: inherit;
  text-decoration: none;
}
.lp-cr-root p {
  margin: 0;
}
.lp-cr-root h1, .lp-cr-root h2, .lp-cr-root h3 {
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.lp-cr-root [hidden] {
  display: none !important;
}
.lp-cr-root .lp-cr-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.lp-cr-root .lp-cr-ticker {
  background: #3F6B45;
  overflow: hidden;
  padding: 8px 0;
  position: relative;
}
.lp-cr-root .lp-cr-ticker-track {
  display: inline-flex;
  white-space: nowrap;
  animation: lp-cr-marquee 35s linear infinite;
}
.lp-cr-root .lp-cr-ticker-item {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 0 24px;
}
@keyframes lp-cr-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.lp-cr-root .lp-cr-hero {
  background: #fff;
  padding: 24px 0 32px;
}
.lp-cr-root .lp-cr-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}
.lp-cr-root .lp-cr-hero-grid > * {
  min-width: 0;
  max-width: 100%;
}
@media (min-width: 880px) {
  .lp-cr-root .lp-cr-hero-grid {
    grid-template-columns: 1.05fr 1fr;
    gap: 48px;
  }
}
.lp-cr-root .lp-cr-urgency-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.lp-cr-root .lp-cr-urgency-card {
  background: linear-gradient(90deg, #3F6B45, #345A3A);
  color: #fff;
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 8px 16px rgba(63, 107, 69, 0.2);
}
.lp-cr-root .lp-cr-urgency-badge {
  display: inline-block;
  background: #FFD830;
  color: #3d2a00;
  font-size: 10px;
  font-weight: 900;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.lp-cr-root .lp-cr-urgency-title {
  font-weight: 800;
  font-size: 15px;
  line-height: 1.2;
}
.lp-cr-root .lp-cr-urgency-sub {
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  margin-top: 2px;
}
.lp-cr-root .lp-cr-stock-card {
  background: #fff;
  border: 2px solid rgba(63, 107, 69, 0.3);
  border-radius: 12px;
  padding: 10px 14px;
}
.lp-cr-root .lp-cr-stock-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.lp-cr-root .lp-cr-stock-label {
  color: #111827;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 6px;
}
.lp-cr-root .lp-cr-stock-pulse {
  width: 8px;
  height: 8px;
  background: #ef4444;
  border-radius: 50%;
  animation: lp-cr-pulse 1.5s ease-out infinite;
}
@keyframes lp-cr-pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}
.lp-cr-root .lp-cr-stock-num {
  color: #3F6B45;
  font-weight: 900;
  font-size: 14px;
  font-variant-numeric: tabular-nums;
}
.lp-cr-root .lp-cr-stock-bar {
  height: 8px;
  background: #F3F4F6;
  border-radius: 999px;
  overflow: hidden;
}
.lp-cr-root .lp-cr-stock-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #ef4444, #3F6B45);
  border-radius: 999px;
  width: 50%;
  transition: width 0.5s ease;
}
.lp-cr-root .lp-cr-stock-foot {
  font-size: 10px;
  color: #9CA3AF;
  margin-top: 4px;
}
.lp-cr-root .lp-cr-countdown {
  background: #3d2a00;
  color: #FFD830;
  border-radius: 12px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}
.lp-cr-root .lp-cr-countdown-label {
  font-size: 12px;
  font-weight: 700;
  margin-right: 4px;
}
.lp-cr-root .lp-cr-countdown-cell {
  background: #FFD830;
  color: #3d2a00;
  font-weight: 800;
  font-size: 14px;
  padding: 2px 8px;
  border-radius: 6px;
  font-variant-numeric: tabular-nums;
  min-width: 32px;
  text-align: center;
}
.lp-cr-root .lp-cr-countdown-sep {
  font-weight: 800;
  font-size: 14px;
}
.lp-cr-root .lp-cr-gallery {
  width: 100%;
}
.lp-cr-root .lp-cr-gallery-main {
  width: 100%;
  max-width: 540px;
  aspect-ratio: 4/5;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  margin: 0 auto 12px;
  touch-action: pan-y;
}
.lp-cr-root .lp-cr-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 0;
  -webkit-user-drag: none;
  user-select: none;
}
.lp-cr-root .lp-cr-gallery-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin: 0 0 12px;
}
.lp-cr-root .lp-cr-gallery-dot {
  height: 8px;
  background: #D1D5DB;
  border-radius: 999px;
  width: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 0;
}
.lp-cr-root .lp-cr-gallery-dot.is-active {
  background: #3F6B45;
  width: 20px;
}
.lp-cr-root .lp-cr-gallery-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}
.lp-cr-root .lp-cr-gallery-thumb {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color 0.2s;
  cursor: pointer;
  padding: 0;
  background: #f3f4f6;
}
.lp-cr-root .lp-cr-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lp-cr-root .lp-cr-gallery-thumb.is-active {
  border-color: #3F6B45;
}
.lp-cr-root .lp-cr-stars-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.lp-cr-root .lp-cr-stars {
  color: #3F6B45;
  font-size: 16px;
  letter-spacing: 1px;
}
.lp-cr-root .lp-cr-stars-text {
  color: #6B7280;
  font-size: 12px;
  font-weight: 500;
}
.lp-cr-root .lp-cr-promo-badge {
  display: inline-flex;
  background: #ef4444;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  animation: lp-cr-soft-pulse 1.6s ease-in-out infinite;
}
@keyframes lp-cr-soft-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.65;
  }
}
.lp-cr-root .lp-cr-h1 {
  font-size: 28px;
  line-height: 1.1;
  margin-bottom: 4px;
}
@media (min-width: 880px) {
  .lp-cr-root .lp-cr-h1 {
    font-size: 36px;
  }
}
.lp-cr-root .lp-cr-subtitle {
  color: #9CA3AF;
  font-size: 14px;
  margin-bottom: 16px;
}
.lp-cr-root .lp-cr-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.lp-cr-root .lp-cr-chip {
  font-size: 12px;
  background: #F3F4F6;
  color: #111827;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 999px;
}
.lp-cr-root .lp-cr-chip.lp-cr-chip-pink {
  background: #F0F5EC;
  color: #3F6B45;
  font-weight: 700;
}
.lp-cr-root .lp-cr-science {
  margin-top: 20px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #D8E5CE;
}
.lp-cr-root .lp-cr-science-top {
  background: #F3F7EF;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 16px;
}
.lp-cr-root .lp-cr-science-cell {
  text-align: center;
}
.lp-cr-root .lp-cr-science-cell .lp-cr-science-cell-title {
  font-size: 14px;
  font-weight: 800;
  color: #111827;
  line-height: 1.1;
}
.lp-cr-root .lp-cr-science-cell .lp-cr-science-cell-big {
  font-size: 20px;
  font-weight: 800;
  color: #3F6B45;
  line-height: 1.1;
}
.lp-cr-root .lp-cr-science-cell .lp-cr-science-cell-strike {
  font-size: 14px;
  font-weight: 800;
  color: #111827;
  text-decoration: line-through;
  text-decoration-color: #f87171;
}
.lp-cr-root .lp-cr-science-cell .lp-cr-science-cell-sub {
  font-size: 14px;
  font-weight: 700;
  color: #9CA3AF;
}
.lp-cr-root .lp-cr-science-divider {
  width: 1px;
  height: 48px;
  background: #D8E5CE;
}
.lp-cr-root .lp-cr-science-benefits {
  background: #3F6B45;
  padding: 16px 12px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.lp-cr-root .lp-cr-sb {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.lp-cr-root .lp-cr-sb .lp-cr-sb-icon {
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}
.lp-cr-root .lp-cr-sb p {
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
}
.lp-cr-root .lp-cr-delivery {
  margin-top: 16px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 12px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.lp-cr-root .lp-cr-delivery-icon {
  font-size: 22px;
  flex-shrink: 0;
}
.lp-cr-root .lp-cr-delivery-title {
  font-size: 14px;
  font-weight: 700;
  color: #166534;
}
.lp-cr-root .lp-cr-delivery-sub {
  font-size: 12px;
  color: #15803d;
}
.lp-cr-root .lp-cr-packsel {
  margin-top: 4px;
}
.lp-cr-root .lp-cr-packsel-label {
  font-weight: 700;
  color: #111827;
  font-size: 14px;
  margin-bottom: 8px;
  margin-top: 16px;
}
.lp-cr-root .lp-cr-format-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.lp-cr-root .lp-cr-format-btn {
  position: relative;
  border: 2px solid #E5E7EB;
  background: #fff;
  border-radius: 16px;
  padding: 12px;
  text-align: left;
  transition: all 0.18s ease;
}
.lp-cr-root .lp-cr-format-btn img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 8px;
}
.lp-cr-root .lp-cr-format-btn .lp-cr-format-title {
  font-size: 14px;
  font-weight: 800;
  color: #111827;
}
.lp-cr-root .lp-cr-format-btn .lp-cr-format-sub {
  font-size: 12px;
  color: #9CA3AF;
}
.lp-cr-root .lp-cr-format-btn .lp-cr-format-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #FFD830;
  color: #3d2a00;
  font-size: 9px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 999px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.lp-cr-root .lp-cr-format-btn.is-active {
  border-color: #3F6B45;
  background: #F3F7EF;
}
.lp-cr-root .lp-cr-urgency-strip {
  margin-top: 12px;
  background: #ef4444;
  color: #fff;
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.lp-cr-root .lp-cr-urgency-strip .lp-cr-urgency-strip-icon {
  font-size: 22px;
  flex-shrink: 0;
}
.lp-cr-root .lp-cr-urgency-strip .lp-cr-urgency-strip-title {
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}
.lp-cr-root .lp-cr-urgency-strip .lp-cr-urgency-strip-sub {
  color: rgba(255, 255, 255, 0.9);
  font-size: 10px;
  margin-top: 2px;
}
.lp-cr-root .lp-cr-pack-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lp-cr-root .lp-cr-pack {
  border: 2px solid #E5E7EB;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.18s ease;
  background: #fff;
}
.lp-cr-root .lp-cr-pack.is-selected {
  border-color: #3F6B45;
  box-shadow: 0 6px 14px rgba(63, 107, 69, 0.15);
}
.lp-cr-root .lp-cr-pack-bestvalue {
  background: #3F6B45;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-align: center;
  padding: 5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.lp-cr-root .lp-cr-pack-row {
  width: 100%;
  text-align: left;
  padding: 14px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  transition: background 0.15s;
}
.lp-cr-root .lp-cr-pack-row:hover {
  background: #fafafa;
}
.lp-cr-root .lp-cr-pack.is-selected .lp-cr-pack-row {
  background: #F3F7EF;
}
.lp-cr-root .lp-cr-pack-radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #d1d5db;
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
}
.lp-cr-pack.is-selected .lp-cr-root .lp-cr-pack-radio {
  border-color: #3F6B45;
  background: #3F6B45;
}
.lp-cr-pack.is-selected .lp-cr-root .lp-cr-pack-radio::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
}
.lp-cr-root .lp-cr-pack-info {
  flex: 1;
  min-width: 0;
}
.lp-cr-root .lp-cr-pack-titlerow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.lp-cr-root .lp-cr-pack-title {
  font-weight: 800;
  font-size: 16px;
  color: #111827;
}
.lp-cr-root .lp-cr-pack-discount {
  font-size: 10px;
  background: #dcfce7;
  color: #15803d;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
}
.lp-cr-root .lp-cr-pack-sub {
  font-size: 12px;
  color: #9CA3AF;
  margin-top: 2px;
}
.lp-cr-root .lp-cr-pack-extras {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}
.lp-cr-root .lp-cr-pack-extras span {
  font-size: 10px;
  color: #15803d;
  font-weight: 600;
}
.lp-cr-root .lp-cr-pack-price {
  text-align: right;
  flex-shrink: 0;
}
.lp-cr-root .lp-cr-pack-old {
  font-size: 12px;
  color: #9CA3AF;
  text-decoration: line-through;
}
.lp-cr-root .lp-cr-pack-now {
  font-weight: 800;
  font-size: 18px;
  line-height: 1.1;
  color: #111827;
}
.lp-cr-pack[data-is-sub="1"] .lp-cr-root .lp-cr-pack-now {
  color: #3F6B45;
}
.lp-cr-root .lp-cr-pack-per {
  font-size: 12px;
  color: #9CA3AF;
}
.lp-cr-root .lp-cr-pack-cta-wrap {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 0 14px 14px;
  background: #fff;
}
.lp-cr-root .lp-cr-pack.is-selected .lp-cr-pack-cta-wrap {
  display: flex;
}
.lp-cr-root .lp-cr-sub-toggle {
  display: flex;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  overflow: hidden;
}
.lp-cr-root .lp-cr-sub-btn {
  flex: 1;
  padding: 10px;
  font-size: 12px;
  font-weight: 700;
  color: #9CA3AF;
  transition: all 0.18s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.lp-cr-root .lp-cr-sub-btn.is-active {
  background: #111827;
  color: #fff;
}
.lp-cr-root .lp-cr-sub-badge {
  font-size: 10px;
  font-weight: 800;
  background: rgba(63, 107, 69, 0.1);
  color: #3F6B45;
  padding: 2px 6px;
  border-radius: 6px;
}
.lp-cr-sub-btn.is-active .lp-cr-root .lp-cr-sub-badge {
  background: #3F6B45;
  color: #fff;
}
.lp-cr-root .lp-cr-cta {
  background: #3F6B45;
  color: #fff;
  font-weight: 800;
  padding: 14px 16px;
  border-radius: 16px;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(63, 107, 69, 0.3);
  transition: all 0.18s ease;
  animation: lp-cr-cta-pulse 2.2s ease-in-out infinite;
  display: block;
}
.lp-cr-root .lp-cr-cta:hover {
  background: #345A3A;
}
.lp-cr-root .lp-cr-cta:active {
  transform: scale(0.98);
}
@keyframes lp-cr-cta-pulse {
  0%, 100% {
    box-shadow: 0 6px 16px rgba(63, 107, 69, 0.3);
  }
  50% {
    box-shadow: 0 0 0 14px rgba(63, 107, 69, 0);
  }
}
.lp-cr-root .lp-cr-sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: #fff;
  border-top: 2px solid #3F6B45;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.15);
}
.lp-cr-root .lp-cr-sticky-top {
  background: #ef4444;
  padding: 6px 12px;
  text-align: center;
}
.lp-cr-root .lp-cr-sticky-top p {
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}
.lp-cr-root .lp-cr-sticky-bottom {
  padding: 12px;
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.lp-cr-root .lp-cr-sticky-cta {
  background: #3F6B45;
  color: #fff;
  font-weight: 800;
  padding: 14px 28px;
  border-radius: 16px;
  font-size: 15px;
  box-shadow: 0 6px 14px rgba(63, 107, 69, 0.3);
  transition: all 0.18s ease;
  cursor: pointer;
}
.lp-cr-root .lp-cr-sticky-cta:hover {
  background: #345A3A;
}
.lp-cr-root .lp-cr-sticky-cta:active {
  transform: scale(0.97);
}
.lp-cr-root .lp-cr-sticky-close {
  padding: 6px 10px;
  color: #9CA3AF;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.lp-cr-root .lp-cr-section {
  padding: 56px 0;
}
@media (min-width: 880px) {
  .lp-cr-root .lp-cr-section {
    padding: 72px 0;
  }
}
.lp-cr-root .lp-cr-section-white {
  background: #fff;
}
.lp-cr-root .lp-cr-section-warm {
  background: #F9F7F5;
}
.lp-cr-root .lp-cr-narrow {
  max-width: 760px;
}
.lp-cr-root .lp-cr-section-head {
  text-align: center;
  margin-bottom: 36px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.lp-cr-root .lp-cr-eyebrow {
  color: #3F6B45;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: inline-block;
  margin-bottom: 8px;
}
.lp-cr-root .lp-cr-h2 {
  font-size: 26px;
  line-height: 1.15;
}
@media (min-width: 880px) {
  .lp-cr-root .lp-cr-h2 {
    font-size: 34px;
  }
}
.lp-cr-root .lp-cr-section-sub {
  color: #6B7280;
  font-size: 14px;
  margin-top: 10px;
  line-height: 1.55;
}
.lp-cr-root .lp-cr-pink {
  color: #3F6B45;
}
.lp-cr-root .lp-cr-mb-12 {
  margin-bottom: 48px;
}
.lp-cr-root .lp-cr-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 720px) {
  .lp-cr-root .lp-cr-grid-2 {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
.lp-cr-root .lp-cr-grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 720px) {
  .lp-cr-root .lp-cr-grid-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
.lp-cr-root .lp-cr-grid-3-sm {
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (min-width: 720px) {
  .lp-cr-root .lp-cr-grid-3-sm {
    gap: 20px;
  }
}
.lp-cr-root .lp-cr-card {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}
.lp-cr-root .lp-cr-section-cta {
  text-align: center;
  margin-top: 36px;
}
.lp-cr-root .lp-cr-cta-block {
  display: inline-block;
  padding: 16px 40px;
}
.lp-cr-root .lp-cr-stars-center {
  justify-content: center;
}
.lp-cr-root .lp-cr-stars-sm {
  font-size: 12px;
  letter-spacing: 0.5px;
}
.lp-cr-root .lp-cr-cinco {
  background: linear-gradient(90deg, #3d2a00, #1a1a1a, #3d2a00);
  border-bottom: 2px solid #FFD830;
  padding: 10px 12px;
}
.lp-cr-root .lp-cr-cinco-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
@media (min-width: 600px) {
  .lp-cr-root .lp-cr-cinco-inner {
    flex-direction: row;
    justify-content: center;
    gap: 16px;
  }
}
.lp-cr-root .lp-cr-cinco-label {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #FFD830;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.lp-cr-root .lp-cr-cinco-flame {
  font-size: 14px;
  animation: lp-cr-soft-pulse 1.6s ease-in-out infinite;
}
.lp-cr-root .lp-cr-cinco-cd {
  display: flex;
  gap: 6px;
}
.lp-cr-root .lp-cr-cinco-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lp-cr-root .lp-cr-cinco-num {
  background: #FFD830;
  color: #3d2a00;
  font-weight: 900;
  font-size: 18px;
  padding: 4px 10px;
  border-radius: 8px;
  font-variant-numeric: tabular-nums;
  min-width: 40px;
  text-align: center;
  line-height: 1;
}
@media (min-width: 600px) {
  .lp-cr-root .lp-cr-cinco-num {
    font-size: 22px;
    min-width: 48px;
  }
}
.lp-cr-root .lp-cr-cinco-lbl {
  color: rgba(255, 216, 48, 0.8);
  font-size: 8px;
  font-weight: 700;
  margin-top: 3px;
  letter-spacing: 0.15em;
}
@media (min-width: 600px) {
  .lp-cr-root .lp-cr-cinco-lbl {
    font-size: 9px;
  }
}
.lp-cr-root .lp-cr-cinco-coupon {
  color: rgba(255, 255, 255, 0.85);
  font-size: 11px;
  text-decoration: underline;
  text-underline-offset: 2px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.lp-cr-root .lp-cr-cinco-coupon:hover {
  color: #fff;
}
.lp-cr-root .lp-cr-icon-card {
  display: flex;
  gap: 16px;
  padding: 20px;
}
.lp-cr-root .lp-cr-icon-card-icon {
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
}
.lp-cr-root .lp-cr-icon-card-title {
  font-weight: 700;
  color: #111827;
  margin-bottom: 4px;
  font-size: 15px;
}
.lp-cr-root .lp-cr-icon-card-desc {
  color: #6B7280;
  font-size: 13px;
  line-height: 1.55;
}
.lp-cr-root .lp-cr-spbanner {
  background: #3F6B45;
  color: #fff;
  text-align: center;
  padding: 24px 16px;
}
.lp-cr-root .lp-cr-spbanner-title {
  font-size: 16px;
  font-weight: 800;
}
.lp-cr-root .lp-cr-spbanner-sub {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 600;
  margin-top: 4px;
}
.lp-cr-root .lp-cr-zigzag {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.lp-cr-root .lp-cr-zigzag-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  background: #F9F7F5;
  border-radius: 24px;
  padding: 24px;
}
@media (min-width: 720px) {
  .lp-cr-root .lp-cr-zigzag-item {
    flex-direction: row;
    gap: 24px;
    padding: 32px;
  }
}
@media (min-width: 720px) {
  .lp-cr-root .lp-cr-zigzag-rev {
    flex-direction: row-reverse;
  }
}
.lp-cr-root .lp-cr-zigzag-num {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: #3F6B45;
  color: #fff;
  font-weight: 900;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-cr-root .lp-cr-zigzag-title {
  font-size: 18px;
  margin-bottom: 6px;
}
.lp-cr-root .lp-cr-zigzag-desc {
  color: #6B7280;
  font-size: 14px;
  line-height: 1.65;
}
.lp-cr-root .lp-cr-diff-card {
  padding: 22px;
  background: #F9F7F5;
}
.lp-cr-root .lp-cr-diff-tag {
  font-size: 10px;
  font-weight: 800;
  color: #3F6B45;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.lp-cr-root .lp-cr-diff-title {
  font-size: 16px;
  margin: 8px 0;
}
.lp-cr-root .lp-cr-diff-desc {
  color: #6B7280;
  font-size: 13px;
  line-height: 1.6;
}
.lp-cr-root .lp-cr-vs {
  position: relative;
}
.lp-cr-root .lp-cr-vs-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1f2937;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 13px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
}
.lp-cr-root .lp-cr-vs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.lp-cr-root .lp-cr-vs-card {
  border-radius: 22px;
  padding: 18px;
  border: 2px solid #E5E7EB;
}
.lp-cr-root .lp-cr-vs-card.lp-cr-vs-gum {
  background: linear-gradient(180deg, #F3F7EF, #fff);
  border-color: #3F6B45;
  box-shadow: 0 4px 10px rgba(63, 107, 69, 0.1);
}
.lp-cr-root .lp-cr-vs-card.lp-cr-vs-polvo {
  background: #f9fafb;
  border-color: #e5e7eb;
}
.lp-cr-root .lp-cr-vs-head {
  text-align: center;
  margin-bottom: 14px;
}
.lp-cr-root .lp-cr-vs-pill {
  display: inline-block;
  background: #3F6B45;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.lp-cr-root .lp-cr-vs-pill.lp-cr-vs-pill-gray {
  background: #d1d5db;
  color: #6B7280;
}
.lp-cr-root .lp-cr-vs-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lp-cr-root .lp-cr-vs-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.lp-cr-root .lp-cr-vs-list li b {
  font-size: 13px;
  color: #111827;
  display: block;
}
.lp-cr-root .lp-cr-vs-list li p {
  font-size: 11px;
  color: #9CA3AF;
  line-height: 1.3;
  margin: 0;
}
.lp-cr-root .lp-cr-vs-check, .lp-cr-root .lp-cr-vs-x {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #3F6B45;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.lp-cr-root .lp-cr-vs-x {
  background: #d1d5db;
  color: #6B7280;
}
.lp-cr-root .lp-cr-vs-polvo .lp-cr-vs-list li b {
  color: #6B7280;
  text-decoration: line-through;
}
.lp-cr-root .lp-cr-tl-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 720px) {
  .lp-cr-root .lp-cr-tl-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
}
.lp-cr-root .lp-cr-tl-card {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}
.lp-cr-root .lp-cr-tl-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  margin: 0 auto 10px;
  background: var(--lp-tl, #3F6B45);
  color: #fff;
  font-weight: 900;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-cr-root .lp-cr-tl-period {
  font-size: 10px;
  font-weight: 700;
  color: #9CA3AF;
  letter-spacing: 0.08em;
}
.lp-cr-root .lp-cr-tl-pct {
  font-size: 28px;
  font-weight: 900;
  line-height: 1.1;
  margin-top: 4px;
  color: var(--lp-tl, #3F6B45);
}
.lp-cr-root .lp-cr-tl-pct-sub {
  font-size: 11px;
  color: #9CA3AF;
  margin-bottom: 12px;
}
.lp-cr-root .lp-cr-tl-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}
.lp-cr-root .lp-cr-tl-list li {
  font-size: 12px;
  color: #6B7280;
  margin: 4px 0;
  line-height: 1.4;
}
.lp-cr-root .lp-cr-tl-disclaimer {
  text-align: center;
  font-size: 11px;
  color: #9CA3AF;
  margin-top: 16px;
}
.lp-cr-root .lp-cr-step-card {
  display: flex;
  gap: 18px;
  padding: 24px;
  background: #F9F7F5;
}
@media (min-width: 720px) {
  .lp-cr-root .lp-cr-step-card {
    background: #F9F7F5;
  }
}
.lp-cr-root .lp-cr-step-num {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #3F6B45;
  color: #fff;
  font-weight: 900;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-cr-root .lp-cr-step-title {
  font-size: 16px;
  margin-bottom: 4px;
}
.lp-cr-root .lp-cr-step-desc {
  color: #6B7280;
  font-size: 13px;
  line-height: 1.6;
}
.lp-cr-root .lp-cr-review {
  padding: 18px;
}
.lp-cr-root .lp-cr-review-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}
.lp-cr-root .lp-cr-review-name {
  font-weight: 700;
  font-size: 13px;
  color: #111827;
}
.lp-cr-root .lp-cr-review-city {
  font-size: 11px;
  color: #9CA3AF;
}
.lp-cr-root .lp-cr-review-text {
  color: #6B7280;
  font-size: 13px;
  line-height: 1.6;
}
.lp-cr-root .lp-cr-review-verified {
  display: inline-block;
  margin-top: 12px;
  font-size: 10px;
  background: #dcfce7;
  color: #15803D;
  padding: 3px 8px;
  border-radius: 999px;
  font-weight: 600;
}
.lp-cr-root .lp-cr-guar-card {
  background: #F0F5EC;
  border: 1px solid #D8E5CE;
  border-radius: 18px;
  padding: 18px 14px;
  text-align: center;
}
.lp-cr-root .lp-cr-guar-icon {
  font-size: 24px;
  margin-bottom: 6px;
}
.lp-cr-root .lp-cr-guar-title {
  font-weight: 800;
  font-size: 12px;
  color: #111827;
}
@media (min-width: 720px) {
  .lp-cr-root .lp-cr-guar-title {
    font-size: 13px;
  }
}
.lp-cr-root .lp-cr-guar-desc {
  font-size: 11px;
  color: #9CA3AF;
  margin-top: 2px;
}
.lp-cr-root .lp-cr-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lp-cr-root .lp-cr-faq {
  background: #fff;
  border: 1px solid #F3F4F6;
  border-radius: 18px;
  overflow: hidden;
}
.lp-cr-root .lp-cr-faq[open] {
  border-color: rgba(63, 107, 69, 0.3);
}
.lp-cr-root .lp-cr-faq-q {
  list-style: none;
  cursor: pointer;
  padding: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: #111827;
  font-size: 14px;
}
.lp-cr-root .lp-cr-faq-q::-webkit-details-marker {
  display: none;
}
.lp-cr-root .lp-cr-faq-arrow {
  color: #3F6B45;
  font-size: 20px;
  line-height: 1;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.lp-cr-root .lp-cr-faq[open] .lp-cr-faq-arrow {
  transform: rotate(180deg);
}
.lp-cr-root .lp-cr-faq-a {
  padding: 0 18px 18px;
  color: #6B7280;
  font-size: 13px;
  line-height: 1.65;
}
.lp-cr-root .lp-cr-faq-a p {
  margin-bottom: 8px;
}
.lp-cr-root .lp-cr-faq-a p:last-child {
  margin-bottom: 0;
}
.lp-cr-root .lp-cr-inf-quote {
  background: #F9F7F5;
  border: 1px solid #F3F4F6;
  border-radius: 22px;
  padding: 22px;
  max-width: 640px;
  margin: 0 auto 28px;
}
.lp-cr-root .lp-cr-inf-quote-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.lp-cr-root .lp-cr-inf-quote-name {
  font-weight: 800;
  color: #111827;
  font-size: 14px;
}
.lp-cr-root .lp-cr-inf-quote-role {
  background: #F0F5EC;
  color: #3F6B45;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 999px;
}
.lp-cr-root .lp-cr-inf-quote-mark {
  color: #3F6B45;
  font-size: 32px;
  font-family: "Times New Roman", serif;
  line-height: 1;
  user-select: none;
}
.lp-cr-root .lp-cr-inf-quote-text {
  color: #6B7280;
  font-size: 14px;
  line-height: 1.65;
  margin-top: 4px;
}
.lp-cr-root .lp-cr-inf-quote-foot {
  font-size: 11px;
  color: #9CA3AF;
  margin-top: 12px;
}
.lp-cr-root .lp-cr-inf-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 0 16px 12px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.lp-cr-root .lp-cr-inf-track::-webkit-scrollbar {
  display: none;
}
.lp-cr-root .lp-cr-inf-card {
  flex-shrink: 0;
  width: 160px;
  aspect-ratio: 3/4;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  scroll-snap-align: start;
  opacity: 0.78;
  transition: all 0.2s ease;
}
.lp-cr-root .lp-cr-inf-card.is-active {
  opacity: 1;
  outline: 2px solid #3F6B45;
  outline-offset: 2px;
  transform: scale(1.03);
}
.lp-cr-root .lp-cr-inf-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lp-cr-root .lp-cr-inf-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, transparent);
}
.lp-cr-root .lp-cr-inf-cardname {
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  line-height: 1.1;
}
.lp-cr-root .lp-cr-inf-cardhandle {
  color: rgba(255, 255, 255, 0.75);
  font-size: 10px;
}
.lp-cr-root .lp-cr-inf-cardfollowers {
  color: #7FA284;
  font-size: 10px;
  font-weight: 700;
  margin-top: 2px;
}
.lp-cr-root .lp-cr-inf-spacer {
  flex-shrink: 0;
  width: 40px;
}
.lp-cr-root .lp-cr-inf-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
}
.lp-cr-root .lp-cr-inf-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #E5E7EB;
  border: 0;
  cursor: pointer;
  transition: all 0.2s;
}
.lp-cr-root .lp-cr-inf-dot.is-active {
  background: #3F6B45;
  width: 20px;
}
.lp-cr-root .lp-cr-exit {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  animation: lp-cr-fade-in 0.2s ease;
}
@keyframes lp-cr-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.lp-cr-root .lp-cr-exit-card {
  position: relative;
  background: #fff;
  border-radius: 24px;
  max-width: 360px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}
.lp-cr-root .lp-cr-exit-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #9CA3AF;
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.lp-cr-root .lp-cr-exit-head {
  background: linear-gradient(135deg, #3F6B45, #345A3A);
  color: #fff;
  padding: 28px 22px 22px;
  text-align: center;
}
.lp-cr-root .lp-cr-exit-pill {
  display: inline-block;
  background: #FFD830;
  color: #3d2a00;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 10px;
}
.lp-cr-root .lp-cr-exit-title {
  color: #fff;
  font-size: 22px;
  line-height: 1.2;
}
.lp-cr-root .lp-cr-exit-sub {
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  margin-top: 8px;
}
.lp-cr-root .lp-cr-exit-body {
  padding: 18px 22px 22px;
}
.lp-cr-root .lp-cr-exit-coupon {
  width: 100%;
  background: #F0F5EC;
  border: 2px dashed #3F6B45;
  border-radius: 14px;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  margin-bottom: 12px;
}
.lp-cr-root .lp-cr-exit-coupon:hover {
  background: rgb(242.6379310345, 246.7586206897, 239.3413793103);
}
.lp-cr-root .lp-cr-exit-coupon-text {
  text-align: left;
}
.lp-cr-root .lp-cr-exit-coupon-label {
  font-size: 10px;
  font-weight: 700;
  color: #9CA3AF;
  text-transform: uppercase;
}
.lp-cr-root .lp-cr-exit-coupon-code {
  font-size: 20px;
  font-weight: 900;
  color: #3F6B45;
  letter-spacing: 0.15em;
}
.lp-cr-root .lp-cr-exit-coupon-action {
  font-size: 12px;
  font-weight: 800;
  color: #3F6B45;
}
.lp-cr-root .lp-cr-exit-clock {
  text-align: center;
  font-size: 12px;
  color: #9CA3AF;
  margin-bottom: 16px;
}
.lp-cr-root .lp-cr-exit-foot {
  text-align: center;
  font-size: 10px;
  color: #9CA3AF;
  margin-top: 8px;
}
.lp-cr-root .lp-cr-exit .lp-cr-cta {
  width: 100%;
  text-align: center;
}
.lp-cr-root .lp-cr-footer {
  background: #3F6B45;
  color: #fff;
  padding: 32px 16px;
  text-align: center;
}
.lp-cr-root .lp-cr-footer p {
  font-size: 12px;
  margin-bottom: 6px;
  opacity: 0.9;
}
.lp-cr-root .lp-cr-footer .lp-cr-footer-small {
  opacity: 0.6;
  font-size: 11px;
  margin-bottom: 12px;
}
.lp-cr-root .lp-cr-footer a {
  color: #fff;
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

/* ============================================================
   CARROSSEL REUTILIZÁVEL (fixes6 — antes/depois, reseñas, activos, pasos)
   Scroll horizontal do track; scroll vertical da página NUNCA trava.
   ============================================================ */
.lp-cr-root .lp-cr-carousel {
  position: relative;
}
.lp-cr-root .lp-cr-carousel-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  touch-action: auto;
  scrollbar-width: none;
  padding: 4px 4px 6px;
  scroll-padding: 0 16px;
}
.lp-cr-root .lp-cr-carousel-track::-webkit-scrollbar { display: none; }
.lp-cr-root .lp-cr-carousel-slide {
  scroll-snap-align: center;
  flex: 0 0 auto;
}
.lp-cr-root .lp-cr-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
}
.lp-cr-root .lp-cr-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: #D1D5DB;
  cursor: pointer;
  transition: all 0.3s ease;
}
.lp-cr-root .lp-cr-carousel-dot.is-active {
  background: #3F6B45;
  width: 20px;
}
.lp-cr-root .lp-cr-carousel-arrow {
  display: none;
}
@media (min-width: 880px) {
  .lp-cr-root .lp-cr-carousel-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid #E5E7EB;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    color: #3F6B45;
    font-size: 18px;
    cursor: pointer;
    z-index: 3;
  }
  .lp-cr-root .lp-cr-carousel-arrow-prev { left: -8px; }
  .lp-cr-root .lp-cr-carousel-arrow-next { right: -8px; }
}

/* Stars douradas (reseñas fixes6) */
.lp-cr-root .lp-cr-stars-gold { color: #F5B301; }

/* --- Seção prova social escura (estilo GÜM) --- */
.lp-cr-root .lp-cr-ugc-dark { background: #1a1a1a; }
.lp-cr-root .lp-cr-ugc-dark .lp-cr-h2 { color: #fff; }
.lp-cr-root .lp-cr-ugc-dark .lp-cr-section-sub { color: #C7CBD1; }

/* --- Carrossel antes/depois (FIX 2) --- */
.lp-cr-root .lp-cr-ba-slide {
  width: 56%;
  max-width: 300px;
}
.lp-cr-root .lp-cr-videos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
@media (min-width: 880px) {
  .lp-cr-root .lp-cr-videos-grid { max-width: 560px; margin: 0 auto 32px; gap: 16px; }
}
.lp-cr-root .lp-cr-video-916 {
  position: relative;
  width: 100%;
  aspect-ratio: 9/16;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  cursor: pointer;
}
.lp-cr-root .lp-cr-video-card-name {
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  margin-top: 8px;
}
.lp-cr-root .lp-cr-video-card-meta {
  color: rgba(255,255,255,0.65);
  font-size: 12px;
}
.lp-cr-root .lp-cr-vid-slide {
  width: 60%;
  max-width: 230px;
}
@media (min-width: 880px) {
  .lp-cr-root .lp-cr-vid-slide { width: 220px; }
}
.lp-cr-root .lp-cr-vid-cap {
  color: rgba(255,255,255,0.82);
  font-weight: 700;
  font-size: 12px;
  text-align: center;
  margin-top: 8px;
}
.lp-cr-root .lp-cr-ba-video {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 14px;
  overflow: hidden;
  background: #1a1a1a;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}
.lp-cr-root .lp-cr-ba-slide img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  display: block;
}
@media (min-width: 880px) {
  .lp-cr-root .lp-cr-ba-slide { width: 340px; }
}

/* --- Carrossel reseñas (FIX 3) --- */
.lp-cr-root .lp-cr-rev-slide {
  width: 84%;
  max-width: 360px;
}
.lp-cr-root .lp-cr-rev-card {
  background: #fff;
  border: 1px solid #EEF0EC;
  border-radius: 16px;
  padding: 22px 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lp-cr-root .lp-cr-rev-card-photo {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 2px;
}
.lp-cr-root .lp-cr-rev-card .lp-cr-stars-gold { font-size: 15px; letter-spacing: 1px; }
.lp-cr-root .lp-cr-rev-card-text {
  color: #374151;
  font-size: 14px;
  line-height: 1.6;
  flex: 1;
}
.lp-cr-root .lp-cr-rev-card-name {
  font-weight: 700;
  font-size: 13px;
  color: #111827;
}
.lp-cr-root .lp-cr-rev-card-pill {
  align-self: flex-start;
  font-size: 10px;
  background: #dcfce7;
  color: #15803D;
  padding: 3px 9px;
  border-radius: 999px;
  font-weight: 600;
}
.lp-cr-root .lp-cr-rev-photo-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  min-height: 240px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  background: #f3f4f6;
}
.lp-cr-root .lp-cr-rev-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lp-cr-root .lp-cr-rev-photo-card .lp-cr-rev-card-pill {
  position: absolute;
  left: 12px;
  bottom: 12px;
  align-self: auto;
  background: rgba(255, 255, 255, 0.95);
  color: #15803D;
}
@media (min-width: 880px) {
  .lp-cr-root .lp-cr-rev-slide { width: 340px; }
}

/* --- Carrossel activos / ciencia (FIX 5) --- */
.lp-cr-root .lp-cr-activo-slide {
  width: 80%;
  max-width: 320px;
}
.lp-cr-root .lp-cr-activo-card {
  background: #F9FBF7;
  border: 1px solid #E4EDDC;
  border-radius: 18px;
  padding: 22px 20px 24px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lp-cr-root .lp-cr-activo-img {
  width: 70%;
  max-width: 200px;
  aspect-ratio: 3/4;
  object-fit: contain;
  border-radius: 14px;
  margin-bottom: 16px;
}
.lp-cr-root img { border-radius: 14px; }
.lp-cr-root .lp-cr-review-form { max-width: 480px; margin: 28px auto 0; text-align: center; }
.lp-cr-root .lp-cr-review-toggle {
  background: none; border: 2px solid #3F6B45; color: #3F6B45;
  font-weight: 800; font-size: 15px; padding: 12px 28px; border-radius: 999px; cursor: pointer;
}
.lp-cr-root .lp-cr-review-fields { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; text-align: left; }
.lp-cr-root .lp-cr-review-stars { text-align: center; }
.lp-cr-root .lp-cr-review-stars button {
  background: none; border: 0; font-size: 32px; color: #D1D5DB; cursor: pointer; padding: 2px 4px;
}
.lp-cr-root .lp-cr-review-stars button.is-on { color: #F5B301; }
.lp-cr-root .lp-cr-review-fields input,
.lp-cr-root .lp-cr-review-fields textarea {
  border: 1px solid #D1D5DB; border-radius: 10px; padding: 12px 14px; font-size: 15px; font-family: inherit; width: 100%;
}
.lp-cr-root .lp-cr-review-submit {
  background: #3F6B45; color: #fff; border: 0; border-radius: 14px; padding: 14px; font-weight: 800; font-size: 15px; cursor: pointer;
}
.lp-cr-root .lp-cr-review-submit:disabled { opacity: 0.6; }
.lp-cr-root .lp-cr-review-note { font-size: 12px; color: #6B7280; text-align: center; margin: 0; }
.lp-cr-root .lp-cr-review-ok { color: #3F6B45; font-weight: 700; margin-top: 14px; }
.lp-cr-root .lp-cr-review-err { color: #B45309; font-weight: 600; margin-top: 14px; }
.lp-cr-root .lp-cr-gallery-main img { border-radius: 0; }
.lp-cr-root .lp-cr-gallery-thumb img { border-radius: 0; }
.lp-cr-root .lp-cr-activo-title {
  font-size: 18px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 8px;
}
.lp-cr-root .lp-cr-activo-desc {
  font-size: 13px;
  line-height: 1.6;
  color: #6B7280;
}
@media (min-width: 880px) {
  .lp-cr-root .lp-cr-activo-slide { width: 300px; }
}

/* --- Carrossel pasos (FIX 6) — infográficos 1:1 sem corte --- */
.lp-cr-root .lp-cr-paso-slide {
  width: 82%;
  max-width: 340px;
}
.lp-cr-root .lp-cr-paso-card {
  background: #F9F7F5;
  border-radius: 18px;
  padding: 16px;
  height: 100%;
}
.lp-cr-root .lp-cr-paso-img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
  background: #fff;
  border-radius: 12px;
  margin-bottom: 14px;
  display: block;
}
.lp-cr-root .lp-cr-paso-body {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
@media (min-width: 880px) {
  .lp-cr-root .lp-cr-paso-slide { width: 320px; }
}
