/* =====================================================================
   NovaSalud LP — réplica visual de vivalia.store
   Paleta verde/teal + gold accent, layout vertical centralizado, full-width
   ===================================================================== */

:root {
  /* NovaSalud — navy + azul bebê + preto + branco (dourado só p/ estrelas de rating) */
  --lp-green:        #0B2545;  /* navy — primária/CTA/seções fortes */
  --lp-green-dark:   #061A33;  /* navy hover */
  --lp-green-light:  #EAF4FD;  /* azul bebê claro — fundos suaves/chips */
  --lp-gold:         #f5b800;  /* dourado — estrelas de avaliação */
  --lp-gold-dark:    #d99e00;
  --lp-text:         #0D0D12;  /* preto */
  --lp-text-soft:    #4a4a4a;
  --lp-bg-soft:      #fafafa;
  --lp-bg-light:     #f4f4f4;
  --lp-border:       #e5e5e5;
  --lp-radius:       6px;
  --lp-radius-lg:    8px;
  --lp-shadow:       0 2px 12px rgba(0,0,0,.06);
  --lp-shadow-lg:    0 6px 28px rgba(0,0,0,.10);
  --lp-font:         "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Reset full-width pra page */
.novasalud-lp,
.novasalud-lp .novasalud-lp__content,
.novasalud-lp .entry-content {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  font-family: var(--lp-font);
  color: var(--lp-text);
  font-size: 16px;
  line-height: 1.55;
}

.novasalud-lp .alignfull,
.novasalud-lp .alignwide {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.page-template-page-landing #secondary,
.page-template-page-landing .storefront-breadcrumb,
.page-template-page-landing .entry-header,
.page-template-page-landing .page-title,
.page-template-page-landing .woocommerce-breadcrumb,
.single-product #secondary,
.single-product .storefront-breadcrumb,
.single-product .woocommerce-breadcrumb,
.single-product .entry-header,
.single-product .page-title,
.single-product .product_meta {
  display: none !important;
}

.page-template-page-landing #primary,
.single-product #primary { width: 100% !important; float: none !important; }
.page-template-page-landing #content,
.page-template-page-landing .site-main,
.page-template-page-landing .site-content,
.page-template-page-landing .content-area,
.page-template-page-landing .col-full,
.single-product #content,
.single-product .site-main,
.single-product .site-content,
.single-product .content-area,
.single-product .col-full,
.single-product main.site-main {
  padding: 0 !important;
  margin: 0 !important;
  max-width: none !important;
  width: 100% !important;
}
/* Remove margens laterais de todos wrappers Storefront */
.single-product .col-full,
.page-template-page-landing .col-full,
.single-product.woocommerce .col-full {
  padding-left: 0 !important;
  padding-right: 0 !important;
  max-width: 100% !important;
}

/* ==================== Distribuidor oficial card (inline no hero) ==================== */
.novasalud-distrib {
  padding: 0;
  margin: 14px 0 4px;
}
.novasalud-distrib__inner {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: linear-gradient(135deg, var(--lp-green-light) 0%, #ffffff 100%);
  border: 1px solid var(--lp-green);
  border-radius: 10px;
  box-shadow: 0 1px 6px rgba(0,168,107,.10);
}
.novasalud-distrib__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--lp-green);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.novasalud-distrib__icon svg { width: 22px; height: 22px; }
.novasalud-distrib__body h3 {
  font-size: 14px;
  font-weight: 800;
  margin: 0 0 3px;
  color: var(--lp-text);
  line-height: 1.25;
}
.novasalud-distrib__body p {
  font-size: 12px;
  color: var(--lp-text-soft);
  margin: 0;
  line-height: 1.4;
}
.novasalud-distrib--inline { max-width: 100%; }

/* ==================== Timer "Oferta válida solo hoy" ==================== */
.novasalud-timer {
  background: #fff;
  padding: 18px 16px;
}
.novasalud-timer__inner {
  max-width: 980px;
  margin: 0 auto;
  background: linear-gradient(135deg, #d63a3a 0%, #b91c1c 100%);
  color: #fff;
  padding: 14px 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  box-shadow: 0 4px 16px rgba(214,58,58,.25);
}
.novasalud-timer__head {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: clamp(13px, 1.7vw, 15px);
  letter-spacing: .5px;
}
.novasalud-timer__head strong { font-weight: 800; }
.novasalud-timer__sub { opacity: .9; font-weight: 600; }
.novasalud-timer__dot {
  width: 10px; height: 10px;
  background: #fff;
  border-radius: 50%;
  display: inline-block;
  animation: novasalud-pulse 1.2s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(255,255,255,.6);
}
@keyframes novasalud-pulse {
  0%   { box-shadow: 0 0 0 0   rgba(255,255,255,.7); }
  70%  { box-shadow: 0 0 0 10px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0   rgba(255,255,255,0); }
}
.novasalud-timer__clock {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.novasalud-timer__cell {
  background: rgba(0,0,0,.25);
  border-radius: 6px;
  padding: 6px 10px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  min-width: 46px;
}
.novasalud-timer__cell b {
  font-size: 20px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.novasalud-timer__cell small {
  font-size: 9px;
  letter-spacing: .8px;
  opacity: .85;
  margin-top: 3px;
  font-weight: 700;
}
.novasalud-timer__sep {
  font-size: 18px;
  font-weight: 800;
  padding: 0 1px;
  opacity: .8;
}
@media (max-width: 560px) {
  .novasalud-timer__inner { padding: 12px 16px; justify-content: center; text-align: center; }
}

/* ==================== Top strip (faixa verde acima do hero) ==================== */
.novasalud-topstrip {
  background: var(--lp-green);
  color: #fff;
  text-align: center;
  font-size: clamp(11px, 1.4vw, 13px);
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 8px 12px;
  text-transform: uppercase;
}

/* ==================== Hero (2 colunas no desktop, denso no mobile) ==================== */
.novasalud-hero {
  background: #fff;
  padding: 14px 14px 20px;
}
.novasalud-hero__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
}
@media (min-width: 800px) {
  .novasalud-hero { padding: 24px 24px 32px; }
  .novasalud-hero__inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
  }
}
.novasalud-hero__image {
  display: block;
  width: 100%;
  max-width: 460px;
  height: auto;
  margin: 0 auto;
  border-radius: var(--lp-radius-lg);
  order: -1;
}
@media (min-width: 800px) {
  .novasalud-hero__image { order: 0; max-width: 100%; }
}
.novasalud-hero__buy {
  text-align: left;
}
.novasalud-hero h1 {
  font-size: clamp(22px, 3.8vw, 32px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--lp-text);
  margin: 0 0 8px;
  letter-spacing: -0.4px;
  text-transform: uppercase;
}
.novasalud-hero__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  flex-wrap: wrap;
}
.novasalud-hero__stars {
  color: var(--lp-gold);
  font-size: 17px;
  letter-spacing: 2px;
  line-height: 1;
}
.novasalud-hero__rating-text {
  font-size: 13px;
  color: var(--lp-text-soft);
}
.novasalud-hero__rating-text strong { color: var(--lp-text); font-weight: 700; }
.novasalud-hero__price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  margin: 6px 0 14px;
  font-size: 16px;
}
.novasalud-hero__price .old { text-decoration: line-through; color: #d63a3a; font-size: 15px; font-weight: 600; }
.novasalud-hero__price .now { font-size: clamp(26px, 3.6vw, 32px); color: var(--lp-green); font-weight: 800; line-height: 1; }
.novasalud-hero__price .badge {
  background: var(--lp-green);
  color: #fff;
  padding: 5px 10px;
  border-radius: var(--lp-radius);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .5px;
}
.novasalud-hero__bullets {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
}
.novasalud-hero__bullets li {
  position: relative;
  padding: 6px 0 6px 28px;
  font-size: 15px;
  line-height: 1.4;
  color: var(--lp-text);
}
.novasalud-hero__bullets li::before {
  content: '✅';
  position: absolute;
  left: 0;
  top: 6px;
  font-size: 14px;
  width: 18px;
  text-align: left;
}
.novasalud-hero__bullets li.gift::before { content: '🎁'; }
.novasalud-hero .novasalud-btn__row { margin: 8px 0 8px; justify-content: stretch; }
.novasalud-hero__urgency {
  font-size: 13px;
  color: var(--lp-text-soft);
  text-align: center;
  margin: 0 0 6px;
}
.novasalud-hero__urgency strong { color: var(--lp-green-dark); }
.novasalud-hero .novasalud-cod-mini {
  text-align: center;
  margin: 12px 0 0;
  font-size: 12px;
  color: var(--lp-text-soft);
}

/* ==================== Mini reviews carousel (no hero, abaixo do CTA) ==================== */
.novasalud-mini-reviews {
  margin: 14px 0 6px;
  border-top: 1px solid var(--lp-border);
  border-bottom: 1px solid var(--lp-border);
  padding: 14px 0 8px;
}
.novasalud-mini-reviews__viewport {
  overflow: hidden;
  position: relative;
  touch-action: pan-y;        /* permite swipe horizontal sem bloquear scroll vertical */
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}
.novasalud-mini-reviews__viewport:active { cursor: grabbing; }
.novasalud-mini-reviews__viewport img { pointer-events: none; }  /* arrastar img não atrapalha swipe */
.novasalud-mini-reviews__track {
  display: flex;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.novasalud-mini-review {
  flex: 0 0 100%;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 4px 4px;
  box-sizing: border-box;
}
.novasalud-mini-review__avatar {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
}
.novasalud-mini-review__body { flex: 1; min-width: 0; }
.novasalud-mini-review__text {
  font-size: 14px;
  line-height: 1.45;
  color: var(--lp-text);
  margin: 0 0 8px;
}
.novasalud-mini-review__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--lp-border);
  padding-top: 8px;
  gap: 10px;
  flex-wrap: wrap;
}
.novasalud-mini-review__foot small {
  font-size: 12px;
  color: var(--lp-text-soft);
  font-style: italic;
}
.novasalud-mini-review__stars { color: var(--lp-gold); font-size: 14px; letter-spacing: 1px; }

.novasalud-mini-reviews__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 6px;
}
.novasalud-mini-reviews__arrow {
  background: transparent;
  border: 0;
  font-size: 22px;
  color: var(--lp-text-soft);
  cursor: pointer;
  padding: 4px 10px;
  border-radius: 4px;
  line-height: 1;
  transition: background .15s, color .15s;
}
.novasalud-mini-reviews__arrow:hover { background: var(--lp-bg-soft); color: var(--lp-green); }
.novasalud-mini-reviews__dots {
  display: flex;
  gap: 7px;
}
.novasalud-mini-reviews__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d4d4d4;
  border: 0;
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s;
}
.novasalud-mini-reviews__dot.is-active {
  background: var(--lp-green);
  transform: scale(1.25);
}
.novasalud-mini-reviews__dot:hover { background: var(--lp-green-dark); }

/* ==================== Buttons ==================== */
.novasalud-btn {
  display: inline-block;
  background: var(--lp-green);
  color: #fff !important;
  font-weight: 700;
  font-size: clamp(15px, 1.6vw, 17px);
  text-decoration: none;
  padding: 16px 24px;
  border-radius: var(--lp-radius);
  border: 0;
  cursor: pointer;
  transition: background .2s ease, transform .1s ease, box-shadow .2s;
  text-align: center;
  box-shadow: 0 2px 0 var(--lp-green-dark);
  letter-spacing: .5px;
  white-space: nowrap;
  line-height: 1.1;
  text-transform: uppercase;
}
.novasalud-btn:hover  { background: var(--lp-green-dark); }
.novasalud-btn:active { transform: translateY(2px); box-shadow: none; }
.novasalud-btn--xl    { font-size: clamp(16px, 1.8vw, 19px); padding: 18px 28px; }
.novasalud-btn--gold  { background: var(--lp-gold); color: var(--lp-text) !important; box-shadow: 0 2px 0 var(--lp-gold-dark); }
.novasalud-btn--gold:hover { background: var(--lp-gold-dark); }
.novasalud-btn--full  { display: block; width: 100%; max-width: 480px; margin-left: auto; margin-right: auto; }

.novasalud-btn__row {
  display: flex; justify-content: center; gap: 12px; flex-wrap: wrap;
  margin: 14px 16px;
}
.novasalud-cod-mini {
  font-size: 13px; color: var(--lp-text-soft); margin-top: 10px;
}

/* ==================== VISTO EN — carrossel infinito rápido ==================== */
.novasalud-visto {
  background: #fff;
  padding: 28px 0;
  border-top: 1px solid var(--lp-border);
  border-bottom: 1px solid var(--lp-border);
  overflow: hidden;
}
.novasalud-visto__title {
  text-align: center;
  font-size: 13px;
  letter-spacing: 4px;
  color: var(--lp-text-soft);
  margin: 0 0 18px;
  font-weight: 700;
  text-transform: uppercase;
}
.novasalud-visto__viewport {
  overflow: hidden;
  position: relative;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
/* Marquee seamless: cada logo tem margin-right próprio (não usa flex gap).
 * 4× duplicação no markup + animation -25% = move exatamente 1/4 do track
 * (que é uma cópia completa). Loop matematicamente perfeito e visualmente
 * fluido com 4 sets — impossível ver "ponto de costura". */
.novasalud-visto__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: novasalud-marquee-quarter 12s linear infinite;
  will-change: transform;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  backface-visibility: hidden;
}
.novasalud-visto__viewport:hover .novasalud-visto__track { animation-play-state: paused; }
.novasalud-visto__logo {
  flex: 0 0 140px;   /* largura FIXA — track tem tamanho previsível desde o load */
  width: 140px;
  height: 42px;
  margin-right: 64px;
  object-fit: contain;
  opacity: .95;
  transition: opacity .2s, transform .2s;
}
.novasalud-visto__logo:hover { opacity: 1; transform: scale(1.05); }
@media (max-width: 600px) {
  .novasalud-visto__track { animation-duration: 8s; }
  .novasalud-visto__logo {
    flex: 0 0 110px;
    width: 110px;
    height: 32px;
    margin-right: 44px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .novasalud-visto__track { animation-duration: 60s; }
}
@keyframes novasalud-marquee-quarter {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-25%, 0, 0); }
}

/* ==================== Sections (vertical, centered) ==================== */
.novasalud-sec {
  padding: 32px 16px;
  text-align: center;
  background: #fff;
}
.novasalud-sec--soft { background: var(--lp-bg-soft); }
.novasalud-sec__inner { max-width: 720px; margin: 0 auto; }
.novasalud-sec h2 {
  font-size: clamp(22px, 3.6vw, 32px);
  font-weight: 800;
  line-height: 1.25;
  color: var(--lp-text);
  margin: 0 0 12px;
  letter-spacing: -0.3px;
}
.novasalud-sec p {
  font-size: 16px;
  color: var(--lp-text-soft);
  margin: 0 auto 14px;
  max-width: 600px;
  line-height: 1.6;
}
.novasalud-sec img {
  display: block;
  margin: 18px auto 0;
  max-width: 480px;
  width: 100%;
  height: auto;
  border-radius: var(--lp-radius-lg);
}

/* ==================== 95% stats — white card with shadow ==================== */
.novasalud-stats-wrap { background: var(--lp-bg-soft); padding: 32px 16px; }
.novasalud-stats {
  max-width: 980px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--lp-radius-lg);
  box-shadow: var(--lp-shadow-lg);
  padding: 32px 24px;
}
.novasalud-stats h2 {
  text-align: center;
  font-size: clamp(20px, 3.4vw, 28px);
  font-weight: 800;
  margin: 0 0 22px;
  color: var(--lp-text);
}
.novasalud-stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.novasalud-stats__col { text-align: center; padding: 0 12px; }
.novasalud-stats__col + .novasalud-stats__col { border-left: 1px solid var(--lp-border); }
.novasalud-stats__num {
  font-size: clamp(40px, 7vw, 56px);
  font-weight: 800;
  color: var(--lp-green);
  line-height: 1;
  margin: 0 0 10px;
}
.novasalud-stats__lbl {
  font-size: 14px;
  color: var(--lp-text-soft);
  margin: 0;
  line-height: 1.45;
}
.novasalud-stats__note {
  text-align: center;
  font-size: 12px;
  color: #999;
  margin: 28px 0 0;
}
@media (max-width: 640px) {
  .novasalud-stats__grid { grid-template-columns: 1fr; gap: 32px; }
  .novasalud-stats__col + .novasalud-stats__col { border-left: 0; border-top: 1px solid var(--lp-border); padding-top: 28px; }
}

/* ==================== Reviews ==================== */
.novasalud-reviews {
  background: var(--lp-bg-soft);
  padding: clamp(32px, 4.5vw, 44px) 16px;
}
.novasalud-reviews__head {
  max-width: 760px;
  margin: 0 auto clamp(20px, 3vw, 28px);
  text-align: center;
}
.novasalud-reviews__head h2 {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 800;
  margin: 0 0 10px;
  color: var(--lp-text);
}
.novasalud-reviews__summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--lp-text-soft);
  background: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--lp-border);
  flex-wrap: wrap;
  justify-content: center;
}
.novasalud-reviews__summary strong { color: var(--lp-text); font-weight: 700; }
.novasalud-reviews__stars { color: var(--lp-gold); letter-spacing: 1px; }
.novasalud-reviews__grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 720px)  { .novasalud-reviews__grid { grid-template-columns: 1fr 1fr; gap: 20px; } }
@media (min-width: 1024px) { .novasalud-reviews__grid { grid-template-columns: repeat(3, 1fr); } }
.novasalud-review {
  background: #fff;
  border-radius: 12px;
  padding: 22px 22px 18px;
  border: 1px solid var(--lp-border);
  display: flex;
  flex-direction: column;
}
.novasalud-review__photo {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin: -6px 0 14px;
  background: var(--lp-bg-soft);
}
.novasalud-review__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.novasalud-review__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  font-weight: 800;
  font-size: 18px;
}
.novasalud-review__avatar-img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex: 0 0 42px;
}
.novasalud-review__head strong { display: block; font-size: 14px; color: var(--lp-text); }
.novasalud-review__head small { display: block; font-size: 12px; color: var(--lp-text-soft); margin-top: 2px; }
.novasalud-review__stars { color: var(--lp-gold); font-size: 15px; letter-spacing: 1px; margin-bottom: 8px; }
.novasalud-review h4 { font-size: 16px; font-weight: 700; margin: 0 0 8px; color: var(--lp-text); line-height: 1.3; }
.novasalud-review p { font-size: 14px; line-height: 1.55; color: var(--lp-text-soft); margin: 0 0 14px; flex: 1; }
.novasalud-review__foot {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid var(--lp-border);
  padding-top: 10px;
}
.novasalud-review__foot small { font-size: 12px; color: var(--lp-text-soft); }
.novasalud-review__foot strong { color: var(--lp-text); font-weight: 700; }
.novasalud-review__date {
  font-size: 11px;
  color: #999;
  border-top: 1px solid var(--lp-border);
  padding-top: 10px;
  display: block;
  margin-top: auto;
}

/* ==================== FAQ ==================== */
.novasalud-faq {
  max-width: 760px;
  margin: 0 auto;
  padding: 32px 16px;
}
.novasalud-faq h2 {
  text-align: center;
  font-size: clamp(22px, 3.6vw, 32px);
  font-weight: 800;
  margin: 0 0 18px;
}
.novasalud-faq details {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 0;
  margin: 10px 0;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.novasalud-faq details[open] {
  border-color: var(--lp-green);
  box-shadow: var(--lp-shadow);
}
.novasalud-faq summary {
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  list-style: none;
  color: var(--lp-text);
  padding: 18px 50px 18px 18px;
  position: relative;
}
.novasalud-faq summary::-webkit-details-marker { display: none; }
.novasalud-faq summary::before {
  content: '?';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--lp-green);
  color: #fff;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
  margin-right: 10px;
  vertical-align: middle;
}
.novasalud-faq summary::after {
  content: '+';
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 26px;
  color: var(--lp-green);
  font-weight: 400;
  line-height: 1;
}
.novasalud-faq details[open] summary::after { content: '−'; }
.novasalud-faq details p {
  margin: 0;
  padding: 0 18px 18px;
  line-height: 1.65;
  color: var(--lp-text-soft);
  font-size: 15px;
}

/* ==================== Garantía ==================== */
.novasalud-garantia-wrap {
  background: var(--lp-bg-soft);
  padding: 32px 20px;
}
.novasalud-garantia {
  max-width: 960px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--lp-shadow-lg);
  display: grid;
  grid-template-columns: minmax(280px, 38%) 1fr;
  position: relative;
}
.novasalud-garantia::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--lp-green) 0%, #2E6FB5 100%);
}
.novasalud-garantia__media {
  position: relative;
  background: linear-gradient(135deg, var(--lp-green-light) 0%, #F4FAFF 100%);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}
.novasalud-garantia__media img {
  width: 100%;
  max-width: 280px;
  height: auto;
  display: block;
  border-radius: 8px;
}
.novasalud-garantia__seal {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--lp-green);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0,168,107,.35);
}
.novasalud-garantia__body {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.novasalud-garantia__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--lp-green-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--lp-green-dark);
}
.novasalud-garantia__icon svg { width: 28px; height: 28px; }
.novasalud-garantia h3 {
  font-size: clamp(24px, 3.4vw, 32px);
  font-weight: 800;
  margin: 0 0 14px;
  color: var(--lp-text);
  letter-spacing: -0.3px;
  line-height: 1.15;
}
.novasalud-garantia__lead {
  font-size: 16px;
  color: var(--lp-text-soft);
  margin: 0 0 22px;
  line-height: 1.65;
}
.novasalud-garantia__lead strong { color: var(--lp-text); font-weight: 700; }
.novasalud-garantia__features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 4px;
}
.novasalud-garantia__features span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--lp-green-dark);
  background: var(--lp-green-light);
  padding: 6px 12px;
  border-radius: 999px;
}
.novasalud-garantia__features span::before {
  content: '✓';
  font-weight: 800;
  font-size: 14px;
}

@media (max-width: 760px) {
  .novasalud-garantia {
    grid-template-columns: 1fr;
    max-width: 520px;
  }
  .novasalud-garantia__media {
    min-height: 240px;
    padding: 28px;
  }
  .novasalud-garantia__media img { max-width: 200px; }
  .novasalud-garantia__body { padding: 28px; text-align: center; }
  .novasalud-garantia__icon { margin-left: auto; margin-right: auto; }
  .novasalud-garantia__features { justify-content: center; }
}

/* ==================== Final CTA ==================== */
.novasalud-final {
  background: var(--lp-green);
  color: #fff;
  padding: 36px 16px;
  text-align: center;
}
.novasalud-final h2 {
  color: #fff;
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 800;
  margin: 0 0 14px;
}
.novasalud-final p {
  font-size: 17px;
  margin: 0 0 24px;
  color: rgba(255,255,255,.95);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.novasalud-final .strike { text-decoration: line-through; opacity: .75; }
.novasalud-final small { display: block; margin-top: 16px; opacity: .9; font-size: 13px; }

/* ==================== Sticky mobile CTA (LP standalone — legacy) ==================== */
.novasalud-lp-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  padding: 8px 12px;
  background: rgba(255,255,255,.98);
  border-top: 1px solid var(--lp-border);
  box-shadow: 0 -2px 14px rgba(0,0,0,.10);
}
.novasalud-lp-sticky-cta__btn {
  display: block;
  width: 100%;
  background: var(--lp-green);
  color: #fff !important;
  text-align: center;
  padding: 14px;
  border-radius: var(--lp-radius);
  font-weight: 800;
  text-decoration: none;
  font-size: 15px;
  box-shadow: 0 2px 0 var(--lp-green-dark);
}
@media (max-width: 768px) {
  .novasalud-lp-sticky-cta { display: block; }
  body.page-template-page-landing { padding-bottom: 80px; }
}

/* ==================== Mobile sticky CTA — único botão fixo (PDP) ==================== */
.novasalud-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9998;
  padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--lp-border);
  box-shadow: 0 -4px 18px rgba(0,0,0,.10);
}
.novasalud-mobile-cta__btn {
  display: block;
  width: 100%;
  background: var(--lp-green);
  color: #fff !important;
  text-decoration: none;
  padding: 16px 20px;
  border-radius: var(--lp-radius);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: .5px;
  box-shadow: 0 2px 0 var(--lp-green-dark);
  transition: background .15s, transform .1s;
  text-align: center;
  text-transform: uppercase;
}
.novasalud-mobile-cta__btn:hover { background: var(--lp-green-dark); }
.novasalud-mobile-cta__btn:active { transform: translateY(1px); box-shadow: none; }
@media (max-width: 768px) {
  .novasalud-mobile-cta { display: block; }
  body.single-product { padding-bottom: 84px; }
}

/* ==================== Trustbar override (uses NovaSalud plugin, recolor) ==================== */
.novasalud-lp .novasalud-trustbar {
  margin: 0;
  background: var(--lp-green-light) !important;
  padding: 24px 16px;
}
.novasalud-lp .novasalud-trustbar__item strong { color: var(--lp-green-dark); }
