/* Reset básico */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html,
body {
  height: 100%;
}
/* Evitar scroll horizontal por elementos full-bleed */
html,
body {
  overflow-x: hidden;
}
body {
  background: #fff;
  color: #000;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu,
    Cantarell, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol";
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Asegurar que header y nav no se colapsen */
.topbar,
.horizontal-nav {
  flex-shrink: 0;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Más padding en móviles para evitar elementos pegados a los lados */
@media (max-width: 767px) {
  .container {
    padding: 0 20px !important;
  }

  .topbar .container {
    padding: 0 20px !important;
  }

  /* Navegación horizontal */
  .nav-container {
    padding: 0 20px !important;
  }

  /* Elementos específicos del topbar */
  .brand {
    margin-left: 0 !important;
  }

  .right-section {
    margin-right: 0 !important;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px !important;
  }

  .topbar .container {
    padding: 0 16px !important;
  }

  /* Navegación horizontal */
  .nav-container {
    padding: 0 16px !important;
  }

  /* Elementos específicos del topbar */
  .brand {
    margin-left: 0 !important;
  }

  .right-section {
    margin-right: 0 !important;
  }
}

/* Topbar */
.topbar {
  position: static;
  background: #fff;
  border-bottom: 2px solid #000;
}
.topbar .container {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 52px;
  max-width: 100%;
  padding: 0 24px;
}

.right-section {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: clamp(6px, 1.4vw, 10px);
  min-width: 0;
  flex-shrink: 0;
}
.brand .cnn-logo {
  height: clamp(22px, 5.2vw, 30px);
  width: auto;
  display: block;
}
/* Separador vertical entre el logo y la palabra "Health" */
.brand .brand-divider {
  width: 1px;
  align-self: stretch;
  margin: 7px 0;
  background: #d0d0d0;
  flex-shrink: 0;
}
.brand .section {
  color: #000;
  font-weight: 700;
  font-size: clamp(15px, 3.6vw, 19px);
  line-height: 1;
  letter-spacing: -0.01em;
  white-space: nowrap;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
}

/* Pantallas muy angostas: se compacta el lockup, nunca se rompe */
@media (max-width: 380px) {
  .brand {
    gap: 6px;
  }
  .brand .cnn-logo {
    height: 20px;
  }
  .brand .brand-divider {
    margin: 5px 0;
  }
  .brand .section {
    font-size: 14px;
  }
  .topbar .container {
    gap: 10px;
  }
  .right-section {
    gap: 12px;
  }
  .mobile-live-tv {
    font-size: 14px;
  }
  .signin {
    font-size: 13px;
    padding: 3px 7px;
  }
}

.nav {
  display: none;
  gap: 28px;
}
.nav span {
  color: #000;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  border-bottom: 2px solid transparent;
}
.nav span:hover {
  border-bottom: 2px solid #000;
}

.utilities {
  display: none;
  align-items: center;
  gap: 28px;
}

.util {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #000;
  text-decoration: none;
  font-size: 16px;
  cursor: default;
}

.util:hover {
  color: #000;
}

.dot-red {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d30000;
  display: inline-block;
}

.icon-btn {
  background: transparent;
  border: none;
  color: #000;
  width: auto;
  height: auto;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.icon-btn:hover {
  opacity: 0.7;
}

.desktop-search {
  display: none;
}

.mobile-live-tv {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #000;
  text-decoration: none;
  font-size: 16px;
  cursor: default;
}

.mobile-live-tv:hover {
  color: #000;
}

.signin {
  color: #000;
  border: 1px solid #000;
  padding: 3px 9px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  background: transparent;
  transition: all 0.2s;
}

/* Header completo de escritorio (menu + utilidades + buscador).
   Antes arrancaba en 1024px, pero a ese ancho el conjunto mide ~1135px y
   el boton "Sign In" se salia por la derecha (iPad horizontal, portatiles
   de 1024-1152). Se sube el corte al ancho en el que realmente cabe; por
   debajo se usa el header compacto (logo + Live TV + Sign In). */
@media (min-width: 1160px) {
  .nav {
    display: flex;
  }
  .utilities {
    display: flex;
  }
  .desktop-search {
    display: grid;
  }
  .mobile-live-tv {
    display: none;
  }
}

/* Franja 1160-1319px: se aprietan un poco las separaciones para que el
   header respire sin llegar a desbordarse. */
@media (min-width: 1160px) and (max-width: 1319px) {
  .topbar .container {
    gap: 20px;
  }
  .nav {
    gap: 18px;
  }
  .nav span {
    font-size: 15px;
  }
  .utilities {
    gap: 18px;
  }
  .util {
    font-size: 15px;
  }
  .right-section {
    gap: 16px;
  }
}

/* Navegación horizontal deslizable */
.horizontal-nav {
  background: #fff;
  border-bottom: 1px solid #000;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
  touch-action: pan-x;
}

.horizontal-nav::-webkit-scrollbar {
  display: none;
}

.nav-container {
  display: flex;
  gap: 0;
  padding: 0 24px;
  min-width: max-content;
}

.nav-item {
  color: #000;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  padding: 20px 24px;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
  flex-shrink: 0;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
}

.nav-item:hover {
  border-bottom: 2px solid #000;
  background: rgba(255, 255, 255, 0.05);
}

.nav-item:active {
  background: rgba(255, 255, 255, 0.1);
}

/* Ocultar navegación horizontal en desktop */
@media (min-width: 1024px) {
  .horizontal-nav {
    display: none;
  }
}

/* Compactar la barra en móviles */
@media (max-width: 767px) {
  .horizontal-nav .nav-container {
    padding: 0 8px;
  }
  .horizontal-nav .nav-item {
    font-size: 14px;
    padding: 2px 15px;
    min-height: 10px;
  }
}

/* Página */
.page {
  padding: 24px 0 64px;
  flex: 1;
}

.video-and-title {
  max-width: 800px;
  margin: 0 auto;
}


/* Al revelarse la oferta, usar más ancho en desktop/tablet */
/* Disabled: width expansion on offer reveal */
/* @media (min-width: 768px) {
  body.offer-revealed .video-and-title {
    max-width: 1100px;
    transition: max-width 0.3s ease;
  }
} */

.video-wrapper {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #111;
  border: 1px solid #1e1e1e;
  z-index: 1;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  display: block;
}

.play-toggle {
  position: absolute;
  right: 20px;
  bottom: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.play-toggle:hover {
  background: rgba(0, 0, 0, 0.85);
}

.cnn-play-logo {
  height: 24px;
  width: auto;
  filter: brightness(0) invert(1);
}

/* Article Meta */
.article-meta {
  background: #fff;
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 8px;
}

.meta-category {
  color: #4a4a4a;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.meta-separator {
  color: #9a9a9a;
  font-weight: 400;
}

.meta-read-time {
  color: #9a9a9a;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 767px) {
  .article-meta {
    padding: 10px 0;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .article-meta {
    padding: 8px 0;
    font-size: 0.75rem;
  }
}

/* Article Author Info */
.article-author-info {
  background: #fff;
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 8px;
}

.article-updated {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #1a1a1a;
  font-weight: 400;
}

.article-updated svg {
  color: #1a1a1a;
  cursor: pointer;
}

.article-author {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1a1a1a;
  font-weight: 400;
}

.author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  color: #1a1a1a;
  text-decoration: underline;
  font-weight: 400;
}

.author-name:hover {
  text-decoration: none;
}

@media (max-width: 767px) {
  .article-author-info {
    padding: 12px 0;
    font-size: 0.8rem;
  }
  
  .author-avatar {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 480px) {
  .article-author-info {
    padding: 10px 0;
    font-size: 0.75rem;
  }
  
  .author-avatar {
    width: 24px;
    height: 24px;
  }
}

/* =====================================================================
   TITULAR PRINCIPAL
   Estructura:  h1.headline  >  span.headline-hook  +  span.headline-body
   El gancho ("The $35,000-A-Year Memory Lie:") va en su propia linea y en
   rojo; el cuerpo del titular debajo, en negro. Tipografia fluida con
   clamp() para que el titular -que es largo- respire igual en un movil de
   320px que en escritorio.
   ===================================================================== */
.headline {
  margin: 16px 0 18px;
  font-size: clamp(23px, 1.9vw + 15px, 39px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #111;
  border-left: 10px solid #d30000;
  padding-left: 18px;
  width: 100%;
  max-width: 28ch;          /* longitud de linea comoda en escritorio */
  text-wrap: balance;       /* reparte las lineas para un bloque parejo */
  overflow-wrap: break-word;
  hyphens: none;
}

/* Gancho: primera linea, en el rojo del filete lateral */
.headline-hook {
  display: block;
  color: #d30000;
  margin-bottom: 0.14em;
}

/* Cuerpo del titular */
.headline-body {
  display: block;
  color: #111;
}

/* Fragmentos que nunca deben partirse a mitad ("$35,000-A-Year", etc.) */
.headline .nb {
  white-space: nowrap;
}

/* ---- Tablet / movil grande ---- */
@media (max-width: 900px) {
  .headline {
    max-width: 32ch;
  }
}

@media (max-width: 767px) {
  .headline {
    margin: 0 8px 16px 0;
    padding-left: 14px !important;
    border-left-width: 8px;
    font-size: clamp(23px, 4.6vw + 6px, 31px);
    line-height: 1.14;
    letter-spacing: -0.018em;
    max-width: none;
  }
  .headline-hook {
    margin-bottom: 0.12em;
  }
}

/* ---- Movil ---- */
@media (max-width: 480px) {
  .headline {
    margin: 0 0 14px;
    padding-left: 12px !important;
    border-left-width: 7px;
    font-size: clamp(21px, 6.1vw, 26px);
    line-height: 1.16;
    letter-spacing: -0.015em;
  }
  /* En pantallas estrechas se deja que "Clint Eastwood, 95," pueda partir
     antes que provocar desbordamiento horizontal. */
  .headline .nb-soft {
    white-space: normal;
  }
}

/* ---- Movil muy estrecho (iPhone SE y similares) ---- */
@media (max-width: 360px) {
  .headline {
    padding-left: 10px !important;
    border-left-width: 6px;
    font-size: 20.5px;
    line-height: 1.18;
  }
}

.share-row {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  color: #000;
}

/* Más espacio para elementos de compartir en móviles */
@media (max-width: 767px) {
  .share-row {
    margin-left: 20px !important;
    margin-right: 20px !important;
    gap: 8px;
  }

  /* Iconos de compartir más pequeños en mobile */
  .share {
    width: 28px;
    height: 28px;
  }
  .share svg {
    width: 14px;
    height: 14px;
  }

  .video-and-title {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  /* Centrar mejor las tarjetas de precios */
  .mx-auto.px-4 {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
}

@media (max-width: 480px) {
  .share-row {
    margin-left: 16px !important;
    margin-right: 16px !important;
    gap: 6px;
  }

  /* Aún más compacto en móviles muy pequeños */
  .share {
    width: 22px;
    height: 22px;
  }
  .share svg {
    width: 20px;
    height: 20px;
  }

  .video-and-title {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  /* Centrar mejor las tarjetas de precios */
  .mx-auto.px-4 {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
}
.share {
  color: #000;
  width: 36px;
  height: 36px;
  border: 1px solid #2a2a2a;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-decoration: none;
}

/* =======================================================================
   PIE DEL VIDEO (.video-caption)
   Sinopsis + iconos de compartir + aviso de caducidad. Es texto de apoyo,
   no titular: tipografia Inter, gris medio y una linea fina arriba que lo
   separa del reproductor y agrupa los tres elementos como un bloque.
   ===================================================================== */
.video-caption {
  max-width: 62ch;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid #e4e7ec;
}

.description {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.6;
  color: #475467;
  text-wrap: pretty;
  overflow-wrap: break-word;
}

/* Unico enfasis de la frase: el gancho, sin gritar */
.description-em {
  font-weight: 600;
  color: #1d2939;
}

/* Los iconos se alinean con el texto de la sinopsis y bajan de peso:
   el circulo negro competia con el titular */
.video-caption .share-row {
  margin-top: 14px;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.video-caption .share {
  width: 32px;
  height: 32px;
  border-color: #d0d5dd;
  color: #667085;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.video-caption .share:hover {
  border-color: #98a2b3;
  color: #1d2939;
}

.video-caption .share svg {
  width: 17px;
  height: 17px;
}

@media (max-width: 600px) {
  .video-caption {
    margin-top: 16px;
    padding-top: 14px;
  }
  .description {
    font-size: 0.9rem;
    line-height: 1.55;
  }
  .video-caption .share {
    width: 30px;
    height: 30px;
  }
  .video-caption .share svg {
    width: 16px;
    height: 16px;
  }
}
.meta {
  margin: 8px 0;
  color: #000;
  font-size: 14px;
  font-weight: 700;
}
.meta .cnn-source {
  border-bottom: 1px solid #000;
}

/* Footer */
.footer {
  background: rgb(245, 245, 245);
  color: #000;
  padding: 20px 0 20px;
  flex-shrink: 0;
}

.footer .container {
  padding-top: 20px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-cnn-logo {
  height: 24px;
  width: auto;
}

.footer-section {
  color: #000;
  font-weight: 700;
  font-size: 18px;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-utilities {
  display: flex;
  gap: 24px;
}

.footer-util {
  color: #000;
  text-decoration: none;
  font-size: 14px;
  cursor: default;
}

.footer-divider {
  width: 1px;
  height: 20px;
  background: #000;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.follow-text {
  color: #000;
  font-size: 14px;
  font-weight: 600;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icon {
  color: #000;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 4px;
  transition: background-color 0.2s;
  cursor: default;
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.1);
}

.footer-signin {
  color: #000;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  cursor: default;
}

.footer-divider-line {
  width: 100%;
  height: 1px;
  background: #000;
  margin: 20px 0;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.footer-link {
  color: #000;
  text-decoration: none;
  font-size: 14px;
  cursor: default;
}

.footer-link:hover {
  text-decoration: underline;
}

.footer-copyright {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}

.footer-copyright p {
  color: #000;
  font-size: 12px;
  margin: 0;
}

@media (max-width: 768px) {
  .footer .container {
    padding-top: 20px;
  }

  .footer-top {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .footer-right {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .footer-social {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

  .footer-links {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .footer .container {
    padding-top: 20px;
  }
  
  .footer-bottom {
    align-items: center;
  }
  
  .footer-links {
    justify-content: center;
    align-items: center;
  }
  
  .footer-copyright {
    text-align: center;
  }
}

/* Overrides mobile para maquetar como la referencia */
@media (max-width: 768px) {
  .footer-top {
    align-items: center;
    text-align: center;
  }
  .footer-brand {
    justify-content: center;
  }
  .footer-right {
    align-items: center;
  }
  .footer-utilities,
  .footer-divider,
  .footer-signin {
    display: none;
  }
  .footer-social {
    align-items: center;
  }
  .social-icons {
    justify-content: center;
  }
  .footer-links {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  
  .footer-bottom {
    align-items: center;
  }
  .footer-link {
    font-size: 12px;
  }
  .footer-copyright {
    text-align: center;
  }
}

/*  OFERTA */

/* CSS Variables (Tailwind equivalents) */
:root {
  --background: 0 0% 100%;
  --foreground: 222.2 84% 4.9%;
  --card: 0 0% 100%;
  --card-foreground: 222.2 84% 4.9%;
  --popover: 0 0% 100%;
  --popover-foreground: 222.2 84% 4.9%;
  --primary: 222.2 47.4% 11.2%;
  --primary-foreground: 210 40% 98%;
  --secondary: 210 40% 96.1%;
  --secondary-foreground: 222.2 47.4% 11.2%;
  --muted: 210 40% 96.1%;
  --muted-foreground: 215.4 16.3% 46.9%;
  --accent: 210 40% 96.1%;
  --accent-foreground: 222.2 47.4% 11.2%;
  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 210 40% 98%;
  --border: 214.3 31.8% 91.4%;
  --input: 214.3 31.8% 91.4%;
  --ring: 222.2 84% 4.9%;
  --radius: 0.5rem;
  --contrast-color: #fbbf24;
}

/* Special Offer Banner */
.special-offer-container {
  width: 100%;
  max-width: 980px;
  margin: 0 auto 2rem auto;
  padding: 0 1rem;
}

.special-offer-red {
  background-color: #d81f04; /* rojo intenso como el de la maqueta */
  padding: 1.25rem 2rem;
  text-align: center;
  margin-bottom: 0.75rem;
}

.special-offer-title {
  color: #fde047; /* amarillo */
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin: 0;
}

.special-offer-subtitle {
  color: white;
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0.5rem 0 0 0;
  letter-spacing: 0.08em;
}

.special-offer-promo {
  background: #ffffff;
  border: 2px solid #1f3c2f; /* borde verde oscuro */
  border-radius: 12px;
  padding: 0.75rem 1rem;
  max-width: 800px; /* mantiene este más angosto */
  margin-left: auto;
  margin-right: auto;
}

.promo-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

/* Badge verde con pico diagonal */
.promo-badge {
  position: relative;
  background-color: rgba(8, 86, 131, 0.92);
  height: 110px;
  width: 190px;
  border-radius: 10px 0 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -2px; /* al ras del borde del contenedor */
  margin-right: 1.25rem; /* evita que el pico tape el texto */
  flex-shrink: 0;
}

.promo-badge::after {
  content: "";
  position: absolute;
  top: 0;
  right: -26px;
  border-left: 26px solid rgba(8, 86, 131, 0.92); /* triángulo del pico */
  border-top: 55px solid transparent;
  border-bottom: 55px solid transparent;
}

.promo-truck {
  width: 130px;
  height: auto;
  display: block;
}

.promo-text {
  flex: 1;
}

.promo-main {
  color: #0b1b0d; /* muy oscuro para contraste */
  font-weight: 800;
  font-size: 1.25rem;
  margin: 0 0 0.25rem 0;
}

.promo-main strong {
  color: #0b1b0d;
}

.promo-note {
  color: #333;
  font-size: 0.95rem;
  margin: 0;
}

@media (max-width: 480px) {
  .special-offer-container {
    max-width: 100%;
    margin: 0 0 1.25rem 0;
    padding: 0 0.75rem;
  }
  .special-offer-red {
    margin-bottom: 0.5rem;
  }
  .special-offer-title {
    font-size: 1.6rem;
    letter-spacing: 0.06em;
  }
  .special-offer-subtitle {
    font-size: 0.8rem;
  }
  .special-offer-promo {
    padding: 0.55rem 0.85rem;
  }
  .promo-inner {
    flex-direction: row;
    align-items: center;
    gap: 0.65rem;
  }
  .promo-text {
    text-align: left;
  }
  .promo-badge {
    width: 148px;
    height: 78px;
    margin-right: 0.7rem;
  }
  .promo-badge::after {
    right: -18px;
    border-left-width: 18px;
    border-top-width: 39px;
    border-bottom-width: 39px;
    border-left-color: rgba(8, 86, 131, 0.92);
  }
  .promo-truck {
    width: 95px;
  }
  .promo-main {
    font-size: 0.98rem;
    line-height: 1.25;
    margin: 0;
  }
  .promo-note {
    font-size: 0.76rem;
    line-height: 1.2;
  }
}

/* Utility Classes */
.font-sans {
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans",
    sans-serif;
}

.min-h-screen {
  min-height: 100vh;
}

.bg-gray-100 {
  background-color: rgb(243 244 246);
}

.bg-white {
  background-color: rgb(255 255 255);
}

.bg-gray-50 {
  background-color: rgb(249 250 251);
}

.bg-gray-800 {
  background-color: rgb(31 41 55);
}

.bg-red-800 {
  background-color: rgb(153 27 27);
}

.shadow-sm {
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

.shadow-2xl {
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1),
    0 4px 6px -2px rgb(0 0 0 / 0.05);
}

.shadow-xl {
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1),
    0 10px 10px -5px rgb(0 0 0 / 0.04);
}

.shadow-inner {
  box-shadow: inset 0 2px 4px 0 rgb(0 0 0 / 0.05);
}

.text-white {
  color: rgb(255 255 255);
}

.text-gray-100 {
  color: rgb(243 244 246);
}

.text-gray-300 {
  color: rgb(209 213 219);
}

.text-gray-500 {
  color: rgb(107 114 128);
}

.text-gray-600 {
  color: rgb(75 85 99);
}

.text-gray-700 {
  color: rgb(55 65 81);
}

.text-gray-800 {
  color: rgb(31 41 55);
}

.text-gray-900 {
  color: rgb(17 24 39);
}

.text-red-600 {
  color: rgb(220 38 38);
}

.text-green-500 {
  color: rgb(34 197 94);
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.pt-20 {
  padding-top: 5rem;
}

.pt-24 {
  padding-top: 6rem;
}

.pb-16 {
  padding-bottom: 4rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.pt-6 {
  padding-top: 1.5rem;
}

.pb-2 {
  padding-bottom: 0.5rem;
}

.p-3 {
  padding: 0.75rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mx-12 {
  margin-left: 3rem;
  margin-right: 3rem;
}

.container {
  width: 100%;
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}

.max-w-sm {
  max-width: 24rem;
}

.max-w-lg {
  max-width: 32rem;
}

.md\:max-w-xs {
  max-width: 20rem;
}

.md\:max-w-md {
  max-width: 28rem;
}

.lg\:max-w-sm {
  max-width: 24rem;
}

.lg\:max-w-lg {
  max-width: 32rem;
}

@media (min-width: 768px) {
  .md\:max-w-xs {
    max-width: 20rem;
  }

  .md\:max-w-md {
    max-width: 28rem;
  }
}

@media (min-width: 1024px) {
  .lg\:max-w-sm {
    max-width: 24rem;
  }

  .lg\:max-w-lg {
    max-width: 32rem;
  }
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-3xl {
  max-width: 48rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.max-w-700 {
  max-width: 700px;
}

.w-full {
  width: 100%;
}

.w-4 {
  width: 1rem;
}

.w-5 {
  width: 1.25rem;
}

.w-6 {
  width: 1.5rem;
}

.w-12 {
  width: 3rem;
}

.w-16 {
  width: 4rem;
}

.h-4 {
  height: 1rem;
}

.h-5 {
  height: 1.25rem;
}

.h-6 {
  height: 1.5rem;
}

.h-12 {
  height: 3rem;
}

.h-14 {
  height: 3.5rem;
}

.h-16 {
  height: 4rem;
}

.h-20 {
  height: 5rem;
}

.h-full {
  height: 100%;
}

.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.grid {
  display: grid;
}

.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.bottom-0 {
  bottom: 0px;
}

.left-0 {
  left: 0px;
}

.flex-col {
  flex-direction: column;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.shrink-0 {
  flex-shrink: 0;
}

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

.items-center {
  align-items: center;
}

.justify-start {
  justify-content: flex-start;
}

.justify-center {
  justify-content: center;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-x-6 {
  column-gap: 1.5rem;
}

.gap-y-4 {
  row-gap: 1rem;
}

.space-x-3 > :not([hidden]) ~ :not([hidden]) {
  margin-left: 0.75rem;
}

.space-y-2 > :not([hidden]) ~ :not([hidden]) {
  margin-top: 0.5rem;
}

.space-y-3 > :not([hidden]) ~ :not([hidden]) {
  margin-top: 0.75rem;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-x-hidden {
  overflow-x: hidden;
}

.whitespace-nowrap {
  white-space: nowrap;
}

.rounded-md {
  border-radius: 0.375rem;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.border-t {
  border-top-width: 1px;
}

.border-gray-700 {
  border-color: rgb(55 65 81);
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.tracking-tight {
  letter-spacing: -0.025em;
}

.tracking-wider {
  letter-spacing: 0.05em;
}

.tabular-nums {
  font-variant-numeric: tabular-nums;
}

.text-center {
  text-align: center;
}

.underline {
  text-decoration-line: underline;
}

.underline-offset-4 {
  text-underline-offset: 4px;
}

.italic {
  font-style: italic;
}

.break-inside-avoid-column {
  break-inside: avoid-column;
}

.columns-2 {
  columns: 2;
}

.transition-colors {
  transition-property: color, background-color, border-color,
    text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.duration-300 {
  transition-duration: 300ms;
}

.duration-700 {
  transition-duration: 700ms;
}

.duration-1500 {
  transition-duration: 1500ms;
}

.ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.object-contain {
  object-fit: contain;
}

.ring-offset-background {
  --tw-ring-offset-color: hsl(var(--background));
}

.focus-visible\:outline-none:focus-visible {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.focus-visible\:ring-2:focus-visible {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0
    var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0
    calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow),
    var(--tw-shadow, 0 0 #0000);
}

.disabled\:pointer-events-none:disabled {
  pointer-events: none;
}

.disabled\:opacity-50:disabled {
  opacity: 0.5;
}

/* =============================================== */
/* RESPONSIVE DESIGN COMPLETO */
/* =============================================== */

/* =============================================== */
/* RESPONSIVE GENERAL - MOBILE FIRST */
/* =============================================== */

@media (max-width: 480px) {
  /* Video section para móviles muy pequeños */
  .max-w-sm {
    max-width: 100% !important;
    padding-left: 0.75rem; /* más aire a los lados del VSL */
    padding-right: 0.75rem; /* más aire a los lados del VSL */
  }

  /* Títulos principales */
  .text-3xl {
    font-size: 1.5rem !important;
    line-height: 1.8rem !important;
  }

  .sm\:text-4xl,
  .md\:text-5xl {
    font-size: 1.7rem !important;
    line-height: 1.9rem !important;
  }

  .text-xl {
    font-size: 1rem !important;
    line-height: 1.4rem !important;
  }

  .md\:text-2xl {
    font-size: 1.1rem !important;
    line-height: 1.5rem !important;
  }

  /* Espaciado general optimizado */
  .py-12 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .py-8 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .px-4 {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }

  .mb-8 {
    margin-bottom: 1.5rem !important;
  }

  .mb-4 {
    margin-bottom: 1rem !important;
  }

  /* Header y marquee */
  .text-sm {
    font-size: 0.8rem !important;
  }

  .marquee-container {
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  /* Carrusel AS SEEN ON optimizado SOLO para móviles */
  .bg-gray-50 .py-8 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  #logo-carousel .flex-shrink-0 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
    width: 80px !important;
  }

  #logo-carousel img {
    max-width: 80px !important;
    width: 80px !important;
    height: 24px !important;
    object-fit: contain !important;
  }

  /* View count */
  .tabular-nums {
    font-size: 0.9rem;
  }

  /* Contenedores principales */
  .container {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }

  /* Más espacio lateral en móviles para todos los contenedores */
  @media (max-width: 767px) {
    .container {
      padding-left: 1rem !important;
      padding-right: 1rem !important;
    }

    .mx-auto.px-4 {
      padding-left: 1rem !important;
      padding-right: 1rem !important;
    }

    /* Banner y elementos específicos */
    .banner-container .container {
      padding-left: 1rem !important;
      padding-right: 1rem !important;
    }

    .full-width-banner .text-center {
      padding-left: 1rem !important;
      padding-right: 1rem !important;
    }
  }

  @media (max-width: 480px) {
    .container {
      padding-left: 0.75rem !important;
      padding-right: 0.75rem !important;
    }

    .mx-auto.px-4 {
      padding-left: 0.75rem !important;
      padding-right: 0.75rem !important;
    }

    /* Banner y elementos específicos */
    .banner-container .container {
      padding-left: 0.75rem !important;
      padding-right: 0.75rem !important;
    }

    .full-width-banner .text-center {
      padding-left: 0.75rem !important;
      padding-right: 0.75rem !important;
    }
  }

  /* Más espacio lateral para el bloque de autor en el header */
  header .container.mx-auto.px-4.py-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .max-w-4xl {
    max-width: 100% !important;
    padding: 0 0.5rem;
  }

  /* Espacio lateral para Referencias científicas */
  #references-container {
    margin-left: 0.9rem !important;
    margin-right: 0.9rem !important;
    width: 100% !important;
    max-width: calc(100% - 1.8rem) !important;
  }
  #references-content {
    padding-right: 0.25rem;
  }

  /* VSL styles removed - no containers now */
}

/* Tablets pequeñas */
@media (min-width: 481px) and (max-width: 640px) {
  .max-w-sm {
    max-width: 100% !important;
    padding-left: 0.9rem;
    padding-right: 0.9rem;
  }

  .text-3xl {
    font-size: 1.75rem;
    line-height: 2rem;
  }

  /* VSL styles removed - no containers now */
}

/* Tablets */
@media (min-width: 640px) {
  .sm\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .sm\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .max-w-sm {
    max-width: 22rem;
  }
}

@media (min-width: 768px) {
  .md\:flex-row {
    flex-direction: row;
  }

  .md\:gap-6 {
    gap: 1.5rem;
  }

  .md\:mt-0 {
    margin-top: 0px;
  }

  .md\:text-left {
    text-align: left;
  }

  .md\:text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .md\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .md\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .md\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }

  .md\:w-16 {
    width: 4rem;
  }

  .md\:w-24 {
    width: 6rem;
  }

  .md\:h-16 {
    height: 4rem;
  }

  .md\:space-x-4 > :not([hidden]) ~ :not([hidden]) {
    margin-left: 1rem;
  }
}

/* Custom Animations */
@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fade-in-up 0.5s ease-out forwards;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.animate-marquee {
  animation: marquee 25s linear infinite;
}

@keyframes subtle-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 0 0 12px rgba(34, 197, 94, 0);
  }
}

.animate-subtle-pulse {
  animation: subtle-pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  50% {
    opacity: 0.5;
  }
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Button Styles */
.btn-offer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  border-radius: 0.375rem;
  font-weight: 500;
  transition-property: color, background-color, border-color,
    text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter,
    backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  border: none;
  cursor: pointer;
  text-decoration: none;
  background: linear-gradient(to right, rgb(34 197 94), rgb(21 128 61));
}

.btn-offer:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1),
    0 10px 10px -5px rgb(0 0 0 / 0.04);
}

.btn-offer:active {
  transform: scale(1);
}

.btn-offer:hover {
  --tw-ring-color: rgba(34, 197, 94, 0.5);
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0
    var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0
    calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow),
    var(--tw-shadow, 0 0 #0000);
}

/* Marquee Container */
.marquee-container {
  max-width: 700px;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 15%,
    black 85%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 15%,
    black 85%,
    transparent
  );
}

/* Hide class for V-Turb integration */
.hide {
  display: none;
}

/* Hover effects */
.hover\:text-white:hover {
  color: rgb(255 255 255);
}

.hover\:text-gray-700:hover {
  color: rgb(55 65 81);
}

.hover\:underline:hover {
  text-decoration-line: underline;
}

.hover\:scale-105:hover {
  transform: scale(1.05);
}

.active\:scale-100:active {
  transform: scale(1);
}

/* Max height utilities */
.max-h-40 {
  max-height: 10rem;
}

.max-h-1000 {
  max-height: 1000px;
}

/* Background gradients */
.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.from-green-500 {
  --tw-gradient-from: rgb(34 197 94);
  --tw-gradient-to: rgb(34 197 94 / 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.to-green-700 {
  --tw-gradient-to: rgb(21 128 61);
}

.bg-gradient-to-t {
  background-image: linear-gradient(to top, var(--tw-gradient-stops));
}

.from-white {
  --tw-gradient-from: rgb(255 255 255);
  --tw-gradient-to: rgb(255 255 255 / 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.to-transparent {
  --tw-gradient-to: transparent;
}

/* Ring utilities for focus states */
.hover\:ring-4:hover {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0
    var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0
    calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow),
    var(--tw-shadow, 0 0 #0000);
}

.hover\:ring-green-500\/50:hover {
  --tw-ring-color: rgb(34 197 94 / 0.5);
}

/* Rotation utility */
.rotate-180 {
  transform: rotate(180deg);
}

/* =============================================== */
/* PRICING PACKAGES SECTION - BASADO EN REFERENCIA */
/* =============================================== */

/* Variables CSS como en la referencia */
:root {
  --primary-color: #1e1d3f;
  --secondary-color: #60a7dc;
  --third-color: #1e1d3f;
  --fourth-color: #60a7dc;
  --primary-color-light: #2f2d62;
  --primary-color-dark: black;
  --secondary-color-light: #8abee5;
  --secondary-color-dark: #2775af;
  --contrast-color: #fff490;
  --text-color: #000000;
  --light-color: #f1f1f1;
}

/* Grid layout para los productos */
.max-w-7xl {
  max-width: 80rem;
}

.gap-8 {
  gap: 2rem;
}

@media (min-width: 768px) {
  .md\:grid-cols-3 {
    display: grid;
    grid-template-columns: 1fr 1.1fr 1fr;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }
}

/* Responsive para pricing cards */
@media (max-width: 480px) {
  .md\:grid-cols-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5em;
    padding: 0 0.5rem;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  .md\:grid-cols-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2em;
  }
}

/* Ordenamiento en móviles - BEST VALUE primero */
@media (max-width: 767px) {
  .best-value-package {
    order: 1;
  }
  .basic-package {
    order: 2;
  }
  .popular-package {
    order: 3;
  }
}

/* Ordenamiento en desktop como en la referencia */
@media (min-width: 768px) {
  .best-value-package {
    order: 2;
  }
  .popular-package {
    order: 3;
  }
  .basic-package {
    order: 1;
  }
}

/* Estilos base de las tarjetas */
.pricing-card {
  display: block;
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: var(--text-color);
  background-color: white;
  border-radius: 1em;
  overflow: hidden;
  border: 2px solid var(--secondary-color);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: 0.2s;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.pricing-card:hover {
  transform: scale(1.025);
}

/* Headers de los paquetes */
.package-header {
  padding: 8px 20px !important;
  background-color: var(--secondary-color);
  font-weight: 700;
  color: white;
  font-size: 18px;
  text-transform: uppercase;
  line-height: 1 !important;
  min-height: auto !important;
  box-sizing: border-box !important;
}

/* Resetear márgenes del h3 dentro del header */
.package-header .package-title {
  margin: 0 !important;
  padding: 0 !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
}

/* Contenido del paquete */
.package-content {
  padding: 1.5em 1.2em;
}

/* Cantidad de botellas */
.package-quantity {
  padding: 1em 0.5em;
  text-align: center;
  line-height: 1;
  text-transform: uppercase;
}

.quantity-number {
  display: block;
  font-size: 2.2em;
  font-weight: 900;
  margin: 0 0 0.05em 0;
  color: var(--text-color);
  line-height: 0.9;
}

.supply-text {
  font-size: 1em;
  color: var(--text-color);
  margin: 0;
  font-weight: 500;
  line-height: 1;
}

/* Imágenes del producto */
.product-image {
  margin: 1em 0;
  display: flex;
  justify-content: center;
}

.product-img {
  max-height: 200px;
  width: auto;
  object-fit: contain;
}

/* Precios */
.price-display {
  display: flex;
  text-align: start;
  gap: 0.25em;
  width: fit-content;
  margin: 0 auto;
  align-items: center;
  line-height: 1;
}

.price-symbol {
  font-size: 1.8em;
  font-weight: 900;
  color: var(--text-color);
}

.price-amount {
  font-size: 4em;
  font-weight: 900;
  text-align: center;
  color: var(--text-color);
}

.price-per {
  display: flex;
  flex-direction: column;
  font-size: 0.8em;
  font-weight: 800;
  color: var(--text-color);
  line-height: 1;
}

/* Badges de ahorro */
.savings-badge,
.guarantee-badge,
.discount-badge {
  font-size: 0.7em;
  font-weight: 800;
  padding: 0.6em;
  margin: 0.2em 0;
  align-items: center;
  justify-content: center;
  background-color: var(--light-color);
  border-radius: 0.5em;
  display: flex; /* centra vertical y horizontalmente el contenido */
  color: var(--primary-color);
}

/* Mantener espaciado original solo en Best Value */
.best-value-content .savings-badge,
.best-value-content .guarantee-badge,
.best-value-content .discount-badge {
  margin: 0.5em 0;
}

.savings-badge span,
.guarantee-badge span,
.discount-badge span {
  display: flex;
  width: fit-content;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  gap: 0.25em;
  line-height: 1;
}

.checkmark::before {
  content: "\f26a";
  font-family: "bootstrap-icons";
  font-size: 1em;
  font-weight: normal;
  margin-right: 0.25em;
}

/* Botones de compra (ahora enlaces) */
.buy-button {
  background-image: linear-gradient(to top, #dadada 50%, #e0e0e0 51%);
  color: var(--text-color) !important;
  border: 2px solid #bfbfbf !important;
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 1.25em;
  border-radius: 14px !important; /* más cuadrado */
  line-height: 1;
  padding: 0.5em 1.5em;
  text-decoration: none !important;
  margin: 0.5em auto;
  width: 100%;
  display: grid; /* grid para centrar correctamente el subtítulo */
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  align-items: center;
  justify-content: center;
  column-gap: 0.5em;
  row-gap: 0.25em;
  cursor: pointer;
  transition: 0.2s;
  box-sizing: border-box;
}

/* Texto a dos líneas para los CTAs */
.buy-button .btn-text {
  display: contents; /* permite colocar strong y small en la grilla del botón */
}
.buy-button .btn-text strong {
  font-weight: 900;
  letter-spacing: 0.02em;
  grid-column: 2;
  grid-row: 1;
}
.buy-button .btn-text small {
  font-weight: 700;
  font-size: 0.6em;
  margin-top: 0.1em;
  color: #4b5563; /* gris para variantes grises */
  grid-column: 1 / span 2; /* ocupar todo el ancho del botón */
  grid-row: 2;
  justify-self: center;
  text-align: center;
}

.buy-button:hover {
  background-image: linear-gradient(to bottom, #dadada 50%, #e0e0e0 51%);
}

.shopping-cart-icon::before {
  content: "\f23e";
  font-family: "bootstrap-icons";
  font-weight: normal;
  display: inline-block;
  vertical-align: baseline; /* alinear con texto */
  margin: 0 0.1em 0 0;
  font-size: 1.05em;
}

/* Alineación del contenedor del ícono dentro del botón */
.shopping-cart-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  grid-column: 1;
  grid-row: 1;
}

/* Iconos de tarjetas */
.payment-icons {
  margin: 0.5em 0;
  display: flex;
  justify-content: center;
}

.payment-methods-container {
  max-width: 220px;
}

.payment-methods-container img {
  width: 100%;
  height: auto;
}

/* Totales */
.total-pricing {
  font-size: 1.1em;
  text-align: center;
  margin-top: 1em;
}

.totals {
  font-size: 1.2em;
  margin-bottom: 0.1em;
  line-height: 1;
}

.original-price {
  text-decoration: line-through;
  text-decoration-color: #dc2626;
  text-decoration-thickness: 2px;
  margin-right: 0.5em;
  font-weight: 500;
  color: #dc2626;
}

.final-price {
  color: #000000;
  font-weight: 700;
  font-size: 1.1em;
}

/* Precios para Best Value (fondo oscuro) */
.best-value-content .final-price {
  color: white;
}

.best-value-content .original-price {
  color: #ff6b6b;
  text-decoration-color: #ff6b6b;
}

.shipping {
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.1em;
  line-height: 1;
  margin-top: 0;
}

.shipping-price {
  color: #dc3545;
}

.free-shipping {
  color: #0fd37a;
  font-weight: 700;
}

/* FREE shipping para Best Value (tarjeta del medio) */
.best-value-content .free-shipping {
  color: var(--contrast-color);
}

/* FREE shipping para Most Popular (tarjeta de la derecha) */
.popular-package .free-shipping {
  color: #dc2626;
}

/* PAQUETE BEST VALUE - Estilo especial como PROMO */
.best-value-package {
  color: white;
  background: radial-gradient(
    ellipse at center,
    #bfefff 30%,
    /* centro más claro */ #69cfff 65%,
    #4ab7e6 100% /* bordes más oscuros */
  );
  border-radius: 10px;
}

.best-value-package .package-content {
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  background: radial-gradient(
      ellipse at center,
      rgba(13, 111, 150, 0.8) 0%,
      /* centro más claro */ rgba(15, 102, 150, 0.92) 55%,
      rgba(9, 60, 102, 0.98) 85%,
      rgba(7, 38, 64, 1) 100% /* bordes más oscuros */
    ),
    linear-gradient(180deg, #0b3d5f 0%, #0f6ea2 100%);
  color: white;
}

.best-value-header {
  background-color: #323150;
  color: white;
  text-shadow: none;
  text-transform: uppercase;
  position: relative;
}

/* Badge BEST VALUE - contenedor pequeño separado */
.best-value-badge {
  background: #ffffff;
  color: #354476;
  padding: 8px 20px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: none;
  text-align: center;
  text-transform: uppercase;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}

/* Contenido del paquete Best Value */
.best-value-content .quantity-number,
.best-value-content .supply-text,
.best-value-content .price-symbol,
.best-value-content .price-amount,
.best-value-content .price-per {
  color: white;
}

.best-value-content .product-img {
  max-height: 240px;
}

/* Badges del Best Value */
.best-value-content .savings-badge,
.best-value-content .discount-badge,
.best-value-content .guarantee-badge {
  color: var(--text-color);
  background: #f5f5f5;
  text-shadow: none;
}

/* Botón del Best Value */
.best-value-buy {
  color: #111827 !important; /* texto oscuro para buen contraste */
  background-image: linear-gradient(
    to top,
    #ffd14a 50%,
    #ffe062 51%
  ) !important; /* botón amarillo */
  border: 2px solid #e3b700 !important;
  text-shadow: none;
}

.best-value-buy:hover {
  background-image: linear-gradient(
    to bottom,
    #ffd14a 50%,
    #ffe062 51%
  ) !important;
}

.best-value-content .shipping-info .free-shipping {
  color: var(--contrast-color);
}

/* Responsive */
@media (max-width: 767px) {
  html,
  body {
    overscroll-behavior-x: none !important;
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .bg-gray-100,
  .container,
  .max-w-sm,
  .max-w-4xl,
  .max-w-7xl,
  .marquee-container,
  .pricing-card,
  .guarantee-content,
  .faq-container {
    overflow-x: hidden !important;
    width: 100% !important; /* evitar 100vw que causa desbordes por el scrollbar */
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* Espaciado vertical para el aviso superior en móviles */
  header .subtitle {
    line-height: 25px;
  }

  /* Carousel removed: #logo-carousel styles deleted */

  /* VSL player basic styles */
  vturb-smartplayer {
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
  }
}

@media (max-width: 767px) {
  body {
    touch-action: pan-y !important;
  }
}

/* =============================================== */
/* GUARANTEE SECTION */
/* =============================================== */

.bg-primary-dark {
  /* Reemplaza el azul por un blanco suave para resaltar la imagen */
  background-color: #f3f4f6; /* light gray (no 100% blanco) */
  position: relative;
  overflow: hidden;
  margin-top: 1.5rem; /* separa de las tarjetas superiores */
}

/* Fondo con elementos decorativos como en la imagen */
.bg-primary-dark::before {
  /* Sin decoraciones azules para un fondo limpio */
  content: none;
}

.guarantee-badge-img {
  max-width: 200px;
  height: auto;
  position: relative;
  z-index: 10;
  margin-bottom: -6rem;
}
/* Garantía como imagen única */
.guarantee-image {
  width: 80%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.guarantee-content {
  position: relative;
  z-index: 2;
  padding: 3rem 3rem 3rem 3rem !important;
}

.shadow-guarantee {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4),
    0 10px 25px -5px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.guarantee-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-color);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.guarantee-subtitle {
  color: var(--primary-color-light);
  font-weight: 900;
  font-size: 1.8rem;
}

.guarantee-text {
  color: #000000;
  line-height: 1.7;
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
}

.guarantee-badges {
  gap: 2.5rem;
  margin-top: 2rem;
}

.badge-img {
  max-width: 120px;
  height: auto;
}

/* CTA Section */
.cta-title {
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
}

.cta-subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

.text-yellow {
  color: var(--contrast-color);
}

/* Clases adicionales necesarias */
.max-w-5xl {
  max-width: 64rem;
}

.rounded-3xl {
  border-radius: 1.5rem;
}

.p-8 {
  padding: 2rem;
}

.md\:p-12 {
  padding: 3rem;
}

@media (min-width: 768px) {
  .md\:p-12 {
    padding: 3rem;
  }
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.gap-8 {
  gap: 2rem;
}

.flex-wrap {
  flex-wrap: wrap;
}

/* =============================================== */
/* RESPONSIVE GUARANTEE & CTA SECTIONS */
/* =============================================== */

/* Móviles muy pequeños */
@media (max-width: 480px) {
  /* Contenedor garantía: centrar vertical y horizontalmente */
  .bg-primary-dark .container {
    min-height: 260px; /* alto razonable para centrar el contenido */
    display: flex;
    align-items: center; /* centra vertical */
    justify-content: center; /* centra horizontal */
  }

  .bg-primary-dark .max-w-5xl {
    width: 100%;
  }

  .bg-primary-dark .max-w-5xl > .text-center {
    display: flex;
    width: 100%;
    justify-content: center;
  }

  .guarantee-image {
    width: 100% !important; /* un poco más ancha en móvil */
  }
  /* Reducir espacio superior de la sección - selector más específico */
  .bg-primary-dark[style*="padding-top: 8rem"] {
    padding-top: 0.5rem !important;
    margin-top: 0rem !important;
  }

  .bg-primary-dark.pt-24 {
    padding-top: 0.5rem !important;
    margin-top: 0rem !important;
  }

  /* Forzar con ID si es necesario */
  div[style*="padding-top: 8rem"][style*="margin-top: 4rem"] {
    padding-top: 0.5rem !important;
    margin-top: 0rem !important;
  }

  .guarantee-badge-img {
    max-width: 120px !important;
    margin-bottom: -6rem !important;
  }

  .guarantee-content {
    padding: 6rem 1rem 2rem 1rem !important;
    border-radius: 1rem !important;
  }

  .guarantee-title {
    font-size: 1.4rem !important;
    margin-bottom: 1rem !important;
  }

  .guarantee-subtitle {
    font-size: 1.1rem !important;
    font-weight: 900;
  }

  .guarantee-text {
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
    margin-bottom: 1.5rem !important;
  }

  .guarantee-badges {
    gap: 0.8rem !important;
    margin-top: 1rem !important;
  }

  .badge-img {
    max-width: 60px !important;
  }

  .cta-title {
    font-size: 1.3rem !important;
    padding: 0 1rem;
  }

  .cta-subtitle {
    font-size: 1rem !important;
    padding: 0 1rem;
  }
}

/* Móviles medianos */
@media (min-width: 481px) and (max-width: 767px) {
  /* Centrado en vertical también para medianos */
  .bg-primary-dark .container {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .guarantee-image {
    width: 88% !important;
  }
  /* Reducir espacio superior - selectores específicos */
  .bg-primary-dark[style*="padding-top: 8rem"] {
    padding-top: 1rem !important;
    margin-top: 0rem !important;
  }

  div[style*="padding-top: 8rem"][style*="margin-top: 4rem"] {
    padding-top: 1rem !important;
    margin-top: 0rem !important;
  }

  .guarantee-badge-img {
    max-width: 140px;
    margin-bottom: -5.5rem !important;
  }

  .guarantee-content {
    padding: 6rem 1.5rem 2.5rem 1.5rem !important;
  }

  .guarantee-title {
    font-size: 1.6rem;
  }

  .guarantee-subtitle {
    font-size: 1.3rem;
    font-weight: 900;
  }

  .guarantee-text {
    font-size: 0.95rem;
  }

  .guarantee-badges {
    gap: 1rem;
  }

  .badge-img {
    max-width: 65px;
  }

  .cta-title {
    font-size: 1.4rem;
  }

  .cta-subtitle {
    font-size: 1.1rem;
  }
}

/* Tablets */
@media (min-width: 768px) and (max-width: 1023px) {
  .guarantee-badge-img {
    max-width: 170px;
    margin-bottom: -4rem;
  }

  .guarantee-content {
    padding: 4.5rem 2.5rem 3rem 2.5rem !important;
  }

  .guarantee-title {
    font-size: 2rem;
  }

  .guarantee-subtitle {
    font-size: 1.6rem;
  }

  .guarantee-text {
    font-size: 1.05rem;
  }

  .badge-img {
    max-width: 90px;
  }

  .cta-title {
    font-size: 1.8rem;
  }

  .cta-subtitle {
    font-size: 1.4rem;
  }
}

/* =============================================== */
/* FAQ SECTION */
/* =============================================== */

.faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
}

.faq-container {
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  color: #374151;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--primary-color);
}

.faq-question span:first-child {
  flex: 1;
  padding-right: 1rem;
}

.faq-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ff6b6b;
  border-radius: 50%;
  color: white;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-icon svg {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 1.5rem;
}

.faq-content {
  color: #6b7280;
  line-height: 1.6;
  font-size: 1rem;
  padding-right: 3rem;
}

/* Clases adicionales necesarias */
.rounded-2xl {
  border-radius: 1rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

/* =============================================== */
/* RESPONSIVE FAQ SECTION */
/* =============================================== */

/* Móviles muy pequeños */
@media (max-width: 480px) {
  .faq-title {
    font-size: 1.5rem !important;
    margin-bottom: 2rem !important;
    padding: 0 1rem;
  }

  .faq-container {
    margin: 0 0.9rem !important; /* más espacio a los lados */
    width: 100% !important;
    max-width: calc(
      100% - 1.8rem
    ) !important; /* evita corte en el lado derecho */
    padding: 1rem !important;
    border-radius: 1rem;
  }

  .faq-question {
    font-size: 0.9rem !important;
    padding: 1rem 0 !important;
    line-height: 1.3;
  }

  .faq-question span:first-child {
    padding-right: 0.5rem !important;
  }

  .faq-content {
    padding-right: 0.5rem !important;
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
  }

  .faq-icon {
    width: 30px !important;
    height: 30px !important;
  }

  .faq-item.active .faq-answer {
    padding-bottom: 1rem !important;
  }
}

/* Móviles medianos */
@media (min-width: 481px) and (max-width: 767px) {
  .faq-title {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
  }

  .faq-container {
    padding: 1.5rem;
    margin: 0 1.25rem !important; /* más espacio a los lados */
    width: 100% !important;
    max-width: calc(
      100% - 2.5rem
    ) !important; /* evita corte en el lado derecho */
  }

  .faq-question {
    font-size: 0.95rem;
    padding: 1.2rem 0;
  }

  .faq-content {
    padding-right: 0.8rem;
    font-size: 0.9rem;
  }

  .faq-icon {
    width: 32px;
    height: 32px;
  }
}

/* Tablets */
@media (min-width: 768px) and (max-width: 1023px) {
  .faq-title {
    font-size: 2.2rem;
  }

  .faq-question {
    font-size: 1.05rem;
    padding: 1.4rem 0;
  }

  .faq-content {
    padding-right: 1.5rem;
    font-size: 1rem;
  }

  .faq-icon {
    width: 38px;
    height: 38px;
  }
}

/* =============================================== */
/* CTA COUNTDOWN BANNER STYLES */
/* =============================================== */

/* Full width banner styles - En flujo normal */
.full-width-banner {
  width: 100vw; /* Usar 100% del viewport width */
  margin: 0;
  padding: 0; /* Sin padding superior en ningún dispositivo */
  position: relative;
}

/* Padding interno solo para el contenido */
.full-width-banner .text-center {
  padding: 1rem 0.5rem 0.75rem 0.5rem; /* Padding interno para el contenido */
}

@media (max-width: 768px) {
  .full-width-banner .text-center {
    padding: 0.75rem 0.5rem 0.5rem 0.5rem; /* Menos padding en móviles */
  }
}

/* Contenedor del banner - Sin padding superior */
.banner-container {
  position: relative;
  padding-top: 0 !important; /* Sin espacio superior */
  width: 100vw; /* Usar 100% del viewport width */
  margin-left: calc(
    -50vw + 50%
  ); /* Centrar el contenido que se extiende más allá del contenedor padre */
  margin-right: calc(
    -50vw + 50%
  ); /* Centrar el contenido que se extiende más allá del contenedor padre */
}
/* Reducir espacio cuando se eliminó carrusel/fotos */
.banner-container--compact {
  padding-bottom: 2rem; /* antes era 4rem en pb-16; efecto visual más compacto */
}

.references {
  padding-top: 1.5rem; /* reducir separación superior */
  padding-bottom: 1.5rem; /* opcional: más compacto */
}

@media (max-width: 768px) {
  .banner-container--compact {
    padding-bottom: 1rem;
  }
  .references {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}

/* Espacio para el banner de shipping después del strip */
.banner-container .special-offer-container {
  margin-top: 20px; /* Espacio después de la barra roja oscura */
  margin-bottom: 10px; /* Espacio antes de las tarjetas */
}

/* Acercar el bloque de tarjetas al banner (justo debajo del shipping banner) */
.banner-container > .container {
  margin-top: 20px !important; /* Espacio después del shipping banner */
}

@media (max-width: 768px) {
  .banner-container .special-offer-container {
    margin-top: 15px;
    margin-bottom: 8px;
  }

  .banner-container > .container {
    margin-top: 15px !important;
  }
}

/*--------------------strip3------------------*/
.strip3 {
  padding: 0;
  color: #fff;
  margin: 0; /* Eliminar todos los márgenes */
}

@media (max-width: 991px) {
  .strip3 {
    margin: 0; /* Sin márgenes en móviles también */
  }
}

ul.strip3-list {
  display: flex;
  justify-content: center;
  text-align: center;
  flex-wrap: no-wrap;
  margin: 0;
}

@media (max-width: 991px) {
  ul.strip3-list {
    padding-left: 0;
    gap: 10px; /* Reducir gap para pantallas pequeñas */
    padding: 0 5px;
    flex-wrap: nowrap; /* Mantener en una línea pero con más espacio */
  }
}

/* Estilos para móviles medianos */
@media (min-width: 481px) and (max-width: 767px) {
  ul.strip3-list li {
    font-size: 19px !important; /* Significativamente más grande */
    line-height: 23px !important;
    padding: 0 10px;
  }

  ul.strip3-list li strong {
    font-weight: 700 !important;
    font-size: 20px !important; /* Significativamente más grande */
  }
}

ul.strip3-list li {
  padding: 0 22px;
  position: relative;
  font-size: 20px;
  line-height: 28px;
  color: #fff;
  text-align: center;
  list-style: none;
  margin: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

ul.strip3-list li:nth-child(1):before {
  display: inline-block;
  margin: 0 8px 0 0; /* Eliminar margin-bottom para mejor alineación */
  width: 10px;
  height: 10px;
  background: #13ac41;
  border-radius: 50%;
  content: "";
  animation: fade 1s ease-in-out infinite;
  flex-shrink: 0; /* No permitir que se encoja */
}

@media (max-width: 991px) {
  ul.strip3-list li {
    font-size: 18px !important; /* Significativamente más grande */
    line-height: 22px !important;
    padding: 0 8px; /* Reducir padding lateral */
    white-space: nowrap; /* Evitar salto de línea */
  }

  ul.strip3-list li:nth-child(1):after {
    display: block !important;
    height: 100%;
    top: 0;
    right: -4px; /* Ajustar separador */
  }
}

/* Estilos específicos para móviles muy pequeños */
@media (max-width: 480px) {
  ul.strip3-list {
    gap: 5px; /* Gap muy pequeño para pantallas muy pequeñas */
    padding: 0 3px;
    flex-wrap: nowrap; /* Mantener en una línea */
  }

  ul.strip3-list li {
    font-size: 14px !important; /* Reducir un poco para que quepa */
    line-height: 18px !important;
    padding: 0 2px; /* Padding mínimo */
    white-space: nowrap; /* Evitar salto de línea */
    flex-shrink: 1; /* Permitir que se encoja si es necesario */
  }

  /* Hacer el texto más grande pero ajustado */
  ul.strip3-list li strong {
    font-weight: 700 !important; /* Mantener bold para énfasis */
    font-size: 15px !important; /* Ajustado para pantallas pequeñas */
  }
}

ul.strip3-list li::after {
  content: "";
  position: absolute;
  right: 0;
  top: 6px;
  height: 18px;
  background: #e6dede;
  width: 2px;
}

ul.strip3-list li:last-child::after {
  display: none;
}

@keyframes fade {
  0% {
    opacity: 100%;
  }

  50% {
    opacity: 30%;
  }

  70% {
    opacity: 100%;
  }

  100% {
    opacity: 100%;
  }
}

.hourglass {
  display: inline-block;
  margin: 0 6px 0 0; /* Alineación perfecta sin vertical-align */
  animation: rotateP 2.5s ease-in-out forwards infinite;
  max-width: 16px; /* Ligeramente más pequeño */
  filter: invert(1);
  flex-shrink: 0; /* No permitir que se encoja */
}

@keyframes rotateP {
  0% {
    transform: rotate(0);
  }

  50% {
    transform: rotate(180deg);
  }

  100% {
    transform: rotate(180deg);
  }
}

.countdown {
  display: inline-block;
  font-size: 20px;
  line-height: 28px;
  color: #fff;
}

@media (max-width: 991px) {
  .countdown {
    display: inline-block;
    font-size: 18px; /* Más grande que el original de 14px */
    line-height: 24px;
  }
}

/* Contador más grande en móviles pequeños */
@media (max-width: 480px) {
  .countdown {
    font-size: 16px; /* Más grande que el original */
    line-height: 20px;
  }
}

.title-claim {
  font-size: 37px;
  font-weight: 700;
  max-width: 900px;
  margin: 0 auto 0.25rem auto; /* Margen inferior más pequeño */
  line-height: 1.1; /* Línea más compacta */
}

@media (max-width: 991px) {
  .title-claim {
    font-size: 27px;
    margin: auto;
    max-width: 100%;
  }
}

.timer {
  color: var(--contrast-color) !important;
  font-size: 3rem !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  font-family: "Courier New", monospace !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3) !important;
  margin: 0.25rem 0 1rem 0 !important; /* Espacio inferior para separar de la barra */
}

/* Mensaje cuando el timer expira */
.timer-expired-message {
  color: var(
    --contrast-color
  ) !important; /* Mismo amarillo que "With Our Special Time-Limited Offer!" */
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  text-shadow: 2px 2px 0 #00000042 !important; /* Misma sombra que el subtítulo */
  margin: 0.5rem 0 1rem 0 !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  animation: glow-fade 2s ease-in-out infinite;
}

@keyframes glow-fade {
  0% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(0.6);
  }
  100% {
    filter: brightness(1);
  }
}

@media (max-width: 991px) {
  .timer {
    font-size: 2.5rem !important;
  }

  .timer-expired-message {
    font-size: 1.25rem !important;
  }
}

@media (max-width: 767px) {
  .timer {
    font-size: 2rem !important;
  }

  .timer-expired-message {
    font-size: 1rem !important;
  }
}

/* Estilos para el texto "Only Until" */
.full-width-banner h5 {
  font-size: 1.25rem !important; /* 20px */
  font-weight: 600 !important;
  margin: 0.25rem 0 0.25rem 0 !important; /* Reducir espaciado vertical */
}

@media (max-width: 991px) {
  .full-width-banner h5 {
    font-size: 1.125rem !important; /* 18px en tablets */
  }
}

@media (max-width: 767px) {
  .full-width-banner h5 {
    font-size: 1rem !important; /* 16px en móviles pequeños */
  }
}

/* =============================================== */
/* RESPONSIVE COMPLETO PARA PRICING CARDS */
/* =============================================== */

/* Móviles muy pequeños (hasta 480px) */
@media (max-width: 480px) {
  /* Tarjetas de precios */
  .pricing-card {
    max-width: 100% !important;
    margin-bottom: 1.5em;
    border-radius: 0.9rem;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .best-value-package {
    border-radius: 10px;
    margin-bottom: 1.5em;
    transform: none !important;
  }

  .package-header {
    padding: 6px 15px !important;
    font-size: 16px !important;
  }

  .best-value-badge {
    padding: 6px 15px;
    font-size: 16px;
  }

  /* SEPARAR: SOLO Basic y Popular (NO Best Value) */
  .basic-package .package-content:not(.best-value-content),
  .popular-package .package-content:not(.best-value-content) {
    padding: 1em 0.75em !important;
    display: grid !important;
    grid-template-columns: 1.1fr 1fr;
    grid-template-rows: auto auto 1fr auto auto auto; /* filas con altura específica */
    column-gap: 0.75rem;
    row-gap: 0.3rem;
    align-items: center; /* centrado vertical */
  }

  /* SEPARAR: Best Value independiente */
  .best-value-content {
    padding: 1em 0.75em !important;
    display: grid !important;
    grid-template-columns: 1.1fr 1fr;
    grid-auto-rows: min-content;
    column-gap: 0.6rem;
    row-gap: 0.4rem; /* más juntos en Y */
    align-items: start; /* mantiene su estilo original */
  }

  .package-quantity {
    grid-column: 1;
    grid-row: 1;
    text-align: center !important;
    justify-self: center;
    width: 100%;
    padding: 0.25em 0 !important;
  }
  .package-quantity .quantity-number,
  .package-quantity .supply-text {
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }

  .quantity-number {
    font-size: 1.6em !important;
  }

  .supply-text {
    font-size: 0.8em !important;
  }

  .price-display {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .price-symbol {
    font-size: 1.35em !important; /* un poco más grande */
  }

  .price-amount {
    font-size: 2.8em !important; /* un poco más grande */
    letter-spacing: -0.08em;
  }

  .price-per {
    font-size: 0.6em !important;
  }

  .product-image {
    grid-column: 1;
    grid-row: 2 / span 4; /* ocupa filas 2-5 */
    align-self: start;
    margin: 0.2em 0 0 0 !important;
  }

  .product-img {
    max-height: 110px !important; /* +20px en mobile pequeño */
  }

  /* Badges en filas 2, 3 y 4 de la columna derecha */
  .savings-badge {
    grid-column: 2;
    grid-row: 2;
    width: 100%;
    max-width: 220px;
    margin: 0.2em 0 !important;
    padding: 0.5em !important;
    margin-left: auto !important;
    margin-right: 0 !important;
  }
  .discount-badge {
    grid-column: 2;
    grid-row: 3;
    width: 100%;
    max-width: 220px;
    margin: 0.2em 0 !important;
    padding: 0.5em !important;
    margin-left: auto !important;
    margin-right: 0 !important;
  }
  .guarantee-badge {
    grid-column: 2;
    grid-row: 4;
    width: 100%;
    max-width: 220px;
    margin: 0.2em 0 !important;
    padding: 0.5em !important;
    margin-left: auto !important;
    margin-right: 0 !important;
  }

  /* Override para centrar verticalmente SOLO Basic y Popular */
  .basic-package .package-content .savings-badge,
  .basic-package .package-content .guarantee-badge,
  .popular-package .package-content .savings-badge,
  .popular-package .package-content .guarantee-badge {
    place-self: center end !important;
    grid-row: 2 !important;
  }
  .basic-package .package-content .guarantee-badge,
  .popular-package .package-content .guarantee-badge {
    grid-row: 3 !important;
  }

  /* Contenedor de badges para centrado conjunto */
  .badges-group {
    grid-column: 2 !important;
    grid-row: 2 / span 2 !important; /* ocupa filas 2 y 3 */
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important; /* centrado vertical del grupo */
    align-items: end !important; /* alineado a la derecha */
    gap: 0.4rem !important; /* un poquito más de espacio */
  }

  /* Best Value con 3 badges necesita más espacio vertical */
  .best-value-content .badges-group {
    grid-row: 2 / span 3 !important; /* ocupa filas 2, 3 y 4 */
    gap: 0.3rem !important; /* menos gap porque son 3 badges */
  }

  /* Resetear grid positioning de badges individuales */
  .basic-package .badges-group .savings-badge,
  .basic-package .badges-group .guarantee-badge,
  .popular-package .badges-group .savings-badge,
  .popular-package .badges-group .guarantee-badge {
    grid-column: unset !important;
    grid-row: unset !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: 250px !important; /* un poco menos ancho */
    padding: 0.7em 1em !important; /* menos padding */
  }

  /* Badges de Best Value también ajustados */
  .best-value-content .badges-group .savings-badge,
  .best-value-content .badges-group .discount-badge,
  .best-value-content .badges-group .guarantee-badge {
    grid-column: unset !important;
    grid-row: unset !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: 250px !important; /* un poco menos ancho */
    padding: 0.7em 1em !important; /* menos padding */
  }

  /* Totales en la fila 5, arriba del botón */
  .total-pricing {
    grid-column: 2;
    grid-row: 5;
    text-align: left !important;
    margin-top: 0.25em !important;
    font-size: 0.96em;
  }

  /* Botón al final ocupando las dos columnas */
  .buy-button {
    grid-column: 1 / -1;
    grid-row: 6;
    font-size: 1.2em !important; /* letra más grande */
    padding: 0.8em 1.2em !important; /* más altura */
    margin: 0.8em auto !important;
  }

  /* Separar icono del carrito en mobile */
  .buy-button .shopping-cart-icon::before {
    margin-right: 0.4em !important;
  }
  /* Juntar badges en Basic/Popular (móvil pequeño) */
  .basic-package .package-content,
  .popular-package .package-content {
    row-gap: 0.3rem !important;
  }
  .basic-package .savings-badge,
  .basic-package .guarantee-badge,
  .popular-package .savings-badge,
  .popular-package .guarantee-badge {
    margin: 0.1em 0 !important;
    place-self: center end !important;
  }
  /* Si no hay discount, guarantee inmediatamente debajo de savings */
  .basic-package .guarantee-badge,
  .popular-package .guarantee-badge {
    grid-row: 3 !important;
  }

  /* Ocultar íconos de pago en mobile para evitar filas extra */
  .payment-icons {
    display: none !important;
  }

  .savings-badge,
  .guarantee-badge,
  .discount-badge {
    font-size: 0.65em !important;
    padding: 0.5em !important;
    margin: 0.8em 0 !important;
  }

  /* Juntar badges en Basic/Popular (móvil mediano) */
  .basic-package .package-content,
  .popular-package .package-content {
    row-gap: 0.35rem !important;
  }
  .basic-package .savings-badge,
  .basic-package .guarantee-badge,
  .popular-package .savings-badge,
  .popular-package .guarantee-badge {
    margin: 0.1em 0 !important;
    place-self: center end !important;
  }
  .basic-package .guarantee-badge,
  .popular-package .guarantee-badge {
    grid-row: 3 !important;
  }

  .totals {
    font-size: 1em !important;
  }

  .shipping {
    font-size: 0.9em !important;
  }

  .final-price {
    font-size: 1em !important;
  }

  .payment-methods-container {
    display: none !important;
  }

  /* Espaciado general */
  .pt-20 {
    padding-top: 1rem !important;
  }

  .pt-24 {
    padding-top: 1.5rem !important;
  }

  .pb-16 {
    padding-bottom: 1rem !important;
  }

  /* Sección de referencias científicas */
  .py-12 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  /* Orden en mobile: 6→3→2 botellas */
  .md\:grid-cols-3.gap-8 {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
  }
  .best-value-package {
    order: 1;
  }
  .popular-package {
    order: 2;
  }
  .basic-package {
    order: 3;
  }
}

/* Móviles medianos (481px - 767px) */
@media (min-width: 481px) and (max-width: 767px) {
  .pricing-card {
    max-width: 100%;
    margin-bottom: 1.2em;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .best-value-package {
    padding: 3px;
    margin-bottom: 1.2em;
    transform: scale(1.02) !important;
  }

  .package-header {
    padding: 7px 18px !important;
  }

  .quantity-number {
    font-size: 1.8em;
  }

  .supply-text {
    font-size: 0.9em;
  }

  /* SEPARAR: SOLO Basic y Popular (NO Best Value) (mobile mediano) */
  .basic-package .package-content:not(.best-value-content),
  .popular-package .package-content:not(.best-value-content) {
    display: grid !important;
    grid-template-columns: 1.15fr 1fr;
    grid-template-rows: auto auto 1fr auto auto auto; /* filas con altura específica */
    column-gap: 0.8rem;
    row-gap: 0.35rem;
    align-items: center; /* centrado vertical */
    padding: 1em 0.9em !important;
  }

  /* SEPARAR: Best Value independiente (mobile mediano) */
  .best-value-content {
    display: grid !important;
    grid-template-columns: 1.15fr 1fr;
    grid-auto-rows: min-content;
    column-gap: 0.8rem;
    row-gap: 0.5rem; /* más juntos en Y */
    align-items: start; /* mantiene su estilo original */
    padding: 1em 0.9em !important;
  }

  .package-quantity {
    grid-column: 1;
    grid-row: 1;
    text-align: center !important;
    justify-self: center;
    width: 100%;
  }
  .package-quantity .quantity-number,
  .package-quantity .supply-text {
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }
  .price-display {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }
  .product-image {
    grid-column: 1;
    grid-row: 2 / span 4;
    align-self: start;
    margin-top: 0.2em !important;
  }
  .product-img {
    max-height: 160px !important; /* +20px en mobile mediano */
  }
  .savings-badge {
    grid-column: 2;
    grid-row: 2;
    width: 100%;
    max-width: 240px;
    margin: 0.8em 0 !important;
    padding: 0.5em !important;
    margin-left: auto !important;
    margin-right: 0 !important;
  }
  .discount-badge {
    grid-column: 2;
    grid-row: 3;
    width: 100%;
    max-width: 240px;
    margin: 0.8em 0 !important;
    padding: 0.5em !important;
    margin-left: auto !important;
    margin-right: 0 !important;
  }
  .guarantee-badge {
    grid-column: 2;
    grid-row: 4;
    width: 100%;
    max-width: 240px;
    margin: 0.8em 0 !important;
    padding: 0.5em !important;
    margin-left: auto !important;
    margin-right: 0 !important;
  }

  /* Override para centrar verticalmente SOLO Basic y Popular (mobile mediano) */
  .basic-package .package-content .savings-badge,
  .basic-package .package-content .guarantee-badge,
  .popular-package .package-content .savings-badge,
  .popular-package .package-content .guarantee-badge {
    place-self: center end !important;
    grid-row: 2 !important;
  }
  .basic-package .package-content .guarantee-badge,
  .popular-package .package-content .guarantee-badge {
    grid-row: 3 !important;
  }

  /* Contenedor de badges para centrado conjunto aplicado globalmente */

  /* Resetear grid positioning de badges individuales (mobile mediano) */
  .basic-package .badges-group .savings-badge,
  .basic-package .badges-group .guarantee-badge,
  .popular-package .badges-group .savings-badge,
  .popular-package .badges-group .guarantee-badge {
    grid-column: unset !important;
    grid-row: unset !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: 260px !important; /* un poco menos ancho */
    padding: 0.7em 1em !important; /* menos padding */
  }

  /* Badges de Best Value también ajustados (mobile mediano) */
  .best-value-content .badges-group .savings-badge,
  .best-value-content .badges-group .discount-badge,
  .best-value-content .badges-group .guarantee-badge {
    grid-column: unset !important;
    grid-row: unset !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: 260px !important; /* un poco menos ancho */
    padding: 0.7em 1em !important; /* menos padding */
  }
  .total-pricing {
    grid-column: 2;
    grid-row: 5;
    text-align: left !important;
  }
  .buy-button {
    grid-column: 1 / -1;
    grid-row: 6;
  }
  .payment-icons {
    display: none !important;
  }

  .price-symbol {
    font-size: 1.55em;
  }
  .price-amount {
    font-size: 3em;
    letter-spacing: -0.06em;
  }
  .price-per {
    font-size: 0.7em;
  }

  .buy-button {
    font-size: 1.3em; /* letra más grande */
    padding: 0.8em 1.2em !important; /* más altura */
  }

  /* Separar icono del carrito en mobile mediano */
  .buy-button .shopping-cart-icon::before {
    margin-right: 0.4em !important;
  }

  .totals {
    font-size: 1.1em;
  }

  .shipping {
    font-size: 1em;
  }

  .payment-methods-container {
    display: none;
  }

  /* Espaciado optimizado para móviles medianos */
  .pt-20 {
    padding-top: 1.5rem !important;
  }

  .pb-16 {
    padding-bottom: 1.5rem !important;
  }

  .py-12 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  /* Espacio lateral para Referencias científicas (móviles medianos) */
  #references-container {
    margin-left: 1.25rem !important;
    margin-right: 1.25rem !important;
    width: 100% !important;
    max-width: calc(100% - 2.5rem) !important;
  }

  /* Orden en mobile mediano: 6→3→2 botellas */
  .md\:grid-cols-3.gap-8 {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
  }
  .best-value-package {
    order: 1;
  }
  .popular-package {
    order: 2;
  }
  .basic-package {
    order: 3;
  }
}

/* Tablets (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .pricing-card {
    margin-bottom: 0;
  }

  .package-content {
    padding: 1.2em 1em !important;
  }

  /* Desktop (>=1024px) - Reducir levemente el tamaño de las tarjetas */
  @media (min-width: 1024px) {
    .pricing-card {
      font-size: 0.95em;
    }
    .package-content {
      padding: 1.3em 1.1em !important;
    }
    .product-img {
      max-height: 180px;
    }
    .best-value-content .product-img {
      max-height: 220px;
    }
    .buy-button {
      font-size: 1.15em;
      padding: 0.6em 1.2em !important;
    }
  }

  .best-value-content {
    padding: 1.2em 1em !important;
  }

  .quantity-number {
    font-size: 2em;
  }

  .price-amount {
    font-size: 3.5em;
  }

  .price-symbol {
    font-size: 1.6em;
  }

  .price-per {
    font-size: 0.7em;
  }

  .buy-button {
    font-size: 1.35em; /* letra más grande */
    padding: 0.8em 1.2em !important; /* más altura */
  }

  /* Separar icono del carrito en tablets */
  .buy-button .shopping-cart-icon::before {
    margin-right: 0.4em !important;
  }
}

/* =============================================== */
/* COMENTARIOS SECTION STYLES - EXACT DESIGN MATCH */
/* =============================================== */

/* Profile image styles */
.w-10.h-10.rounded-full img,
.w-16.h-16.rounded-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 9999px;
}

/* Specific profile avatar styles */
img[alt*="Angela S."],
img[alt*="Robert T."],
img[alt*="Maria L."],
img[alt*="James P."],
img[alt*="Sophie H."] {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  display: block;
}

.text-blue-600 {
  color: #2563eb;
}

/* Helpful button styles */
.helpful-button {
  cursor: pointer;
  transition: all 0.3s ease;
}

.helpful-button.helpful-clicked {
  background-color: #f0fdf4 !important;
  border-color: #86efac !important;
  color: #16a34a !important;
}

.helpful-button.helpful-clicked:hover {
  background-color: #dcfce7 !important;
}

.w-5 {
  width: 1.25rem;
}

.h-5 {
  height: 1.25rem;
}

/* ============================================ */
/* RESPONSIVE COMMENTS SECTION */
/* ============================================ */

/* Desktop - Solo para PC (min-width: 1024px) */
@media (min-width: 1024px) {
  /* Espacio entre estrellas y texto del título */
  .py-16.bg-white .text-orange-400.md\:mr-2 {
    margin-right: 1rem !important;
  }
}

/* Tablets y dispositivos medianos (768px - 1023px) */
@media (max-width: 1023px) {
  /* Comentarios Section - Container */
  .py-16.bg-white .max-w-4xl {
    max-width: 100% !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  /* Comentarios Section - Títulos */
  .py-16.bg-white .text-4xl {
    font-size: 2rem !important;
    line-height: 2.5rem !important;
  }

  .py-16.bg-white .text-2xl {
    font-size: 1.5rem !important;
    line-height: 2rem !important;
  }

  .py-16.bg-white .text-xl {
    font-size: 1.25rem !important;
    line-height: 1.75rem !important;
  }

  /* Review Cards - Imagen del medio más pequeña */
  .py-16.bg-white .w-32.h-32 {
    width: 6rem !important;
    height: 6rem !important;
  }
}

/* Móviles (max-width: 767px) */
@media (max-width: 767px) {
  /* Comentarios Section - Padding vertical reducido */
  .py-16.bg-white {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  /* Container */
  .py-16.bg-white .container {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }

  /* Títulos más pequeños */
  .py-16.bg-white .text-4xl {
    font-size: 1.5rem !important;
    line-height: 2rem !important;
    margin-bottom: 0.75rem !important;
  }

  .py-16.bg-white .text-2xl {
    font-size: 1.25rem !important;
    line-height: 1.75rem !important;
  }

  .py-16.bg-white .text-xl {
    font-size: 1.125rem !important;
    line-height: 1.5rem !important;
    margin-bottom: 1rem !important;
    text-align: center !important;
  }

  /* Review Cards - Padding reducido */
  .py-16.bg-white .bg-gray-100.rounded-lg {
    padding: 0.75rem !important;
  }

  /* Avatar de perfil más pequeño */
  .py-16.bg-white .w-8.h-8.rounded-full {
    width: 2rem !important;
    height: 2rem !important;
  }

  /* Nombre y ubicación */
  .py-16.bg-white .font-bold.text-gray-900 {
    font-size: 0.875rem !important;
  }

  /* Estrellas más pequeñas */
  .py-16.bg-white .text-orange-400 {
    font-size: 0.875rem !important;
  }

  /* Imagen del medio - tamaño mejorado para móvil */
  .py-16.bg-white .w-32.h-32 {
    width: 9rem !important;
    height: 9rem !important;
  }

  /* Texto de review más pequeño */
  .py-16.bg-white .text-sm {
    font-size: 0.8rem !important;
  }

  /* Botones más pequeños */
  .py-16.bg-white .helpful-button,
  .py-16.bg-white button {
    font-size: 0.75rem !important;
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
    padding-top: 0.375rem !important;
    padding-bottom: 0.375rem !important;
  }

  /* Espaciado entre botones */
  .py-16.bg-white .space-x-6 > * + * {
    margin-left: 1rem !important;
  }

  /* Iconos de botones */
  .py-16.bg-white .w-4.h-4 {
    width: 0.875rem !important;
    height: 0.875rem !important;
  }

  /* Margenes reducidos */
  .py-16.bg-white .mb-8 {
    margin-bottom: 1.5rem !important;
  }

  .py-16.bg-white .mb-6 {
    margin-bottom: 1rem !important;
  }

  .py-16.bg-white .mb-3 {
    margin-bottom: 0.5rem !important;
  }

  .py-16.bg-white .mb-2 {
    margin-bottom: 0.375rem !important;
  }

  /* Espaciado entre review cards */
  .py-16.bg-white .space-y-4 > * + * {
    margin-top: 0.75rem !important;
  }

  /* En móvil, colocar "Verified Purchase" debajo del texto de compra */
  .py-16.bg-white .mb-2.text-sm.text-gray-700 .flex.items-center {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  .py-16.bg-white
    .mb-2.text-sm.text-gray-700
    .flex.items-center
    .mx-2.text-gray-400 {
    display: none !important; /* ocultar el separador | */
  }
  .py-16.bg-white
    .mb-2.text-sm.text-gray-700
    .flex.items-center
    .text-orange-500.font-semibold {
    display: block !important;
    margin-top: 0.25rem !important; /* espacio entre líneas */
  }
}

/* Móviles muy pequeños (max-width: 480px) */
@media (max-width: 480px) {
  /* Títulos aún más pequeños */
  .py-16.bg-white .text-4xl {
    font-size: 1.25rem !important;
    line-height: 1.75rem !important;
  }

  .py-16.bg-white .text-2xl {
    font-size: 1.125rem !important;
    line-height: 1.5rem !important;
  }

  .py-16.bg-white .text-xl {
    font-size: 1rem !important;
    line-height: 1.375rem !important;
    text-align: center !important;
  }

  /* Review Cards - Padding mínimo */
  .py-16.bg-white .bg-gray-100.rounded-lg {
    padding: 0.5rem !important;
  }

  /* Imagen del medio - tamaño apropiado para móviles pequeños */
  .py-16.bg-white .w-32.h-32 {
    width: 9rem !important;
    height: 9rem !important;
  }

  /* Avatar perfil más pequeño */
  .py-16.bg-white .w-8.h-8.rounded-full {
    width: 1.75rem !important;
    height: 1.75rem !important;
    margin-right: 0.5rem !important;
  }

  /* Texto más compacto */
  .py-16.bg-white .text-sm {
    font-size: 0.75rem !important;
    line-height: 1.25rem !important;
  }

  /* Botones compactos */
  .py-16.bg-white .helpful-button,
  .py-16.bg-white button {
    font-size: 0.7rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
}

.text-orange-400 {
  color: #fb923c;
}

.text-orange-500 {
  color: #f97316;
}

.bg-gray-100 {
  background-color: #f3f4f6;
}

.shadow-md {
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.w-12 {
  width: 3rem;
}

.h-12 {
  height: 3rem;
}

.w-24 {
  width: 6rem;
}

.h-24 {
  height: 6rem;
}

.w-6 {
  width: 1.5rem;
}

.h-6 {
  height: 1.5rem;
}

.w-4 {
  width: 1rem;
}

.h-4 {
  height: 1rem;
}

.w-8 {
  width: 3rem;
}

.h-8 {
  height: 3rem;
}

.w-20 {
  width: 5rem;
}

.h-20 {
  height: 5rem;
}

.w-24 {
  width: 6rem;
}

.h-24 {
  height: 6rem;
}

.w-32 {
  width: 10rem;
}

.h-32 {
  height: 10rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

.mr-4 {
  margin-right: 1rem;
}

.mx-2 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.rounded {
  border-radius: 0.25rem;
}

.border {
  border-width: 1px;
}

.border-gray-300 {
  border-color: #d1d5db;
}

.bg-gray-200 {
  background-color: #e5e7eb;
}

.text-gray-700 {
  color: #374151;
}

.text-gray-600 {
  color: #4b5563;
}

.text-gray-400 {
  color: #9ca3af;
}

.text-gray-900 {
  color: #111827;
}

.space-x-4 > :not([hidden]) ~ :not([hidden]) {
  margin-left: 1rem;
}

.space-x-6 > :not([hidden]) ~ :not([hidden]) {
  margin-left: 1.5rem;
}

.space-y-4 > :not([hidden]) ~ :not([hidden]) {
  margin-top: 1rem;
}

.bg-transparent {
  background-color: transparent;
}

.border-none {
  border-style: none;
}

.p-0 {
  padding: 0;
}

.hover\:bg-gray-300:hover {
  background-color: #d1d5db;
}

.hover\:text-gray-800:hover {
  color: #1f2937;
}

.hover\:text-gray-600:hover {
  color: #4b5563;
}

.transition-colors {
  transition-property: color, background-color, border-color,
    text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

/* Responsive para comentarios */
@media (max-width: 768px) {
  .py-16 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .text-4xl {
    font-size: 1.875rem !important;
    line-height: 2.25rem !important;
  }

  .text-2xl {
    font-size: 1.25rem !important;
    line-height: 1.75rem !important;
  }

  .text-xl {
    font-size: 1.125rem !important;
    line-height: 1.75rem !important;
  }

  .mb-8 {
    margin-bottom: 1.5rem !important;
  }

  .mb-6 {
    margin-bottom: 1rem !important;
  }

  .p-6 {
    padding: 1rem !important;
  }

  .text-gray-700 {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .text-sm {
    font-size: 0.85rem;
  }

  .w-24 {
    width: 4rem !important;
  }

  .h-24 {
    height: 4rem !important;
  }

  .text-2xl {
    font-size: 1.25rem !important;
  }
}

/* ======================================================================= */
/* ========== INICIO ESTILOS REFERENCIAS CIENTÍFICAS - CSS ============= */
/* ======================================================================= */

/* Scientific References Section */
.scientific-references {
  background: #fff;
  padding: 48px 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.scientific-references-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 32px;
  font-family: "Inter", sans-serif;
}

.university-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.university-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.university-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.university-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: #1a1a1a;
  text-align: center;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.5px;
}

.university-name-blue {
  color: #0066cc;
}

.references-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 32px;
  margin-bottom: 32px;
}

.reference-item {
  margin-bottom: 20px;
}

.reference-title {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #1a1a1a;
  margin-bottom: 4px;
  font-family: "Inter", sans-serif;
  font-style: italic;
}

.reference-source {
  font-size: 0.85rem;
  line-height: 1.5;
  color: #4a4a4a;
  font-family: "Inter", sans-serif;
}

.show-less-container {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.show-less-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  color: #1a1a1a;
  font-size: 0.9rem;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  cursor: pointer;
  padding: 8px 16px;
  transition: opacity 0.2s;
}

.show-less-btn:hover {
  opacity: 0.7;
}

.show-less-btn svg {
  color: #1a1a1a;
}

@media (max-width: 1024px) {
  .references-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .scientific-references {
    padding: 32px 20px;
  }

  .scientific-references-title {
    font-size: 1.5rem;
    margin-bottom: 24px;
  }

  .university-logos {
    gap: 24px;
    margin-bottom: 32px;
  }

  .university-logo {
    width: 60px;
    height: 60px;
  }

  .university-name {
    font-size: 0.7rem;
  }

  .references-grid {
    gap: 16px;
  }

  .reference-title {
    font-size: 0.85rem;
  }

  .reference-source {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .scientific-references {
    padding: 24px 16px;
  }

  .scientific-references-title {
    font-size: 1.25rem;
  }

  .university-logos {
    gap: 16px;
  }

  .university-logo {
    width: 50px;
    height: 50px;
  }
}

/* Estilos adicionales para referencias científicas con Tailwind */
.w-16 {
  width: 4rem;
}

.h-16 {
  height: 4rem;
}

.gap-x-8 {
  column-gap: 2rem;
}

@media (min-width: 768px) {
  .md\:w-16 {
    width: 4rem;
  }

  .md\:h-16 {
    height: 4rem;
  }
}

.hover\:text-gray-700:hover {
  color: #374151;
}

.hover\:underline:hover {
  text-decoration: underline;
}

.text-primary {
  color: var(--primary-color, #1e1d3f);
}

.object-contain {
  object-fit: contain;
}

.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.duration-700 {
  transition-duration: 700ms;
}

.ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.overflow-hidden {
  overflow: hidden;
}

/* =====================================================================
   OFERTA — PAQUETES
   Estructura de cada seccion .offer-block:

     .offer-live            barra de venta en vivo (fecha, contador, stock)
     .special-offer-promo   banner de envio gratis
     .pricing-grid          las tres tarjetas (.pricing-card)

   Las tarjetas reutilizan el sistema que ya vive mas arriba en esta hoja
   (.pricing-card, .package-header, .price-display, .buy-button, etc.).
   Aqui solo va: la rejilla, la barra en vivo y la capa de color de la
   marca Neuro Mind Pro. Todo queda dentro de .offer-block para no tocar
   ningun otro modulo de la pagina.
   ===================================================================== */

.offer-block {
  --nm-navy: #101c33;
  --nm-navy-deep: #0a1428;
  --nm-blue: #1f57b5;
  --nm-blue-mid: #2f6fd0;
  --nm-blue-pale: #eaf1fc;
  --nm-gold: #ffd24a;
  --nm-gold-deep: #e0ac00;
  --nm-green: #12a150;
  --nm-red: #d92b2b;

  width: 100%;
  padding: 2.5rem 1.25rem;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
}

/* ------------------------------------------------------------------
   1. FRANJA DE VENTA EN VIVO
   Sin caja ni borde: el encabezado va suelto sobre el blanco de la
   pagina y los datos en vivo (reserva + stock) se agrupan en una franja
   tenue de ancho completo. Un filete rojo arriba es lo unico que "grita";
   el resto es tipografia.
   ------------------------------------------------------------------ */
.offer-live {
  max-width: 1180px;
  margin: 0 auto 2rem;
  text-align: center;
}

.offer-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.7rem;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nm-red);
}

/* Filetes cortos a los lados del rotulo: marcan seccion sin dibujar caja */
.offer-eyebrow::before,
.offer-eyebrow::after {
  content: "";
  width: 26px;
  height: 2px;
  background: currentColor;
  opacity: 0.45;
}

.offer-title {
  margin: 0 0 0.45rem;
  font-size: clamp(1.5rem, 1.3vw + 1.15rem, 2.125rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #101828;
  text-wrap: balance;
}

.offer-title em {
  font-style: normal;
  color: var(--nm-blue);
}

.offer-deadline {
  margin: 0 0 1.35rem;
  font-size: 1.125rem;
  line-height: 1.6;
  color: #475467;
}

.offer-deadline .current-date {
  font-weight: 700;
  color: #101828;
  white-space: nowrap;
}

/* --- La franja propiamente dicha --- */
.offer-live-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) 1px minmax(0, 1.2fr);
  align-items: center;
  gap: 0 1.75rem;
  padding: 1.15rem 1.75rem;
  border-top: 3px solid var(--nm-red);
  border-radius: 4px 4px 10px 10px;
  background: linear-gradient(180deg, #fbfcfe 0%, #f4f7fb 100%);
  text-align: left;
}

/* Separador fino entre los dos datos */
.offer-live-grid::after {
  content: "";
  grid-column: 2;
  grid-row: 1;
  width: 1px;
  height: 62%;
  min-height: 48px;
  background: #dfe5ee;
  align-self: center;
}

/* Los dos paneles pierden su caja: solo tipografia */
.offer-hold,
.offer-stock {
  padding: 0;
  background: none;
  border: 0;
  border-radius: 0;
}

.offer-hold {
  grid-column: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.offer-hold-label {
  display: block;
  margin-bottom: 0.15rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #667085;
}

/* Especificidad alta: vence a las reglas !important del template */
.offer-live .timer.offer-timer {
  margin: 0 !important;
  color: #101828 !important;
  font-family: "Inter", system-ui, -apple-system, sans-serif !important;
  font-size: clamp(2.25rem, 1.8vw + 1.7rem, 3rem) !important;
  font-weight: 800 !important;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
  line-height: 1.05 !important;
  text-shadow: none !important;
}

.offer-live .timer-expired-message.offer-expired {
  margin: 0 !important;
  color: var(--nm-red) !important;
  font-size: 1.0625rem !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  line-height: 1.5 !important;
  text-transform: none;
  text-shadow: none !important;
  animation: none !important;
}

.offer-stock {
  grid-column: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.offer-stock-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
  font-size: 1rem;
}

.offer-live-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.9375rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--nm-green);
  white-space: nowrap;
}

.offer-live-dot {
  position: relative;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--nm-green);
  flex-shrink: 0;
}

.offer-live-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--nm-green);
  opacity: 0.5;
  animation: offer-live-pulse 2s ease-out infinite;
}

@keyframes offer-live-pulse {
  0%   { transform: scale(0.6); opacity: 0.6; }
  100% { transform: scale(1.4); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .offer-live-dot::after { animation: none; }
}

.offer-stock-left {
  color: #475467;
  white-space: nowrap;
}

.offer-stock-left .countdown {
  font-weight: 800;
  color: var(--nm-red);
  font-variant-numeric: tabular-nums;
}

.offer-stock-track {
  height: 8px;
  border-radius: 999px;
  background: #e3e8f0;
  overflow: hidden;
}

.offer-stock-fill {
  display: block;
  height: 100%;
  width: 18%;
  border-radius: 999px;
  background: linear-gradient(90deg, #f97316, var(--nm-red));
  transition: width 0.6s ease;
}

.offer-stock-note {
  margin: 0.55rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #667085;
}

/* ------------------------------------------------------------------
   2. REJILLA DE LAS TRES TARJETAS
   Escritorio: 2 | 6 | 3, con la del medio destacada.
   Movil: se apilan y la de 6 botellas sube al primer puesto.
   ------------------------------------------------------------------ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 1.25rem;
  max-width: 1180px;
  margin: 0 auto;
}

.offer-block .basic-package      { order: 1; }
.offer-block .best-value-package { order: 2; }
.offer-block .popular-package    { order: 3; }

/* ------------------------------------------------------------------
   3. CAPA DE COLOR — NEURO MIND PRO
   Sustituye el azul claro del template por el azul/navy de la marca.
   ------------------------------------------------------------------ */
.offer-block .pricing-card {
  border-color: var(--nm-blue-mid);
}

.offer-block .package-header {
  background: linear-gradient(180deg, var(--nm-blue-mid), var(--nm-blue));
  letter-spacing: 0.04em;
}

/* Tarjeta destacada: navy de la etiqueta del bote */
.offer-block .best-value-package {
  background: linear-gradient(180deg, var(--nm-blue-mid), var(--nm-blue));
  border-color: var(--nm-blue);
  box-shadow: 0 18px 40px -18px rgba(16, 28, 51, 0.55);
}

.offer-block .best-value-package .package-content {
  background: radial-gradient(
      ellipse at 50% 32%,
      rgba(47, 111, 208, 0.35) 0%,
      transparent 70%
    ),
    linear-gradient(180deg, #16294d 0%, var(--nm-navy) 55%, #0b1428 100%);
}

.offer-block .best-value-badge {
  background: #fff;
  color: var(--nm-blue);
  letter-spacing: 0.08em;
}

/* Etiqueta "Free Shipping" de la tarjeta de 3 botes */
.offer-block .popular-package .free-shipping {
  color: var(--nm-green);
}

.offer-block .best-value-content .free-shipping {
  color: var(--nm-gold);
}

/* Precio tachado */
.offer-block .pricing__was {
  color: var(--nm-red);
  text-decoration-color: var(--nm-red);
  text-decoration-thickness: 2px;
  font-weight: 500;
  margin-right: 0.35em;
}

.offer-block .best-value-content .pricing__was {
  color: #ff9d9d;
  text-decoration-color: #ff9d9d;
}

/* Boton de la tarjeta destacada: amarillo */
.offer-block .best-value-buy {
  color: #101828 !important;
  background-image: linear-gradient(to top, var(--nm-gold) 50%, #ffe07a 51%) !important;
  border: 2px solid var(--nm-gold-deep) !important;
  text-shadow: none;
}

.offer-block .best-value-buy:hover {
  background-image: linear-gradient(to bottom, var(--nm-gold) 50%, #ffe07a 51%) !important;
}

.offer-block .best-value-buy .btn-text small {
  color: #5b4a05;
}

/* Las imagenes de los packs vienen con fondo transparente */
.offer-block .product-img {
  max-height: 190px;
}

.offer-block .best-value-content .product-img {
  max-height: 230px;
}

/* ------------------------------------------------------------------
   4. RESPONSIVE
   ------------------------------------------------------------------ */

/* Tablet apaisada: 3 columnas mas apretadas */
@media (min-width: 900px) and (max-width: 1023px) {
  .pricing-grid {
    gap: 0.875rem;
  }
  .offer-block .product-img {
    max-height: 150px;
  }
  .offer-block .best-value-content .product-img {
    max-height: 180px;
  }
  .offer-block .package-content {
    padding: 1.2em 0.75em;
  }
  .offer-block .quantity-number {
    font-size: 1.8em;
  }
  .offer-block .price-amount {
    font-size: 3.2em;
  }
}

/* Movil y tablet en vertical: una columna, la de 6 botellas primero.
   El corte esta en 899px y no en 767px porque a 768px las tres columnas
   dejan tarjetas de ~190px: los botes se ven diminutos y el boton aprieta.
   Apiladas se leen mucho mejor en iPad vertical. */
@media (max-width: 899.98px) {
  .offer-block {
    padding: 2rem 1rem;
  }

  .pricing-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
    max-width: 480px;
  }

  .offer-block .best-value-package { order: 1; }
  .offer-block .popular-package    { order: 2; }
  .offer-block .basic-package      { order: 3; }

  .offer-block .product-img,
  .offer-block .best-value-content .product-img {
    max-height: 200px;
  }
  .offer-block .package-content {
    padding: 1.5em 1.2em;
  }
  .offer-block .quantity-number {
    font-size: 2.2em;
  }
  .offer-block .price-amount {
    font-size: 4em;
  }

  /* La franja se apila: una sola columna y el separador vertical pasa a
     ser una linea horizontal entre los dos datos. */
  .offer-live {
    padding: 0;
  }
  .offer-live-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    padding: 1.15rem 1.15rem 1.25rem;
    text-align: center;
  }
  .offer-live-grid::after {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    height: 1px;
    min-height: 0;
    margin: 1rem 0;
  }
  .offer-hold {
    grid-column: 1;
    grid-row: 1;
  }
  .offer-stock {
    grid-column: 1;
    grid-row: 3;
  }
  .offer-stock-top {
    justify-content: center;
    gap: 0.5rem 1rem;
    flex-wrap: wrap;
  }
  .offer-stock-note {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .offer-block {
    padding: 1.75rem 0.85rem;
  }
  .offer-live {
    padding: 1.35rem 1rem 1.15rem;
  }
  .offer-stock-top {
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
  }
  .offer-block .package-content {
    padding: 1.25em 0.9em;
  }
  .offer-block .quantity-number {
    font-size: 1.95em;
  }
  .offer-block .price-amount {
    font-size: 3.5em;
  }
  .offer-block .buy-button {
    font-size: 1.1em;
  }
}

/* ---------------------------------------------------------------------
   Anulacion de la rejilla compacta de movil del template.

   Mas arriba en esta hoja, el template convierte .package-content en una
   rejilla de dos columnas por debajo de 768px (cantidad a la izquierda,
   precio a la derecha). A 320px eso parte "6 BOTTLES" en dos lineas y
   aprieta el bloque. Como aqui las tarjetas ya van apiladas y disponen de
   hasta 480px de ancho, se vuelve al flujo vertical: mismo aspecto que en
   escritorio, solo que mas estrecho.
   --------------------------------------------------------------------- */
@media (max-width: 899.98px) {
  .offer-block .package-content,
  .offer-block .best-value-content,
  .offer-block .basic-package .package-content:not(.best-value-content),
  .offer-block .popular-package .package-content:not(.best-value-content) {
    display: block !important;
    padding: 1.5em 1.2em !important;
  }

  .offer-block .package-quantity,
  .offer-block .product-image,
  .offer-block .price-display,
  .offer-block .badges-group,
  .offer-block .buy-button,
  .offer-block .payment-icons,
  .offer-block .total-pricing {
    grid-column: auto !important;
    grid-row: auto !important;
    justify-self: auto !important;
  }

  .offer-block .package-quantity {
    padding: 1em 0.5em !important;
    text-align: center !important;
  }

  .offer-block .quantity-number {
    font-size: 2.1em !important;
  }

  .offer-block .supply-text {
    font-size: 1em !important;
  }

  .offer-block .price-display {
    margin: 0 auto !important;
    width: fit-content !important;
  }

  .offer-block .price-symbol {
    font-size: 1.8em !important;
  }

  .offer-block .price-amount {
    font-size: 3.8em !important;
    letter-spacing: normal !important;
  }

  .offer-block .product-img,
  .offer-block .best-value-content .product-img {
    max-height: 200px !important;
    margin: 0 auto;
  }

  /* El template esconde los iconos de pago por debajo de 768px. Aqui se
     recuperan: son una senal de confianza junto al boton y en una sola
     columna hay sitio de sobra. */
  .offer-block .payment-icons {
    display: flex !important;
  }

  .offer-block .payment-methods-container {
    display: block !important;
    max-width: 200px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .offer-block .quantity-number {
    font-size: 1.95em !important;
  }
  .offer-block .price-amount {
    font-size: 3.4em !important;
  }
  .offer-block .package-content,
  .offer-block .best-value-content,
  .offer-block .basic-package .package-content:not(.best-value-content),
  .offer-block .popular-package .package-content:not(.best-value-content) {
    padding: 1.25em 0.9em !important;
  }
}





/* =======================================================================
   GARANTIA — sin marco, sello al lado, alineada con la tarjeta de oferta
   ===================================================================== */
.gtee {
  /* Antes 620px: en un portatil quedaba una columna estrecha y perdida en
     medio de la pantalla. Ahora acompana el ancho de las tarjetas. */
  max-width: 1040px;
  margin: 0 auto;
  padding: 3rem 1.25rem 3.25rem;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
}

.gtee-main {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3rem);
}

.gtee-seal {
  flex: 0 0 auto;
  width: clamp(122px, 13vw, 180px);
  height: auto;
}

.gtee-body {
  min-width: 0;
}

.gtee-eyebrow {
  margin: 0 0 0.45rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b42318;
}

.gtee-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 1.5vw + 1.05rem, 2.375rem);   /* hasta 38px */
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #101828;
  text-wrap: balance;
}

.gtee-copy {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: #475467;
  max-width: 62ch;
}

/* Bloque de sellos de calidad */
.gtee-certs-block {
  margin: 1.75rem 0 0;
  padding: 1.5rem 0 0;
  border-top: 1px solid #eaecf0;
  text-align: center;
}

.gtee-certs-label {
  margin: 0 0 1.15rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #98a2b3;
}

.gtee-certs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.875rem clamp(0.75rem, 2.6vw, 1.5rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.gtee-certs li {
  flex: 0 0 auto;
  line-height: 0;
}

.gtee-certs img {
  display: block;
  width: clamp(58px, 11vw, 92px);
  height: auto;
  aspect-ratio: 1 / 1;
}

@media (max-width: 600px) {
  .gtee {
    padding: 2rem 1rem 2.25rem;
  }
  .gtee-main {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
  }
  .gtee-seal {
    width: 96px;
  }
  .gtee-copy {
    font-size: 0.9rem;
  }
  .gtee-certs-block {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
  }
  .gtee-certs-label {
    margin-bottom: 0.875rem;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
  }
  .gtee-certs {
    gap: 0.75rem 0.625rem;
  }
}

/* =======================================================================
   CABECERA DE LA SECCION DE RESENAS
   Sustituye el titulo azul (text-4xl text-blue-600) por la misma tipografia
   y paleta que el resto de la pagina, alineada con la tarjeta de oferta.
   ===================================================================== */
.reviews-section .reviews-col {
  max-width: 620px !important;
  margin-left: auto;
  margin-right: auto;
}

.reviews-head {
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #eaecf0;
  text-align: center;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
}

.reviews-eyebrow {
  margin: 0 0 0.6rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b42318;
}

.reviews-title {
  margin: 0 0 0.4rem;
  font-size: clamp(1.375rem, 1.2vw + 1.05rem, 1.875rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #101828;
  text-wrap: balance;
}

.reviews-sub {
  margin: 0;
  font-size: clamp(0.9375rem, 0.3vw + 0.87rem, 1.0625rem);
  font-weight: 500;
  line-height: 1.5;
  color: #475467;
}

.reviews-subhead {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #101828;
  text-align: left;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
}

@media (max-width: 600px) {
  .reviews-head {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
  }
  .reviews-subhead {
    font-size: 0.9rem;
  }
}

/* =======================================================================
   TARJETAS DE RESENA
   Solo estilo: se conserva el markup y la logica del boton "Helpful"
   (public/main.js sigue usando .helpful-button y .helpful-clicked).
   ===================================================================== */
.reviews-col .review-card {
  padding: 1.125rem 1.25rem 1rem !important;
  background: #fff !important;
  border: 1px solid #eaecf0;
  border-radius: 12px !important;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04) !important;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
}

.reviews-col .review-head {
  gap: 0;
  margin-bottom: 0.625rem !important;
}

.reviews-col .review-avatar {
  width: 34px !important;
  height: 34px !important;
  margin-right: 0.625rem !important;
  border: 1px solid #eaecf0;
}

.reviews-col .review-author {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: #101828;
}

.reviews-col .review-stars {
  color: #f79009;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
}

.reviews-col .review-title {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: #101828;
}

/* Linea de fecha / compra / verificado */
.reviews-col .review-meta {
  margin-bottom: 0.625rem !important;
  font-size: 0.75rem !important;
  line-height: 1.5;
  color: #667085 !important;
}

.reviews-col .review-meta > div {
  flex-wrap: wrap;
  gap: 0 0.25rem;
}

/* Sello de compra verificada: discreto, sin naranja chillon */
.review-verified {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: #067647;
  white-space: nowrap;
}

.review-verified-icon {
  flex: 0 0 auto;
  width: 13px;
  height: 13px;
}

/* Texto de la resena */
.reviews-col .review-card .text-gray-900.leading-relaxed {
  font-size: 0.875rem !important;
  line-height: 1.6 !important;
  color: #344054 !important;
}

.reviews-col .review-helpful-count {
  font-size: 0.75rem !important;
  color: #98a2b3 !important;
}

/* Acciones */
.reviews-col .review-card .helpful-button {
  padding: 0.3rem 0.75rem !important;
  background: #fff !important;
  border: 1px solid #d0d5dd !important;
  border-radius: 999px !important;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  color: #344054 !important;
}

.reviews-col .review-card .helpful-button:hover {
  background: #f9fafb !important;
  border-color: #98a2b3 !important;
}

.reviews-col .review-card .space-x-6 > button:last-child,
.reviews-col .review-card .text-gray-600 {
  font-size: 0.75rem !important;
  color: #667085 !important;
}

@media (max-width: 600px) {
  .reviews-col .review-card {
    padding: 1rem 1rem 0.875rem !important;
  }
  .reviews-col .review-title {
    font-size: 0.9rem;
  }
}

/* =======================================================================
   SECCION DE COMENTARIOS (ESTILO FACEBOOK)
   Va encima de las referencias cientificas. Usa la pila de fuentes del
   sistema (no Inter) para que se lea como un embed real de Facebook.
   ===================================================================== */
.fb-comments {
  padding: 2rem 1.25rem 2.5rem;
}

.fbc-panel {
  max-width: 620px;
  margin: 0 auto;
  padding: 1.25rem 1.25rem 1.5rem;
  background: #fff;
  border: 1px solid #e4e6eb;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial,
    sans-serif;
}

.fbc-count {
  margin: 0 0 1.125rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #65676b;
  text-align: center;
}

/* --- Comentario --- */
.fbc-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin-bottom: 1.125rem;
}

.fbc-item:last-of-type {
  margin-bottom: 1.25rem;
}

.fbc-avatar {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  margin-top: 2px;
  border-radius: 50%;
  object-fit: cover;
  background: #e4e6eb;
}

.fbc-body {
  flex: 1 1 auto;
  min-width: 0;
}

/* Burbuja gris del comentario */
.fbc-bubble {
  padding: 0.5rem 0.75rem 0.625rem;
  background: #f0f2f5;
  border-radius: 18px;
}

.fbc-name {
  display: inline-block;
  margin-bottom: 0.15rem;
  color: #385898;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
}

.fbc-name:hover {
  text-decoration: underline;
}

.fbc-text {
  margin: 0;
  color: #050505;
  font-size: 0.875rem;
  line-height: 1.4;
  overflow-wrap: break-word;
}

/* Fila de acciones: Like · Reply · tiempo + pastilla de reacciones */
.fbc-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.3rem;
  padding: 0 0.75rem;
}

.fbc-links {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  line-height: 1.3;
  color: #65676b;
}

.fbc-links a {
  color: #65676b;
  font-weight: 700;
  text-decoration: none;
}

.fbc-links a:hover {
  text-decoration: underline;
}

.fbc-dot {
  color: #8a8d91;
}

.fbc-time {
  color: #65676b;
}

/* Pastilla blanca con el icono de like + corazon */
.fbc-reactions {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  flex: 0 0 auto;
  padding: 0.1rem 0.4rem 0.1rem 0.25rem;
  background: #fff;
  border: 1px solid #e4e6eb;
  border-radius: 999px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.fbc-reactions img {
  display: block;
  width: 34px;
  height: auto;
}

.fbc-reaction-count {
  font-size: 0.75rem;
  color: #65676b;
}

.fbc-closed {
  margin: 0;
  padding-top: 0.25rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #65676b;
  text-align: center;
}

@media (max-width: 600px) {
  .fb-comments {
    padding: 1.5rem 1rem 2rem;
  }
  .fbc-panel {
    padding: 1rem 0.875rem 1.25rem;
  }
  .fbc-avatar {
    width: 36px;
    height: 36px;
  }
  .fbc-item {
    gap: 0.5rem;
  }
  .fbc-actions {
    padding: 0 0.5rem;
    gap: 0.5rem;
  }
  .fbc-text {
    font-size: 0.84375rem;
  }
}

/* =======================================================================
   AVISO DE DISPONIBILIDAD DEL VIDEO
   Sustituye a "02:52 · Source: NEWS". La fecha la escribe main.js.
   ===================================================================== */
.video-expiry {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  margin: 0.875rem 0 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  color: #475467;
}

.video-expiry-icon {
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  transform: translateY(2px);
  color: #b42318;
  opacity: 0.75;
}

/* La fecha es lo unico en rojo: destaca sin endurecer la frase */
.video-expiry .current-date {
  font-weight: 600;
  color: #b42318;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .video-expiry {
    font-size: 0.8125rem;
  }
}

/* =======================================================================
   100% QUALITY ASSURANCE
   Bloque de confianza en rojo profundo, justo antes del ultimo CTA.
   Contenido a 620px como el resto de la pagina, no a sangre completa.
   ===================================================================== */
.quality-assurance {
  padding: 2.5rem 1.25rem 3rem;
}

.qa-card {
  /* Antes 620px: en un PC quedaba una tarjeta estrecha con mucho aire
     muerto a los lados. Ahora acompana el ancho de la garantia. */
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(2rem, 3.2vw, 3.25rem) clamp(1.75rem, 4vw, 3.5rem);
  background: linear-gradient(180deg, #8f2c26 0%, #7e2621 100%);
  border-radius: 16px;
  box-shadow: 0 12px 32px -14px rgba(127, 38, 33, 0.55);
  text-align: center;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
}

/* Estrellas */
.qa-stars {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.qa-stars svg {
  width: clamp(22px, 2.2vw, 30px);
  height: clamp(22px, 2.2vw, 30px);
  fill: #f7c948;
}

.qa-title {
  margin: 0 0 1.15rem;
  font-size: clamp(1.5rem, 1.5vw + 1.05rem, 2.375rem);   /* hasta 38px */
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
  text-wrap: balance;
}

.qa-copy {
  /* Medida en ch: la linea no pasa de ~66 caracteres por ancha que sea
     la tarjeta, que es lo comodo de leer. */
  max-width: 66ch;
  margin: 0 auto;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: #f3d9d6;
  text-align: left;
}

.qa-copy strong {
  font-weight: 700;
  color: #fff;
}

/* Filas de sellos */
.qa-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.qa-badges li {
  flex: 0 0 auto;
  line-height: 0;
}

.qa-badges--wide {
  gap: 0.75rem clamp(0.625rem, 1.6vw, 1.25rem);
  margin-top: 2rem;
}

.qa-badge-wide {
  display: block;
  height: clamp(38px, 5.2vw, 62px);
  width: auto;
  border-radius: 4px;
}

.qa-badges--round {
  gap: 0.75rem clamp(0.5rem, 2vw, 1.375rem);
  margin-top: 1.25rem;
}

.qa-badge-round {
  display: block;
  width: clamp(52px, 7.5vw, 86px);
  height: auto;
  aspect-ratio: 1 / 1;
}

@media (max-width: 600px) {
  .quality-assurance {
    padding: 1.5rem 1rem 2rem;
  }
  .qa-card {
    padding: 1.5rem 1.125rem 1.375rem;
    border-radius: 14px;
  }
  .qa-stars svg {
    width: 19px;
    height: 19px;
  }
  .qa-copy {
    font-size: 0.875rem;
  }
  .qa-badges--wide {
    gap: 0.5rem;
    margin-top: 1.25rem;
  }
}

/* =======================================================================
   INTERCAMBIO DE SECCIONES AL REVELARSE LA OFERTA
   Antes del revelado se ven los comentarios de Facebook y las referencias
   cientificas. Cuando el boton de VTurb abre #esconder, el script anade
   .offer-revealed al <body> y esas dos secciones se retiran, para no
   alargar la pagina y dejar el foco en la oferta.
   ===================================================================== */
body.offer-revealed .pre-offer-only {
  display: none !important;
}


/* =====================================================================
   CAPA DE LEGIBILIDAD
   Objetivo: que la pagina se lea comoda a los 80 anos.

   Va al final de la hoja a proposito: es la ultima palabra del cascade.
   Muchas reglas del template llevan !important, asi que aqui tambien se
   usa donde hace falta pisarlas.

   Minimos que respeta:
     - texto corrido ............ 17px  (antes 15-16)
     - letra pequena / pies ..... 15px  (antes 11-13)
     - etiquetas en mayusculas .. 13px  (van espaciadas, se leen mayores)
     - interlineado del cuerpo .. 1.6 o mas
   ===================================================================== */

/* --- 1. Cabecera del articulo ------------------------------------- */
.article-meta {
  font-size: 0.9375rem;   /* 15px */
}
.article-author-info {
  font-size: 1rem;        /* 16px */
}
.author-name {
  font-size: 1rem;
}
.signin {
  font-size: 0.9375rem;
}

/* --- 2. Barra de venta en vivo ------------------------------------ */
.offer-eyebrow {
  font-size: 0.8125rem;   /* 13px, en mayusculas */
  letter-spacing: 0.12em;
}
.offer-deadline {
  font-size: 1.125rem;    /* 18px */
  line-height: 1.6;
}
.offer-hold-label {
  font-size: 0.8125rem;   /* 13px */
  letter-spacing: 0.08em;
}
.offer-stock-top {
  font-size: 1rem;        /* 16px */
}
.offer-live-tag {
  font-size: 0.9375rem;   /* 15px */
}
.offer-stock-left {
  font-size: 1rem;
}
.offer-stock-note {
  font-size: 0.9375rem;   /* 15px */
  line-height: 1.5;
}
.offer-stock-track {
  height: 8px;            /* barra algo mas gruesa, se ve mejor */
}
.offer-live .timer-expired-message.offer-expired {
  font-size: 1.0625rem !important;  /* 17px */
  line-height: 1.5 !important;
}

/* --- 3. Tarjetas de precio ---------------------------------------- */
.offer-block .package-header {
  font-size: 20px;
}
.offer-block .supply-text {
  font-size: 1.15em !important;
  line-height: 1.25 !important;
}
.offer-block .price-per {
  font-size: 0.92em;
}

/* Las pastillas de beneficios eran 0.7em (~11px): el punto mas ilegible
   de la tarjeta. Suben a ~15px y ganan aire vertical. */
.offer-block .savings-badge,
.offer-block .guarantee-badge,
.offer-block .discount-badge {
  font-size: 0.95em;
  padding: 0.72em 0.6em;
  border-radius: 0.6em;
}

.offer-block .buy-button {
  font-size: 1.4em;
  padding: 0.6em 1.2em;
}
.offer-block .buy-button .btn-text small {
  font-size: 0.55em;
}

.offer-block .total-pricing {
  font-size: 1.25em;
}
.offer-block .shipping {
  font-size: 1.05em;
}

/* --- 4. Garantia --------------------------------------------------- */
.gtee-eyebrow,
.gtee-certs-label {
  font-size: 0.8125rem;   /* 13px */
  letter-spacing: 0.1em;
}
.gtee-copy {
  font-size: 1.0625rem;   /* 17px */
  line-height: 1.65;
}

/* --- 5. Calidad / fabricacion -------------------------------------- */
.qa-copy {
  font-size: 1.0625rem;
  line-height: 1.6;
}

/* --- 6. Resenas ---------------------------------------------------- */
.reviews-eyebrow {
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
}
.reviews-sub {
  font-size: 1.1875rem;   /* 19px */
}
.reviews-subhead {
  font-size: 1.0625rem;   /* 17px */
}
.reviews-col .review-title,
.reviews-col .review-author {
  font-size: 1.0625rem !important;
  line-height: 1.4 !important;
}
/* Cuerpo de la resena: era 12px */
.reviews-col .review-card .text-gray-900.leading-relaxed {
  font-size: 1.0625rem !important;  /* 17px */
  line-height: 1.6 !important;
}
.reviews-col .review-meta,
.reviews-col .review-meta > div,
.reviews-col .review-card .text-gray-600 {
  font-size: 0.9375rem !important;  /* 15px */
  line-height: 1.5 !important;
}
.review-verified {
  font-size: 0.9375rem !important;
}
.reviews-col .review-card .helpful-button {
  font-size: 0.9375rem !important;
  padding: 0.45em 0.9em;
}
.reviews-col .review-helpful-count {
  font-size: 0.9375rem !important;
}

/* --- 7. Comentarios de Facebook ------------------------------------ */
.fbc-name {
  font-size: 1rem;
}
.fbc-text {
  font-size: 1.0625rem;
  line-height: 1.6;
}
.fbc-time,
.fbc-dot,
.fbc-reaction-count,
.fbc-count,
.fbc-closed,
.fbc-links {
  font-size: 0.9375rem;
}

/* --- 8. Referencias cientificas ------------------------------------ */
/* Iban a 12px (text-xs) y en dos columnas: lo peor para leer. */
#references-content {
  font-size: 0.9375rem;   /* 15px */
  line-height: 1.55;
}
#references-content .font-semibold,
#references-content .italic {
  font-size: inherit;
}

/* --- 9. Pie -------------------------------------------------------- */
.footer-link,
.footer-copyright p {
  font-size: 0.9375rem;
}

/* =====================================================================
   MOVIL — mismos minimos, sin encoger la letra pequena
   El template reducia varios de estos tamanos por debajo de 768px; aqui
   se mantienen para que el texto siga siendo legible en el telefono.
   ===================================================================== */
@media (max-width: 899.98px) {
  .article-meta {
    font-size: 0.875rem;
  }
  .article-author-info {
    font-size: 0.9375rem;
  }

  .offer-deadline {
    font-size: 1.0625rem;   /* 17px */
  }
  .offer-stock-note {
    font-size: 0.9375rem;
  }

  .offer-block .supply-text {
    font-size: 1.1em !important;
  }
  .offer-block .savings-badge,
  .offer-block .guarantee-badge,
  .offer-block .discount-badge {
    font-size: 0.92em;
  }
  .offer-block .buy-button {
    font-size: 1.3em;
  }
  .offer-block .total-pricing {
    font-size: 1.2em;
  }

  .gtee-copy,
  .qa-copy {
    font-size: 1.0625rem;
  }

  .reviews-col .review-card .text-gray-900.leading-relaxed,
  .fbc-text {
    font-size: 1.0625rem !important;
  }

  /* Una sola columna de referencias: en dos, a 15px, no hay quien lea */
  #references-content {
    column-count: 1 !important;
    font-size: 0.9375rem;
  }
}

@media (max-width: 480px) {
  .offer-block .buy-button {
    font-size: 1.2em;
  }
  .offer-block .savings-badge,
  .offer-block .guarantee-badge,
  .offer-block .discount-badge {
    font-size: 0.88em;
  }
}

/* --- 10. Ultimos focos de letra pequena ---------------------------
   Detectados midiendo la pagina renderizada: eran los seis puntos que
   seguian por debajo del minimo tras la primera pasada. --------------- */

/* Subtitulo del boton de compra ("Basic", "Best Offer!"). Iba en em
   sobre un boton en em, y se quedaba en 12px. Se fija en rem. */
.offer-block .buy-button .btn-text small {
  font-size: 0.9375rem !important;   /* 15px */
  line-height: 1.3;
}

/* Estrellas de las resenas */
.reviews-col .review-stars {
  font-size: 1.125rem !important;    /* 18px */
}

/* Enlaces de accion de la resena ("Share"). Es un <button> con utilidades
   tipo Tailwind; hace falta nombrar la etiqueta para ganar especificidad. */
/* El rival es «.reviews-col .review-card .space-x-6 > button:last-child»,
   con mas especificidad que un simple button.text-sm. Se repite tal cual
   para igualarlo y, al ir despues en la hoja, ganar. */
.reviews-col .review-card button.text-sm,
.reviews-col .review-card .space-x-6 > button,
.reviews-col .review-card .space-x-6 > button:last-child {
  font-size: 0.9375rem !important;
}

/* Aviso de caducidad bajo el video */
.video-expiry {
  font-size: 1rem;
  line-height: 1.55;
}
.video-expiry .current-date {
  font-size: inherit;
}

/* Boton "Show More" de las referencias */
#references-toggle,
#toggle-text {
  font-size: 1.0625rem;              /* 17px */
}
#references-toggle svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 899.98px) {
  .offer-block .buy-button .btn-text small {
    font-size: 0.875rem !important;  /* 14px */
  }
  .video-expiry {
    font-size: 0.9375rem;
  }
}


/* --- 11. Movil: focos que el template encogia a 10-12px -------------
   Medido en un iframe de 390px. Eran los peores puntos de toda la
   pagina para una vista cansada. --------------------------------------- */
@media (max-width: 899.98px) {
  /* Pastillas de beneficio: el <span> interior bajaba a 10px */
  .offer-block .badges-group span,
  .offer-block .savings-badge span,
  .offer-block .guarantee-badge span,
  .offer-block .discount-badge span {
    font-size: 0.9375rem !important;   /* 15px */
    line-height: 1.3 !important;
  }

  /* "PER / BOTTLE" junto al precio */
  .offer-block .price-per,
  .offer-block .price-per span {
    font-size: 0.875rem !important;    /* 14px */
    line-height: 1.15 !important;
  }

  /* Cabecera de cada resena */
  .reviews-col .review-card .review-author,
  .reviews-col .review-card .review-title,
  .reviews-col .review-card .font-bold.text-gray-900 {
    font-size: 1.0625rem !important;   /* 17px */
    line-height: 1.4 !important;
  }

  .reviews-col .review-card .review-stars,
  .reviews-col .review-card .flex.text-orange-400 {
    font-size: 1.125rem !important;    /* 18px */
  }

  /* Fecha de la resena y contador de "helpful" */
  .reviews-col .review-card p,
  .reviews-col .review-card .review-helpful-count,
  .reviews-col .review-card .text-sm.text-gray-700 {
    font-size: 0.9375rem !important;   /* 15px */
    line-height: 1.5 !important;
  }

  /* El cuerpo de la resena manda sobre la regla generica de arriba */
  .reviews-col .review-card p.text-gray-900.leading-relaxed {
    font-size: 1.0625rem !important;   /* 17px */
    line-height: 1.6 !important;
  }
}
