/** Shopify CDN: Minification failed

Line 14:2 Unexpected "="

**/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Lora:ital,wght@0,400;0,600;1,400&display=swap');

:root {
  --rp-font: 'Montserrat', sans-serif;
  --rp-font-serif: 'Lora', serif;
}


* ============================================================
   PULMONATURAL — RespiClear Custom CSS
   Paleta: Negro #0D0D0D · Verde #2D6A4F · Blanco #FFFFFF · Dorado #C9A84C
   ============================================================ */

/* ── Variables globales ── */
:root {
  --rp-black:      #0D0D0D;
  --rp-black-soft: #141414;
  --rp-green:      #2D6A4F;
  --rp-green-dark: #1B4332;
  --rp-green-light:#40916C;
  --rp-gold:       #C9A84C;
  --rp-gold-dark:  #A07C2E;
  --rp-white:      #FFFFFF;
  --rp-gray:       #8A8A8A;
  --rp-gray-light: #CCCCCC;
  --rp-card-bg:    #161616;
  --rp-border:     rgba(45, 106, 79, 0.35);
  --rp-border-gold:rgba(201, 168, 76, 0.35);
  --rp-radius:     10px;
  --rp-transition: 0.3s ease;
  --rp-font: 'Montserrat', sans-serif;
}

/* ── Reset base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--rp-black);
  color: var(--rp-white);
  font-family: var(--rp-font);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }

/* ============================================================
   BARRA SUPERIOR FIJA
   ============================================================ */
.rp-topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: var(--rp-green-dark);
  border-bottom: 1px solid var(--rp-green);
  height: 36px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rp-topbar__track {
  display: flex;
  gap: 80px;
  animation: rp-marquee 18s linear infinite;
  white-space: nowrap;
}

.rp-topbar__item {
  font-size: 12px;
  font-weight: 600;
  color: var(--rp-white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@keyframes rp-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   HEADER
   ============================================================ */
/* Compensar topbar fija de 36px */

/* ── Espaciado menú header ── */
.header__inline-menu .list-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.header__inline-menu .list-menu__item a {
  color: #fff !important;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}

.header__inline-menu .list-menu__item a:hover {
  color: #40916C !important;
}
body {
  padding-top: 36px !important;
}
.shopify-section-header,
.section-header {
  top: 36px !important;
}
.header-wrapper {
  top: 36px !important;
}

.section-header,
.header-wrapper,
[class*="color-scheme"] .header-wrapper,
.header {
  background: #0D0D0D !important;
  background-color: #0D0D0D !important;
  border-bottom: 1px solid rgba(45,106,79,0.3) !important;
  --color-background: 13,13,13 !important;
}

/* ============================================================
   UTILIDADES GLOBALES
   ============================================================ */
.rp-section {
  padding: 64px 20px;
  background: var(--rp-black);
}

.rp-section--green {
  background: var(--rp-green-dark);
}

.rp-container {
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.rp-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rp-green-light);
  border: 1px solid var(--rp-border);
  border-radius: 999px;
  padding: 4px 14px;
  margin-bottom: 16px;
}

.rp-btn {
  display: inline-block;
  background: var(--rp-green);
  color: var(--rp-white);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  border-radius: 12px;
  padding: 18px 32px;
  cursor: pointer;
  transition: background var(--rp-transition), transform var(--rp-transition);
  text-align: center;
  width: 100%;
}

.rp-btn:hover {
  background: var(--rp-green-light);
  transform: translateY(-2px);
}

.rp-btn--gold {
  background: var(--rp-gold);
  color: var(--rp-black);
}

.rp-btn--gold:hover {
  background: var(--rp-gold-dark);
}

/* ============================================================
   SCROLL FADE IN
   ============================================================ */
.rp-fade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.rp-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

.rp-fade--delay1 { transition-delay: 0.1s; }
.rp-fade--delay2 { transition-delay: 0.2s; }
.rp-fade--delay3 { transition-delay: 0.3s; }

/* ============================================================
   HERO
   ============================================================ */
.rp-hero {
  padding: 80px 20px 60px;
  background: var(--rp-black);
  text-align: center;
}

.rp-hero__img {
  max-width: 280px;
  margin: 0 auto 32px;
}

.rp-hero__img img {
  border-radius: 16px;
  border: 2px solid rgba(45,106,79,0.4);
  box-shadow: 0 0 40px rgba(45,106,79,0.2);
}

.rp-hero__title {
  font-size: clamp(28px, 6vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--rp-white);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.rp-hero__title span {
  color: var(--rp-green-light);
}

.rp-hero__subtitle {
  font-size: clamp(14px, 2.5vw, 17px);
  color: var(--rp-gray-light);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 24px;
}

.rp-hero__stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
  font-size: 14px;
  color: var(--rp-gray-light);
}

.rp-hero__stars-icons {
  color: var(--rp-gold);
  font-size: 18px;
  letter-spacing: 2px;
}

.rp-hero__stars a {
  color: var(--rp-green-light);
  text-decoration: underline;
  font-size: 13px;
}

.rp-hero__cta {
  max-width: 480px;
  margin: 0 auto;
}

.rp-hero__sub {
  font-size: 13px;
  color: var(--rp-gray);
  margin-top: 12px;
  text-align: center;
}

/* ============================================================
   BARRA DE CONFIANZA
   ============================================================ */
.rp-trust {
  background: var(--rp-green-dark);
  padding: 20px;
  border-top: 1px solid rgba(45,106,79,0.4);
  border-bottom: 1px solid rgba(45,106,79,0.4);
}

.rp-trust__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 32px;
  max-width: 900px;
  margin: 0 auto;
}

.rp-trust__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--rp-white);
  letter-spacing: 0.03em;
}

.rp-trust__icon {
  font-size: 18px;
}

/* ============================================================
   SECCIÓN EL PROBLEMA
   ============================================================ */
.rp-problem__title {
  font-size: clamp(26px, 5vw, 42px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--rp-white);
  margin-bottom: 32px;
  line-height: 1.1;
}

.rp-problem__list {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.rp-problem__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: var(--rp-gray-light);
  line-height: 1.5;
}

.rp-problem__list li::before {
  content: '✗';
  color: #E63946;
  font-weight: 800;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

.rp-problem__card {
  background: var(--rp-card-bg);
  border: 2px solid var(--rp-green);
  border-radius: 14px;
  padding: 24px;
  margin-top: 8px;
}

.rp-problem__card p {
  font-size: 17px;
  font-weight: 700;
  color: var(--rp-green-light);
  line-height: 1.5;
  text-align: center;
}

/* ============================================================
   CÓMO FUNCIONA
   ============================================================ */
.rp-how__title {
  font-size: clamp(24px, 5vw, 40px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--rp-white);
  text-align: center;
  margin-bottom: 40px;
}

.rp-how__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 700px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .rp-how__grid { grid-template-columns: repeat(4, 1fr); }
}

.rp-how__step {
  background: var(--rp-card-bg);
  border: 1px solid var(--rp-border);
  border-radius: 14px;
  padding: 20px 14px;
  text-align: center;
}

.rp-how__icon {
  font-size: 32px;
  margin-bottom: 12px;
  display: block;
}

.rp-how__step-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--rp-green-light);
  margin-bottom: 8px;
  line-height: 1.3;
}

.rp-how__step-desc {
  font-size: 12px;
  color: var(--rp-gray);
  line-height: 1.5;
}

/* ============================================================
   TIMELINE
   ============================================================ */
.rp-timeline__title {
  font-size: clamp(24px, 5vw, 40px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--rp-white);
  text-align: center;
  margin-bottom: 48px;
}

.rp-timeline__track {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.rp-timeline__track::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--rp-green), var(--rp-green-light));
}

.rp-timeline__step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 0 0 36px 0;
  position: relative;
}

.rp-timeline__num {
  width: 48px;
  height: 48px;
  background: var(--rp-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  color: var(--rp-white);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.rp-timeline__period {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rp-green-light);
  margin-bottom: 4px;
}

.rp-timeline__desc {
  font-size: 15px;
  color: var(--rp-gray-light);
  line-height: 1.5;
}

/* ============================================================
   ESTADÍSTICAS
   ============================================================ */
.rp-stats__title {
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--rp-white);
  text-align: center;
  margin-bottom: 40px;
}

.rp-stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 700px;
  margin: 0 auto;
}

.rp-stats__item {
  text-align: center;
  background: var(--rp-card-bg);
  border: 1px solid var(--rp-border);
  border-radius: 14px;
  padding: 24px 12px;
}

.rp-stats__number {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 900;
  color: var(--rp-gold);
  line-height: 1;
  margin-bottom: 8px;
}

.rp-stats__label {
  font-size: 12px;
  color: var(--rp-gray);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============================================================
   TESTIMONIOS
   ============================================================ */
.rp-reviews__title {
  font-size: clamp(24px, 5vw, 40px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--rp-white);
  text-align: center;
  margin-bottom: 40px;
}

.rp-reviews__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 700px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .rp-reviews__grid { grid-template-columns: repeat(3, 1fr); }
}

.rp-review-card {
  background: var(--rp-card-bg);
  border: 1px solid var(--rp-border);
  border-radius: 14px;
  padding: 24px;
  background: #1a1a1a;
border: 1px solid rgba(255,255,255,0.1);
}

.rp-review-card__stars {
  color: var(--rp-gold);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.rp-review-card__text {
  font-size: 14px;
  color: var(--rp-gray-light);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 16px;
  color: #CCCCCC;
}

.rp-review-card__author {
  font-size: 13px;
  font-weight: 700;
  color: var(--rp-green-light);
  color: #FFFFFF;
}

/* ============================================================
   SECCIÓN PRODUCTO
   ============================================================ */
.rp-product__layout {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 720px) {
  .rp-product__layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 48px;
  }
}

.rp-product__img {
  flex: 0 0 auto;
  width: 100%;
  max-width: 280px;
}

.rp-product__img img {
  border-radius: 16px;
  border: 2px solid var(--rp-border);
  box-shadow: 0 0 32px rgba(45,106,79,0.15);
}

.rp-product__title {
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--rp-white);
  margin-bottom: 20px;
}

.rp-product__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.rp-product__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--rp-gray-light);
}

.rp-product__list li::before {
  content: '✓';
  color: var(--rp-green-light);
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
}

/* ============================================================
   FAQ
   ============================================================ */
.rp-faq__title {
  font-size: clamp(24px, 5vw, 40px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--rp-white);
  text-align: center;
  margin-bottom: 40px;
}

.rp-faq__list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rp-faq__item {
  background: var(--rp-card-bg);
  border: 1px solid var(--rp-border);
  border-radius: 12px;
  overflow: hidden;
}

.rp-faq__question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-size: 15px;
  font-weight: 700;
  color: var(--rp-white);
  gap: 12px;
}

.rp-faq__icon {
  color: var(--rp-green-light);
  font-size: 22px;
  font-weight: 400;
  flex-shrink: 0;
  transition: transform var(--rp-transition);
}

.rp-faq__question[aria-expanded="true"] .rp-faq__icon {
  transform: rotate(45deg);
}

.rp-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.rp-faq__answer-inner {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--rp-gray-light);
  line-height: 1.7;
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.rp-cta-final {
  text-align: center;
  padding: 64px 20px;
  background: var(--rp-black);
}

.rp-cta-final__eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rp-green-light);
  margin-bottom: 12px;
}

.rp-cta-final__title {
  font-size: clamp(24px, 5vw, 42px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--rp-white);
  margin-bottom: 24px;
  line-height: 1.1;
}

.rp-cta-final__price {
  font-size: clamp(44px, 8vw, 72px);
  font-weight: 900;
  color: var(--rp-gold);
  margin-bottom: 8px;
  line-height: 1;
}

.rp-cta-final__installments {
  font-size: 15px;
  color: var(--rp-gray-light);
  margin-bottom: 28px;
}

.rp-cta-final__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}

.rp-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--rp-card-bg);
  border: 1px solid var(--rp-border);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--rp-white);
}

.rp-cta-final__btn {
  max-width: 480px;
  margin: 0 auto;
}

/* ============================================================
   FULLWIDTH IMAGES
   ============================================================ */
.rp-fullimg {
  width: 100%;
  line-height: 0;
  background: var(--rp-black);
  padding: 12px 20px;
}

.rp-fullimg--contained img {
  max-width: 700px;
  margin: 0 auto;
  border-radius: 18px;
  border: 2px solid rgba(45,106,79,0.4);
  box-shadow: 0 0 28px rgba(45,106,79,0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  cursor: pointer;
}

.rp-fullimg--contained img:hover {
  transform: scale(1.025);
  box-shadow: 0 0 48px rgba(45,106,79,0.28);
  border-color: rgba(45,106,79,0.85);
}

/* ============================================================
   STICKY CTA MOBILE
   ============================================================ */
.rp-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9000;
  padding: 12px 20px;
  background: rgba(13,13,13,0.95);
  border-top: 1px solid var(--rp-border);
  backdrop-filter: blur(8px);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.rp-sticky-cta.visible {
  transform: translateY(0);
}

.rp-sticky-cta .rp-btn {
  max-width: 480px;
  margin: 0 auto;
  display: block;
  font-size: 14px;
  padding: 16px 24px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.rp-footer {
  background: #080808;
  border-top: 1px solid rgba(45,106,79,0.2);
  padding: 40px 20px;
  text-align: center;
}

.rp-footer__logo {
  margin-bottom: 20px;
}

.rp-footer__logo img {
  height: 48px;
  width: auto;
  margin: 0 auto;
}

.rp-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  margin-bottom: 20px;
}

.rp-footer__links a {
  font-size: 13px;
  color: var(--rp-gray);
  transition: color var(--rp-transition);
}

.rp-footer__links a:hover { color: var(--rp-green-light); }

.rp-footer__copy {
  font-size: 11px;
  color: #444;
}

.rp-footer__disclaimer {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 10px;
  line-height: 1.6;
  color: #444;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ============================================================
   CARRITO
   ============================================================ */
.cart__checkout-button {
  background: var(--rp-green) !important;
  color: var(--rp-white) !important;
  font-weight: 800 !important;
  border: none !important;
  border-radius: 10px !important;
}

.cart__checkout-button:hover {
  background: var(--rp-green-light) !important;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 768px) {
  .rp-section { padding: 80px 40px; }
  .rp-hero { padding: 80px 40px; }
}

@media (max-width: 480px) {
  .rp-stats__grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .rp-stats__number { font-size: 24px; }
}

/* ============================================================
   NUEVAS SECCIONES — LANDING EXTENDIDA
   ============================================================ */

/* ── Tipografía compartida ── */
.rp-h2 {
  font-size: clamp(24px, 5vw, 42px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--rp-white);
  line-height: 1.1;
  margin-bottom: 16px;
  text-align: center;
}

.rp-lead {
  font-size: clamp(15px, 2.5vw, 18px);
  color: var(--rp-gray-light);
  line-height: 1.6;
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.rp-gold { color: var(--rp-gold); }

/* ── Sección fondo alternativo ── */
.rp-section--dark2 {
  background: #0f0f0f;
}

/* ── Botón grande ── */
.rp-btn--lg {
  font-size: 17px;
  padding: 20px 36px;
}

/* ── Sellos del hero ── */
.rp-hero__seals {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  margin-top: 16px;
  font-size: 13px;
  color: var(--rp-gray);
}

/* ── Placeholder de imagen ── */
.rp-img-placeholder {
  background: #1a1a1a;
  border: 2px dashed rgba(45,106,79,0.35);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  color: var(--rp-gray);
  font-size: 13px;
  text-align: center;
  padding: 24px;
  min-height: 140px;
}

.rp-img-placeholder--tall { min-height: 260px; }
.rp-img-placeholder--square { min-height: 160px; aspect-ratio: 1; }
.rp-img-placeholder--avatar {
  width: 56px; height: 56px; min-height: unset;
  border-radius: 50%; padding: 0; font-size: 22px; flex-shrink: 0;
}
.rp-img-placeholder--doctor { min-height: 320px; }
.rp-img-placeholder--sm { min-height: 120px; max-width: 160px; margin: 0 auto; }

/* ──────────────────────────────────────────────────
   HERO — 2 columnas
   ────────────────────────────────────────────────── */
.rp-hero__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

@media (min-width: 760px) {
  .rp-hero__inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 56px;
    text-align: left;
  }
  .rp-hero__stars { justify-content: flex-start; }
  .rp-hero__subtitle { margin-left: 0; }
  .rp-hero__cta { margin-left: 0; }
  .rp-hero__seals { justify-content: flex-start; }
}

.rp-hero__col-img {
  flex: 0 0 auto;
  width: 100%;
  max-width: 320px;
}

.rp-hero__col-text {
  flex: 1;
}

.rp-hero__product-img {
  border-radius: 16px;
  border: 2px solid rgba(45,106,79,0.4);
  box-shadow: 0 0 40px rgba(45,106,79,0.2);
  width: 100%;
}

/* ──────────────────────────────────────────────────
   BARRA DE CONFIANZA — separador
   ────────────────────────────────────────────────── */
.rp-trust__divider {
  color: rgba(255,255,255,0.2);
  font-size: 20px;
}

@media (max-width: 600px) {
  .rp-trust__divider { display: none; }
}

/* ──────────────────────────────────────────────────
   PROBLEMA — caras / grid de síntomas
   ────────────────────────────────────────────────── */
.rp-problem__faces {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 720px;
  margin: 0 auto 32px;
}

@media (min-width: 640px) {
  .rp-problem__faces { grid-template-columns: repeat(4, 1fr); }
}

.rp-problem__face {
  text-align: center;
}

.rp-problem__face p {
  font-size: 13px;
  color: var(--rp-gray-light);
  margin-top: 10px;
  line-height: 1.4;
}

.rp-problem__callout {
  background: var(--rp-card-bg);
  border-left: 4px solid var(--rp-green);
  border-radius: 10px;
  padding: 20px 24px;
  max-width: 640px;
  margin: 0 auto;
}

.rp-problem__callout p {
  font-size: 16px;
  color: var(--rp-white);
  line-height: 1.6;
}

/* ──────────────────────────────────────────────────
   CONEXIÓN — 2 columnas
   ────────────────────────────────────────────────── */
.rp-conexion__grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: stretch;
  max-width: 800px;
  margin: 0 auto 32px;
}

@media (min-width: 640px) {
  .rp-conexion__grid {
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
  }
}

.rp-conexion__col {
  flex: 1;
  background: var(--rp-card-bg);
  border-radius: 14px;
  padding: 24px;
}

.rp-conexion__col-title {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.rp-conexion__col-title--red { color: #E63946; }
.rp-conexion__col-title--green { color: var(--rp-green-light); }

.rp-conexion__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rp-conexion__list li {
  font-size: 14px;
  color: var(--rp-gray-light);
  line-height: 1.4;
}

.rp-conexion__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--rp-gold);
  flex-shrink: 0;
}

.rp-conexion__note {
  font-size: 15px;
  color: var(--rp-gray-light);
  line-height: 1.7;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

/* ──────────────────────────────────────────────────
   CIENCIA — pulmones
   ────────────────────────────────────────────────── */
.rp-science__layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 860px;
  margin: 0 auto;
}

@media (min-width: 720px) {
  .rp-science__layout { flex-direction: row; align-items: flex-start; gap: 48px; }
  .rp-science__text { flex: 1; }
  .rp-science__visual { flex: 0 0 280px; }
}

.rp-science__text p {
  font-size: 15px;
  color: var(--rp-gray-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

.rp-science__highlight {
  background: var(--rp-card-bg);
  border-left: 3px solid var(--rp-gold);
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 14px !important;
  color: var(--rp-white) !important;
  font-style: italic;
}

.rp-science__compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.rp-science__lung {
  text-align: center;
}

.rp-science__lung-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 8px;
}

.rp-science__lung-label--good { color: var(--rp-green-light); }
.rp-science__lung-label--bad  { color: #E63946; }

/* ──────────────────────────────────────────────────
   POR QUÉ NADA FUNCIONÓ
   ────────────────────────────────────────────────── */
.rp-nada__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto 32px;
}

@media (min-width: 640px) {
  .rp-nada__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .rp-nada__grid { grid-template-columns: repeat(4, 1fr); }
}

.rp-nada__card {
  background: var(--rp-card-bg);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 24px 18px;
  text-align: center;
}

.rp-nada__icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.rp-nada__card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--rp-white);
  margin-bottom: 10px;
  line-height: 1.3;
}

.rp-nada__card p {
  font-size: 13px;
  color: var(--rp-gray);
  line-height: 1.5;
  margin-bottom: 14px;
}

.rp-nada__verdict {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
}

.rp-nada__verdict--no {
  background: rgba(230,57,70,0.15);
  color: #E63946;
  border: 1px solid rgba(230,57,70,0.3);
}

.rp-nada__break {
  background: rgba(45,106,79,0.12);
  border: 1px solid var(--rp-border);
  border-radius: 12px;
  padding: 20px 28px;
  max-width: 640px;
  margin: 0 auto;
}

.rp-nada__break p {
  font-size: 15px;
  color: var(--rp-white);
  text-align: center;
  line-height: 1.6;
}

/* ──────────────────────────────────────────────────
   SOLUCIÓN / GORDOLOBO
   ────────────────────────────────────────────────── */
.rp-solucion__layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 860px;
  margin: 0 auto;
}

@media (min-width: 720px) {
  .rp-solucion__layout { flex-direction: row; align-items: flex-start; gap: 48px; }
  .rp-solucion__img { flex: 0 0 240px; }
  .rp-solucion__content { flex: 1; }
}

.rp-ingrediente {
  background: var(--rp-card-bg);
  border: 1px solid var(--rp-border);
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 20px;
}

.rp-ingrediente__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.rp-ingrediente__icon { font-size: 32px; flex-shrink: 0; }

.rp-ingrediente__header h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--rp-white);
  line-height: 1.3;
}

.rp-ingrediente__header h3 em {
  font-weight: 400;
  font-size: 13px;
  color: var(--rp-gray);
  display: block;
}

.rp-ingrediente__desc {
  font-size: 14px;
  color: var(--rp-gray-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

.rp-ingrediente__lista {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rp-ingrediente__lista li {
  font-size: 14px;
  color: var(--rp-gray-light);
  line-height: 1.4;
}

.rp-solucion__format {
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--rp-border-gold);
  border-radius: 12px;
  padding: 20px 24px;
}

.rp-solucion__format h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--rp-gold);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.rp-solucion__format p {
  font-size: 14px;
  color: var(--rp-gray-light);
  line-height: 1.6;
}

/* ──────────────────────────────────────────────────
   TIMELINE — rediseño
   ────────────────────────────────────────────────── */
.rp-timeline__step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding-bottom: 36px;
  position: relative;
}

.rp-timeline__num {
  width: auto;
  height: auto;
  background: var(--rp-green);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.rp-timeline__icon {
  font-size: 28px;
  flex-shrink: 0;
  margin-top: 2px;
}

.rp-timeline__desc {
  font-size: 15px;
  color: var(--rp-gray-light);
  line-height: 1.6;
}

/* ──────────────────────────────────────────────────
   TESTIMONIOS — rediseño con avatar
   ────────────────────────────────────────────────── */
.rp-review-card__top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.rp-review-card__author {
  font-size: 14px;
  font-weight: 700;
  color: var(--rp-white);
  margin: 0;
}

.rp-review-card__location {
  font-size: 12px;
  color: var(--rp-gray);
  margin: 2px 0 0;
  color: #AAAAAA;
}

.rp-review-card__stars {
  color: var(--rp-gold);
  font-size: 13px;
  letter-spacing: 2px;
  margin: 4px 0 0;
}

.rp-review-card__badge {
  display: inline-block;
  margin-top: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rp-green-light);
  border: 1px solid var(--rp-border);
  border-radius: 999px;
  padding: 3px 10px;
}

/* ──────────────────────────────────────────────────
   EXPERTO
   ────────────────────────────────────────────────── */
.rp-experto__layout {
  display: flex;
  flex-direction: column;
  gap: 36px;
  max-width: 840px;
  margin: 0 auto;
}

@media (min-width: 720px) {
  .rp-experto__layout { flex-direction: row; align-items: flex-start; gap: 48px; }
  .rp-experto__img { flex: 0 0 220px; }
  .rp-experto__texto { flex: 1; }
}

.rp-blockquote {
  font-size: 15px;
  color: var(--rp-white);
  line-height: 1.7;
  border-left: 3px solid var(--rp-gold);
  padding-left: 20px;
  margin-bottom: 12px;
  font-style: italic;
}

.rp-experto__cite {
  font-size: 12px;
  color: var(--rp-gray);
  margin-bottom: 24px;
}

.rp-experto__puntos {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rp-experto__punto {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--rp-gray-light);
}

.rp-experto__punto-icon { font-size: 20px; flex-shrink: 0; }

/* ──────────────────────────────────────────────────
   GARANTÍA
   ────────────────────────────────────────────────── */
.rp-garantia__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}

@media (min-width: 720px) {
  .rp-garantia__inner {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    gap: 56px;
  }
  .rp-garantia__inner .rp-h2 { text-align: left; }
}

.rp-garantia__badge {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--rp-green-dark);
  border: 4px solid var(--rp-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 32px rgba(201,168,76,0.25);
}

.rp-garantia__badge-inner {
  text-align: center;
}

.rp-garantia__days {
  display: block;
  font-size: 52px;
  font-weight: 900;
  color: var(--rp-gold);
  line-height: 1;
}

.rp-garantia__label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--rp-white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

.rp-garantia__sub {
  display: block;
  font-size: 11px;
  color: var(--rp-gray);
  margin-top: 2px;
}

.rp-garantia__texto p {
  font-size: 15px;
  color: var(--rp-gray-light);
  line-height: 1.7;
  margin-bottom: 14px;
}

.rp-garantia__razon {
  font-size: 14px !important;
  color: var(--rp-white) !important;
}

.rp-garantia__cta {
  margin-top: 8px;
}

/* ──────────────────────────────────────────────────
   CTA FINAL — imagen producto
   ────────────────────────────────────────────────── */
.rp-cta-final__product {
  margin: 0 auto 20px;
  max-width: 180px;
}

.rp-cta-final__img {
  border-radius: 12px;
  border: 2px solid rgba(45,106,79,0.4);
  box-shadow: 0 0 28px rgba(45,106,79,0.2);
  width: 100%;
}

/* ============================================================
   SECCIÓN 2 — BENEFICIOS DEL PRODUCTO
   ============================================================ */
.rp-beneficios__grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 860px;
  margin: 40px auto 0;
}

.rp-beneficio {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

@media (min-width: 720px) {
  .rp-beneficio {
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
  }
  .rp-beneficio--reverse {
    flex-direction: row-reverse;
  }
}

.rp-beneficio__img {
  flex: 0 0 auto;
  width: 100%;
  max-width: 260px;
}

.rp-beneficio__texto { flex: 1; }

.rp-beneficio__titulo {
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 800;
  color: var(--rp-white);
  margin-bottom: 12px;
  line-height: 1.2;
}

.rp-beneficio__desc {
  font-size: 15px;
  color: var(--rp-gray-light);
  line-height: 1.7;
  margin-bottom: 12px;
}

.rp-beneficio__emocional {
  font-size: 14px;
  font-style: italic;
  color: var(--rp-green-light);
  border-left: 3px solid var(--rp-green);
  padding-left: 14px;
  margin: 0;
}

/* ============================================================
   SECCIÓN 3 — BENEFICIOS DE LA TIENDA
   ============================================================ */
.rp-tienda__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 760px;
  margin: 40px auto 32px;
}

@media (min-width: 720px) {
  .rp-tienda__grid { grid-template-columns: repeat(4, 1fr); }
}

.rp-tienda__item {
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 24px 16px;
  text-align: center;
}

.rp-tienda__icon {
  font-size: 36px;
  display: block;
  margin-bottom: 12px;
}

.rp-tienda__item h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--rp-white);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.rp-tienda__item p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

.rp-tienda__cta {
  max-width: 400px;
  margin: 0 auto;
}

/* ============================================================
   SECCIÓN 4 — COMPARATIVA
   ============================================================ */
.rp-comparativa__wrapper {
  max-width: 860px;
  margin: 0 auto 40px;
}

.rp-comparativa__scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.rp-comparativa__tabla {
  width: 100%;
  min-width: 580px;
  border-collapse: collapse;
  font-size: 14px;
}

.rp-comparativa__tabla thead tr {
  background: #111;
}

.rp-comparativa__tabla th {
  padding: 14px 16px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--rp-gray);
  border-bottom: 2px solid #222;
  color: #FFFFFF;
}

.rp-comparativa__tabla th:first-child {
  text-align: left;
}

.rp-comparativa__tabla td {
  padding: 13px 16px;
  text-align: center;
  border-bottom: 1px solid #1e1e1e;
  color: var(--rp-gray-light);
  font-size: 13px;
}

.rp-comparativa__tabla td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--rp-white);
}

.rp-comparativa__tabla tbody tr:hover {
  background: rgba(255,255,255,0.02);
}

.rp-comparativa__col--highlight {
  background: rgba(45,106,79,0.1) !important;
  border-left: 2px solid var(--rp-green) !important;
  border-right: 2px solid var(--rp-green) !important;
  font-weight: 700;
}

.rp-comparativa__tabla thead .rp-comparativa__col--highlight {
  color: #FFFFFF !important;
}

.rp-si   { color: var(--rp-green-light); font-weight: 700; font-size: 16px; }
.rp-no   { color: #E63946; font-weight: 700; font-size: 16px; }
.rp-parcial { color: var(--rp-gold); font-weight: 700; font-size: 15px; }

/* Antes / Después */
.rp-antesdespues {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 760px;
  margin: 0 auto;
  align-items: stretch;
}

@media (min-width: 600px) {
  .rp-antesdespues {
    flex-direction: row;
    align-items: stretch;
    gap: 0;
  }
}

.rp-antesdespues__col {
  flex: 1;
  padding: 28px 28px;
  border-radius: 14px;
}

.rp-antesdespues__col--antes {
  background: rgba(230,57,70,0.08);
  border: 1px solid rgba(230,57,70,0.25);
  border-radius: 14px 14px 0 0;
}

@media (min-width: 600px) {
  .rp-antesdespues__col--antes { border-radius: 14px 0 0 14px; }
  .rp-antesdespues__col--despues { border-radius: 0 14px 14px 0; }
}

.rp-antesdespues__col--despues {
  background: rgba(45,106,79,0.1);
  border: 1px solid rgba(45,106,79,0.3);
  border-radius: 0 0 14px 14px;
}

.rp-antesdespues__titulo {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.rp-antesdespues__col--antes .rp-antesdespues__titulo { color: #E63946; }
.rp-antesdespues__col--despues .rp-antesdespues__titulo { color: var(--rp-green-light); }

.rp-antesdespues__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rp-antesdespues__col--antes ul li::before { content: '✗  '; color: #E63946; font-weight: 800; }
.rp-antesdespues__col--despues ul li::before { content: '✓  '; color: var(--rp-green-light); font-weight: 800; }

.rp-antesdespues__col li {
  font-size: 14px;
  color: var(--rp-gray-light);
  line-height: 1.4;
}

.rp-antesdespues__flecha {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--rp-gold);
  padding: 8px;
  transform: rotate(90deg);
}

@media (min-width: 600px) {
  .rp-antesdespues__flecha { transform: rotate(0deg); padding: 0 4px; }
}

/* ============================================================
   SECCIÓN 5 — TESTIMONIOS — ajustes
   ============================================================ */
.rp-reviews__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 860px;
  margin: 0 auto 32px;
}

@media (min-width: 640px) {
  .rp-reviews__grid { grid-template-columns: repeat(3, 1fr); }
}

.rp-review-card--full {
  grid-column: 1 / -1;
}

.rp-reviews__cta {
  max-width: 420px;
  margin: 0 auto;
  text-align: center;
}

/* ============================================================
   SECCIÓN 7 — GARANTÍA — sellos inline
   ============================================================ */
.rp-garantia__sellos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 24px;
}

.rp-garantia__sello-item {
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--rp-white);
}
/* ── HEADER LAYOUT ── */
.header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 32px;
  height: 64px;
  overflow: visible !important;
}

.header__heading {
  grid-column: 2;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 64px;
}

.header__heading-link {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 64px;
  font-size: 0 !important;
}

.header__heading-link::before {
  content: '';
  display: block;
  width: 160px;
  height: 96px;
  background: url('/cdn/shop/files/logo_transparent.png?v=1780946694') center / contain no-repeat;
  mix-blend-mode: lighten;
  margin-top: -30px;
}

.header__heading {
  grid-column: 2;
  text-align: center;
}

.header__inline-menu {
  grid-column: 1;
  justify-self: start;
}

.header__icons {
  grid-column: 3;
  justify-self: end;
}

.header__inline-menu .list-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__inline-menu .list-menu__item a,
.header__inline-menu .list-menu__item a:visited {
  color: #FFFFFF !important;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.header__inline-menu .list-menu__item a:hover {
  color: #40916C !important;
}

.header__heading-link img {
  height: 72px;
  width: auto;
  display: block;
}

/* iconos del header */
.header__icon svg { color: #FFFFFF; }
.header__icon:hover svg { color: #40916C; }


/* ── TIPOGRAFÍA VARIADA ── */

/* Tags / pills */
.rp-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

/* Títulos H2 grandes */
.rp-h2 {
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

/* Título hero H1 */
.rp-hero__title {
  font-size: clamp(36px, 7vw, 64px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

/* Subtítulo hero */
.rp-hero__subtitle {
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 400;
  line-height: 1.65;
  color: #888888;
}

/* Título beneficio */
.rp-beneficio__titulo {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

/* Desc beneficio */
.rp-beneficio__desc {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  color: #888888;
}

/* Línea emocional en itálica verde */
.rp-beneficio__emocional {
  font-size: 15px;
  font-style: italic;
  font-weight: 600;
  color: #40916C;
}

/* Títulos de tarjetas */
.rp-nada__card h4,
.rp-tienda__item h4 {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Timeline número/período */
.rp-timeline__num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

/* FAQ pregunta */
.rp-faq__question {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

/* CTA final */
.rp-cta-final__title {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.rp-cta-final__price {
  font-size: clamp(48px, 9vw, 80px);
  font-weight: 900;
  letter-spacing: -0.02em;
}

/* ── Logo imagen ── */
.header__heading-link {
  font-size: 0 !important;
  line-height: 0;
}


/* ── Header sticky ── */
.shopify-section-header {
  position: sticky !important;
  top: 36px !important;
  z-index: 1000 !important;
}


.header__heading-text {
  display: none !important;
}

.header__heading {
  display: block !important;
}


.header__heading-link {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
/* ── Topbar fondo verde oscuro ── */
.rp-topbar {
  background: #1B4332 !important;
}

.header__inline-menu .list-menu {
  justify-content: center !important;
}

/* Ocultar título producto de Dawn */
.product__title,
h1.product__title,
.product-single__title {
  display: none !important;
}

.header ~ * span.h2,
span.h2 {
  display: none !important;
}

/* ── Tipografía Montserrat + Lora ── */
body, button, input {
  font-family: 'Montserrat', sans-serif !important;
}

.rp-hero__title,
.rp-h2,
.rp-cta-final__title {
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 900 !important;
}

.rp-hero__subtitle,
.rp-beneficio__desc,
.rp-faq__answer-inner,
.rp-garantia__texto p {
  font-family: 'Lora', serif !important;
  font-weight: 400 !important;
  font-size: 16px !important;
  line-height: 1.8 !important;
}

.rp-beneficio__emocional {
  font-family: 'Lora', serif !important;
  font-style: italic !important;
}

.rp-footer__links a {
  color: #AAAAAA !important;
}

.rp-footer__links a:hover {
  color: #FFFFFF !important;
}