
    :root {
      --bg: #ffffff;
      --text: #0f172a;
      --muted: #475569;
      --accent: #111827;
      --card-bg: #ffffff;
      --border: #e2e8f0;
      --shadow-soft: 0 1px 3px rgba(0,0,0,0.02), 0 10px 15px -3px rgba(0,0,0,0.05);
  --professional-green: #16A34A;
    }

    * {
      box-sizing: border-box;
    }

    html, body, main, #main-viewport {
      height: auto !important;
      min-height: 0 !important;
      overflow: visible !important;
      overflow-x: hidden !important;
      max-width: 100vw !important;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    body {
      margin: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
      background: linear-gradient(180deg, #0F172A 0%, #020617 100%);
      color: #E2E8F0;
      font-size: 16px;
      line-height: 1.5;
      -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
      touch-action: manipulation;
    }
    
    /* Otimizações globais para mobile - botões e links */
    button, a, [role="button"] {
      touch-action: manipulation;
      -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    }

    input::placeholder,
    textarea::placeholder {
      color: #94A3B8;
    }

    h1, h2, h3, h4, h5, h6,
    .product-name,
    .new-price,
    .dashboard-title,
    .dashboard-kicker {
      color: #FFFFFF !important;
    }

    p,
    .product-subtext,
    .intel-caption,
    .intel-lead,
    .faq-answer,
    .meta-footer p,
    .footer-copy {
      color: #E2E8F0 !important;
    }

    .save-badge,
    .card-tag,
    .meta-item,
    .meta-stock,
    .intel-badge,
    .pill,
    .recommended-badge {
      color: #38BDF8 !important;
    }

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

    /* Layout helpers */
    .container {
      width: min(1100px, 92vw);
      margin: 0 auto;
      padding: 0 0 32px;
    }

    /* Animação sutil de entrada */
    .fade-in-up {
      animation: fadeInUp 0.7s ease both;
    }

    /* --------------------------- */
    /* BARRA DE FRETE (EMPILHADA, CTA NA BASE) */
    .top-bar {
      position: sticky;
      top: 0;
      z-index: 90;
      display: grid;
      grid-template-rows: auto auto;
      row-gap: 8px;
      padding: 10px 14px;
      background: #0F172A;
      color: #ffffff;
      border-bottom: 1px solid rgba(56,189,248,0.20);
      overflow: hidden; /* clip do glow do CTA */
      font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    }
    
    .shipping-row-top {
      display: flex;
  align-items: center;
  gap: 8px;
      min-width: 0;
    }
    
    .shipping-row-cta {
      display: grid;
    }
    
    .shipping-icon {
      font-size: 14px;
      opacity: 0.9;
      line-height: 1;
    }
    
    .shipping-text {
      font-size: 12px;
      line-height: 1.25;
      letter-spacing: 0.02em;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .user-city-target {
      font-weight: 800;
      color: #38BDF8;
      transition: color 0.3s ease, text-shadow 0.3s ease, opacity 0.3s ease;
      opacity: 0.9;
    }

    .user-city-target.city-detected {
      color: #f97316;
      text-shadow: 0 0 10px rgba(248, 250, 252, 0.4);
      animation: cityPulse 1.2s ease-out 1;
    }

    @keyframes cityPulse {
      0% { transform: scale(0.95); opacity: 0; }
      40% { transform: scale(1.05); opacity: 1; }
      100% { transform: scale(1); opacity: 1; }
    }

.shipping-cta {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 8px 14px;
  min-height: 36px;
  border: 0;
  border-radius: 999px;
  background: #FFFFFF;
  color: #0F172A;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 1.1;
  cursor: pointer;
}

.shipping-cta .cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.shipping-cta .cta-label {
  font-size: 12px;
  text-transform: uppercase;
}

.shipping-cta .cta-meta {
  font-size: 10px;
  font-weight: 700;
  color: var(--professional-green);
  text-transform: none;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
    
    .shipping-cta::after {
      content: "";
      position: absolute;
      left: 12px;
      right: 12px;
      bottom: -7px;
      height: 14px;
      background: radial-gradient(ellipse at center, rgba(56,189,248,0.22), rgba(56,189,248,0));
      filter: blur(8px);
      pointer-events: none;
      z-index: -1;
    }
    
@media (max-width: 480px) {
  .top-bar { padding: 10px 12px; }
  .shipping-text { font-size: 12px; }
  .shipping-cta { font-size: 12px; padding: 8px 12px; min-height: 34px; }
  .shipping-cta .cta-label { font-size: 11px; }
  .shipping-cta .cta-meta { font-size: 10px; }
}

    /* Faixa Pharma abaixo em z-index menor */
    header {
      position: sticky;
      top: calc(34px + env(safe-area-inset-top, 0px));
      z-index: 80;
}

.top-bar.is-condensed {
  box-shadow: 0 8px 22px rgba(0,0,0,0.2);
}
    /* FIM BARRA DE ANÚNCIO */
    /* --------------------------- */

    /* --------------------------- */
    /* HEADER */
header {
  position: sticky;
  top: calc(34px + env(safe-area-inset-top, 0px));
  z-index: 2500;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 16px;
  border-bottom: 1px solid rgba(56, 189, 248, 0.18);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

header.is-hidden {
  transform: translateY(-120%);
  opacity: 0;
  pointer-events: none;
}

    .header-inner {
      width: min(1100px, 92vw);
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    .logo-text {
      margin: 0;
      font-size: 1.3rem;
      font-weight: 900;
      letter-spacing: -0.04em;
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 45%, #38BDF8 55%, #06B6D4 100%);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
    }

    .official-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.9rem;
      font-weight: 700;
  color: #e0f2fe;
      letter-spacing: -0.01em;
      position: relative;
      cursor: pointer;
      padding: 6px 10px;
      border-radius: 12px;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid #38BDF8;
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.35);
    }
    .official-badge svg {
      width: 18px;
      height: 18px;
  color: #38BDF8;
    }
    /* FIM HEADER */
    /* --------------------------- */

    /* --------------------------- */
    /* HERO / BANNER */
    /* Hero */
    .hero {
      width: 100vw;
      margin-left: calc(50% - 50vw);
      margin-right: calc(50% - 50vw);
      padding: 0;
      background: transparent;
      margin-top: 0;
    }

    /* Hero Carousel */
    .hero-carousel {
      position: relative;
      width: 100%;
      min-height: 300px;
      overflow: hidden;
    }

    .hero__slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      visibility: hidden;
      transition: opacity 1.5s ease-in-out, visibility 1.5s ease-in-out;
      z-index: 1;
    }

    .hero__slide.is-active {
      opacity: 1;
      visibility: visible;
      z-index: 2;
    }

    .hero figure.hero-image-wrapper {
      margin: 0;
      border-radius: 0;
      overflow: visible;
      padding: 0;
      background: #0F172A;
      border: none;
      box-shadow: none;
      position: relative;
      isolation: isolate;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 300px;
      width: 100%;
      height: 100%;
    }

    .hero figure.hero-image-wrapper::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to top,
        #0F172A 0%,
        rgba(15, 23, 42, 0.8) 20%,
        rgba(15, 23, 42, 0) 60%
      );
      z-index: 2;
      pointer-events: none;
    }

    .hero figure.hero-image-wrapper img {
      width: 100%;
      height: auto;
      object-fit: contain;
      display: block;
      position: relative;
      z-index: 1;
      filter: saturate(0.9) brightness(0.9) contrast(1.1);
    }

    /* Hero Indicators */
    .hero__indicators {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 8px;
      z-index: 10;
      padding: 8px 12px;
      background: rgba(15, 23, 42, 0.6);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      border-radius: 20px;
    }

    .hero__indicator {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.4);
      border: 1px solid rgba(255, 255, 255, 0.6);
      cursor: pointer;
      transition: all 0.3s ease;
      padding: 0;
      margin: 0;
      outline: none;
    }

    .hero__indicator.is-active {
      background: #38BDF8;
      border-color: #38BDF8;
      width: 24px;
      border-radius: 4px;
      box-shadow: 0 0 8px rgba(56, 189, 248, 0.5);
    }

    .hero__indicator:hover {
      background: rgba(255, 255, 255, 0.6);
      transform: scale(1.2);
    }

    .cta-glass-3d {
      position: absolute;
      bottom: 30px;
      right: 20px;
      z-index: 50;
      background: rgba(37, 99, 235, 0.25);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      padding: 14px 24px;
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.3);
      border-bottom: 4px solid rgba(15, 23, 42, 0.4);
      color: #FFFFFF;
      font-family: 'Inter', sans-serif;
      font-weight: 900;
      font-size: 14px;
      letter-spacing: 0.05em;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
                  inset 0 0 15px rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      gap: 10px;
      transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      cursor: pointer;
    }

    .cta-glass-3d:active {
      transform: translateY(2px);
      border-bottom-width: 1px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .btn-content {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    /* Intelligence Hub */
    #intelligence-hub {
      margin: 18px 0 60px;
      display: grid;
      gap: 18px;
      color: #f1f5f9;
    }

    .intel-header {
      display: grid;
      gap: 8px;
    }

    .intel-lead {
      margin: 0;
      color: #cbd5e1;
      font-size: 0.95rem;
    }

    .intel-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 12px;
      border-radius: 999px;
      background: rgba(56, 189, 248, 0.12);
      color: #38BDF8;
      font-weight: 900;
      letter-spacing: 0.06em;
      font-size: 0.75rem;
      width: fit-content;
    }

    #intelligence-hub h2 {
      margin: 0;
      font-weight: 900;
      letter-spacing: -0.03em;
      font-size: 1.5rem;
      color: #f8fafc;
    }

    .intel-grid {
      display: grid;
      gap: 18px;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .intel-card {
      background: rgba(15, 23, 42, 0.8);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(56, 189, 248, 0.28);
      border-radius: 22px;
      padding: 20px;
      display: grid;
      gap: 12px;
      box-shadow: 0 18px 44px rgba(0,0,0,0.25), 0 0 0 1px rgba(56,189,248,0.18);
      position: relative;
      overflow: hidden;
      text-shadow: 0 1px 8px rgba(0,0,0,0.35);
    }

    .intel-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.12), transparent);
      pointer-events: none;
      opacity: 0.7;
    }

    .intel-figure {
      margin: 0;
      display: grid;
      gap: 8px;
      background: rgba(15,23,42,0.7);
      border-radius: 14px;
      padding: 10px;
      border: 1px solid rgba(255,255,255,0.08);
      box-shadow: inset 0 0 0 1px rgba(56,189,248,0.08);
    }

.card-tag {
      font-size: 9px;
      color: #38BDF8;
      font-weight: 900;
      background: rgba(56, 189, 248, 0.12);
      padding: 4px 10px;
      border-radius: 100px;
      width: fit-content;
      margin-bottom: 4px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

.intel-card h4 {
      margin: 0;
      font-weight: 800;
      font-size: 13px;
      color: #FFFFFF;
      letter-spacing: 0.05em;
    }

    .intel-viz {
      width: 100%;
      height: auto;
      object-fit: contain;
      border-radius: 16px;
      filter: contrast(1.05) saturate(1.1);
    }

    .intel-caption {
  margin: 0;
  color: #E2E8F0;
  font-size: 0.92rem;
  line-height: 1.4;
    }

.intel-media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin: 14px 0 10px;
}

.intel-media {
  margin: 0;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: inset 0 0 18px rgba(0,0,0,0.16);
}

.intel-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: contrast(1.02) saturate(1.05);
}
    /* FIM HERO / BANNER */
    /* --------------------------- */

    /* --------------------------- */
    /* NAVIGATION STRIP */
      .professional-nav-strip {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 2200;
        background: transparent;
        border-bottom: none;
        box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
        transition: box-shadow 0.3s ease;
        padding: 6px 0;
        margin-top: 0 !important;
        top: auto;
      }

.professional-nav-strip.is-hidden {
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
}

    .professional-nav-strip.sticky-active {
      box-shadow: 0 6px 20px rgba(15, 23, 42, 0.08);
    }

    .nav-strip-container {
      max-width: 100%;
      width: 100%;
      margin: 0 auto;
      margin-top: 0 !important;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      align-items: center;
      position: relative;
      background: rgba(15, 23, 42, 0.8);
      backdrop-filter: blur(15px);
      -webkit-backdrop-filter: blur(15px);
      height: 56px;
      border-radius: 14px;
      padding: 4px;
      box-shadow: 0 10px 28px rgba(0,0,0,0.16);
      border-top: 1px solid rgba(56, 189, 248, 0.2);
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .nav-strip-btn {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 4px;
      padding: 10px 0;
      background: transparent;
      border: none;
      outline: none;
      font-family: 'Inter', system-ui, -apple-system, sans-serif;
      font-weight: 800;
      font-size: 10px;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.6);
      cursor: pointer;
      transition: color 0.3s ease, transform 0.3s ease;
      position: relative;
      z-index: 2;
      will-change: transform;
    }

    .nav-strip-btn:hover {
      color: rgba(255,255,255,0.85);
    }

    .nav-strip-btn.active {
      color: #38BDF8;
      font-weight: 900;
      transform: scale(1.06);
    }

    .nav-strip-btn:active {
      transform: scale(0.96);
    }

    .nav-icon {
      width: 20px;
      height: 20px;
      margin-bottom: 4px;
      color: rgba(255,255,255,0.6);
      transition: color 0.3s ease, transform 0.3s ease, filter 0.3s ease;
    }

    .nav-strip-btn.active .nav-icon {
      color: #38BDF8;
      transform: scale(1.2);
      filter: drop-shadow(0 0 8px rgba(56, 189, 248, 0.8));
      animation: navPulse 0.8s ease;
    }

.nav-hidden {
  transform: translateY(100%);
}

@keyframes navPulse {
  0% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(56,189,248,0)); }
  40% { transform: scale(1.24); filter: drop-shadow(0 3px 14px rgba(56,189,248,0.75)); }
  100% { transform: scale(1.2); filter: drop-shadow(0 2px 10px rgba(56,189,248,0.55)) drop-shadow(0 -1px 6px rgba(255,255,255,0.25)); }
}

    .nav-indicator {
      position: absolute;
      top: 4px;
      left: 4px;
      height: calc(56px - 8px);
  background: linear-gradient(135deg, rgba(6,182,212,0.2), rgba(56,189,248,0.28));
      border-radius: 12px;
      width: calc((100% - 8px) / 4);
      transition: all 0.3s ease;
      transform: translateX(0%);
      z-index: 1;
  border: 1px solid rgba(125, 211, 252, 0.6);
  box-shadow: 0 8px 20px rgba(56,189,248,0.25), inset 0 1px 2px rgba(255,255,255,0.25);
      will-change: transform;
    }

    .nav-indicator.pos-0 { transform: translateX(0%); }
    .nav-indicator.pos-1 { transform: translateX(100%); }
    .nav-indicator.pos-2 { transform: translateX(200%); }
    .nav-indicator.pos-3 { transform: translateX(300%); }

    .product-selector-nav {
      margin: 10px auto 6px;
      width: 92%;
      display: flex;
      gap: 8px;
      padding: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
    }

    .dose-hint {
      width: 92%;
      margin: 0 auto 14px;
      font-size: 0.8rem;
      color: #CBD5E1;
      text-align: center;
      opacity: 0.9;
    }

    .composition-selector-nav {
      margin: 8px auto 12px;
      width: 92%;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0;
      padding: 6px;
      background: rgba(255, 255, 255, 0.06);
      border-radius: 14px;
      border: 1px solid rgba(56, 189, 248, 0.25);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      box-shadow: inset 0 0 0 1px rgba(56,189,248,0.08);
      position: relative;
      overflow: hidden;
    }

.composition-selector-nav::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
  pointer-events: none;
}

    #page-composicoes h2 {
      font-size: 1.6rem;
      letter-spacing: 0.12em;
      font-weight: 800;
      text-transform: uppercase;
      color: #FFFFFF;
      margin: 0 0 10px;
    }

    #comparison-trigger-card {
      border-radius: 14px;
      background: rgba(15,23,42,0.7);
      border: 1px solid rgba(56,189,248,0.2);
      box-shadow: 0 16px 36px rgba(0,0,0,0.22);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }

    #comparison-trigger-card .comparison-icon {
      color: #38BDF8;
    }

    #comparison-trigger-card .comparison-title {
      margin: 0;
      font-weight: 800;
      font-size: 0.95rem;
      letter-spacing: 0.08em;
      color: #FFFFFF;
      text-transform: uppercase;
    }

    #comparison-trigger-card .comparison-subtitle {
      margin: 4px 0 0;
      color: #E2E8F0;
      font-size: 0.9rem;
      opacity: 0.82;
    }

    /* FAQ / VIP - Dark Clinical */
    #faq-inteligencia {
      margin: 24px auto 32px;
      padding: 20px;
      border-radius: 16px;
      background: linear-gradient(180deg, #0b1220 0%, #0f172a 100%);
      color: #e2e8f0;
      box-shadow: 0 14px 40px rgba(0,0,0,0.22);
  position: relative;
  overflow: hidden;
    }

#faq-inteligencia::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.2), transparent);
  pointer-events: none;
  opacity: 0.9;
}

    #faq-inteligencia h2 {
      margin: 0 0 16px;
      font-size: 1.6rem;
      font-weight: 900;
      letter-spacing: -0.03em;
      line-height: 1.2;
    }

    .faq-accordion {
      display: grid;
      gap: 10px;
    }

    .faq-item {
      border: 1px solid rgba(226, 232, 240, 0.08);
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.05);
      overflow: hidden;
    }

    .faq-question {
      width: 100%;
      background: transparent;
      border: none;
      color: #e2e8f0;
      font-weight: 800;
      font-size: 0.98rem;
      padding: 14px 14px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      cursor: pointer;
      transition: background 0.3s ease, transform 0.1s ease;
    }

    .faq-question:active {
      transform: scale(0.95);
    }

    .faq-icon {
      width: 18px;
      height: 18px;
      color: #22c55e;
      transition: transform 0.3s ease;
      flex-shrink: 0;
    }

    .faq-item.is-open .faq-icon {
      transform: rotate(45deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      padding: 0 14px;
  color: #CBD5E1;
      line-height: 1.5;
    }

    .faq-item.is-open .faq-answer {
      padding: 0 14px 12px;
    }

    .faq-cta {
      margin-top: 16px;
      display: flex;
      justify-content: center;
    }

    .faq-cta button {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 12px 16px;
      border-radius: 12px;
      border: 1px solid rgba(34, 197, 94, 0.5);
      background: linear-gradient(90deg, rgba(16,185,129,0.16), rgba(34,197,94,0.24));
      color: #e2f3ec;
      font-weight: 900;
      letter-spacing: 0.02em;
      cursor: pointer;
      transition: transform 0.1s ease, box-shadow 0.2s ease;
      box-shadow: 0 8px 22px rgba(16,185,129,0.25);
    }

    .faq-cta button:active {
      transform: scale(0.95);
    }

    /* VIP modal */
    .vip-modal-backdrop {
      position: fixed;
      inset: 0;
      background: rgba(2, 6, 23, 0.68);
      display: none;
      align-items: center;
      justify-content: center;
      padding: 16px;
      z-index: 2100;
      backdrop-filter: blur(6px);
    }

    .vip-modal-backdrop.is-visible {
      display: flex;
    }

    .vip-modal {
      width: min(420px, 96vw);
      background: #0b1220;
      border: 1px solid rgba(226, 232, 240, 0.08);
      border-radius: 14px;
      padding: 18px;
      color: #e2e8f0;
      box-shadow: 0 16px 40px rgba(0,0,0,0.35);
      display: grid;
      gap: 12px;
    }

    .vip-modal h3 {
      margin: 0;
      font-size: 1.2rem;
      font-weight: 900;
      letter-spacing: -0.02em;
    }

    .vip-modal p {
      margin: 0;
      color: #cbd5e1;
      line-height: 1.5;
    }

    .vip-input {
      width: 100%;
      padding: 12px;
      border-radius: 10px;
      border: 1px solid rgba(226,232,240,0.16);
      background: rgba(255,255,255,0.05);
      color: #e2e8f0;
      font-size: 1rem;
    }

    .vip-actions {
      display: flex;
      gap: 10px;
      justify-content: flex-end;
      align-items: center;
    }

    .vip-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 12px 16px;
      border-radius: 12px;
      border: 1px solid rgba(34, 197, 94, 0.5);
      background: linear-gradient(90deg, rgba(16,185,129,0.16), rgba(34,197,94,0.24));
      color: #e2f3ec;
      font-weight: 800;
      letter-spacing: 0.01em;
      cursor: pointer;
      transition: transform 0.1s ease, box-shadow 0.2s ease;
      box-shadow: 0 8px 20px rgba(16,185,129,0.22);
    }

    .vip-btn:active {
      transform: scale(0.95);
    }

    .vip-close {
      background: transparent;
      border: none;
      color: #94a3b8;
      font-weight: 800;
      cursor: pointer;
      transition: color 0.2s ease;
    }

    .vip-close:hover {
      color: #e2e8f0;
    }

    .vip-spinner {
      display: inline-flex;
      gap: 8px;
      align-items: center;
      color: #e2e8f0;
    }

    .vip-spinner .dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #22c55e;
      animation: pulseDot 1s ease-in-out infinite;
    }

    @keyframes pulseDot {
      0% { transform: scale(1); opacity: 0.5; }
      50% { transform: scale(1.6); opacity: 1; }
      100% { transform: scale(1); opacity: 0.5; }
    }
    .selector-btn {
      flex: 1;
      border: none;
      border-radius: 10px;
      background: transparent;
      padding: 8px 0;
      font-family: 'Inter', system-ui, -apple-system, sans-serif;
      font-weight: 800;
      font-size: 13px;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: #64748B;
      cursor: pointer;
      transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2px;
    }

    .selector-label {
      line-height: 1.2;
    }

    .selector-sub {
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.02em;
      text-transform: none;
      opacity: 0.8;
      color: #CBD5E1;
    }

    .selector-btn.active {
      background: #ffffff;
      color: #0F172A;
      box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
    }

    .selector-btn-comp {
      border: none;
      border-radius: 12px;
      background: transparent;
      padding: 12px 0;
      font-family: 'Inter', system-ui, -apple-system, sans-serif;
      font-weight: 800;
      font-size: 12px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #94A3B8;
      cursor: pointer;
      transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      z-index: 1;
    }

    .selector-btn-comp.active {
      background: rgba(56,189,248,0.12);
      color: #FFFFFF;
      box-shadow: 0 10px 28px rgba(56,189,248,0.20);
      text-shadow: 0 1px 8px rgba(0,0,0,0.35);
    }

    .line-block { display: block; }
    .line-block.is-hidden { display: none !important; }

.viewport-page.is-hidden {
  display: none !important;
}

    .line-block.fade-swap {
      animation: lineSwap 0.25s ease;
    }

    @keyframes lineSwap {
      from { opacity: 0; transform: translateY(6px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @media (max-width: 380px) {
      .nav-strip-btn {
        font-size: 10px;
        gap: 3px;
        padding: 10px 0;
      }

      .product-selector-nav {
        width: 100%;
      }

      .selector-btn {
        font-size: 12px;
      }
    }

    /* FIM NAVIGATION STRIP */
    /* --------------------------- */

    /* --------------------------- */
    /* VIEWPORT SWITCHER */
    .viewport-switcher {
      /* Empilha as páginas na vertical, permitindo scroll normal da página */
      display: block;
      overflow-x: visible;
      overflow-y: visible;
      width: 100%;
      position: relative;
      padding-top: 0;
      margin-top: 0;
    }

    .viewport-switcher::-webkit-scrollbar {
      display: none;
    }

    .viewport-page {
      width: 100%;
      scroll-snap-align: none;
      scroll-snap-stop: auto;
      overflow-y: visible;
      overflow-x: hidden;
      box-sizing: border-box;
    }

    .viewport-page:not(.is-active) {
      display: none;
      visibility: hidden;
      height: 0;
      overflow: hidden;
    }
    
    .viewport-page.is-active {
      display: block !important;
      visibility: visible !important;
      height: auto !important;
      overflow: visible !important;
    }

    #page-inicio {
      background: linear-gradient(180deg, #0F172A 0%, #020617 100%) !important;
      position: relative;
      overflow: hidden;
      color: #f1f5f9;
      min-height: auto !important;
      height: auto !important;
      padding-bottom: 80px;
    }

    #page-inicio::before {
      content: '';
      position: absolute;
      top: -10%;
      left: 50%;
      transform: translateX(-50%);
      width: 150%;
      height: 40%;
      background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, rgba(37, 99, 235, 0) 70%);
      pointer-events: none;
      z-index: 0;
    }

    #page-inicio .container {
      position: relative;
      z-index: 1;
      color: #f1f5f9;
      background: transparent;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 0 24px;
  padding-top: 0;
    }

    #page-inicio .hero,
    #page-inicio .product-info,
    #page-inicio #mh-tratamento-block,
    #page-inicio #faq-inteligencia {
      background: transparent;
    }

#page-inicio .hero {
  margin-bottom: 12px;
}

#page-inicio .product-info {
  padding: 12px 0 8px;
  text-align: center;
}

#page-inicio .product-info h1 {
  margin: 0 0 8px;
}

#mh-tratamento-block,
#intelligence-hub,
#faq-inteligencia {
  width: min(1100px, 92vw);
  margin: 0 auto 18px;
}

#intelligence-hub {
  gap: 14px;
  text-align: center;
}

#intelligence-hub .intel-header {
  align-items: center;
  text-align: center;
}

    /* Seção ENTENDA - laudo farmacêutico */
    .entenda-section {
      background: transparent;
      color: #0f172a;
      padding: 14px 0 28px;
    }

    .entenda-card-shell {
      width: min(1100px, 94vw);
      margin: 0 auto;
      background: #ffffff;
      border: 1px solid #e2e8f0;
      border-radius: 12px;
      box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
      padding: 22px 18px;
    }

    .entenda-inner {
      font-family: 'Inter', system-ui, -apple-system, sans-serif;
    }

    .entenda-kicker {
      text-transform: uppercase;
      font-size: 0.75rem;
      letter-spacing: 0.16em;
      font-weight: 700;
      color: #0284C7;
      margin: 0 0 8px;
      text-align: center;
    }

    .entenda-title {
      margin: 0 0 14px;
      font-size: 1.55rem;
      font-weight: 800;
      letter-spacing: 0.02em;
      text-align: center;
    }

    .entenda-intro {
      margin: 0 0 18px;
      font-size: 0.95rem;
      line-height: 1.6;
      color: #1f2933;
      text-align: center;
    }

    .entenda-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
    }

    .entenda-card {
      border-radius: 10px;
      border: 1px solid #e2e8f0;
      background: #f9fafb;
      padding: 16px 18px;
      box-shadow: 0 6px 14px rgba(15, 23, 42, 0.06);
      border-radius: 10px;
      border: 1px solid #e2e8f0;
      background: #f9fafb;
      padding: 16px 18px;
      box-shadow: 0 6px 14px rgba(15, 23, 42, 0.06);
    }

    .entenda-card h3 {
      margin: 0 0 8px;
      font-size: 0.95rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: #0f172a;
    }

    .entenda-card p {
      margin: 0;
      font-size: 0.9rem;
      line-height: 1.6;
      color: #1f2933;
    }

    @media (max-width: 767px) {
      .entenda-section {
        padding: 18px 0 24px;
      }
      .entenda-title {
        font-size: 1.3rem;
      }
      .entenda-grid {
        grid-template-columns: 1fr;
      }
      .entenda-card-shell {
        width: 94vw;
      }
      .entenda-intro {
        font-size: 0.95rem;
        text-align: center;
      }
      .entenda-card p {
        text-align: left;
        font-size: 0.95rem;
      }
      .entenda-kicker {
        font-size: 0.72rem;
      }
}

#faq-inteligencia {
  text-align: center;
}

#faq-inteligencia .faq-question {
  justify-content: center;
}

#faq-inteligencia .faq-question span {
  flex: 1;
  text-align: center;
}

    #page-loja,
    #page-composicoes,
    #page-rastreio {
      background: linear-gradient(180deg, #0F172A 0%, #020617 100%);
      color: #e2e8f0;
      min-height: 0 !important;
      height: auto !important;
      padding: 12px 0 80px;
    }

    /* Loja: eliminar gap inferior entre carrossel e rodapé */
    #page-loja {
      min-height: unset !important;
      height: auto !important;
      max-height: fit-content !important;
      overflow: visible !important;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      padding: 12px 0 0 !important;
      margin-bottom: 0 !important;
    }

    #page-loja .container,
    #page-rastreio .container {
      width: min(1100px, 92vw);
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 12px;
      padding: 0 0 4px;
    }

    #page-loja .container {
      min-height: unset !important;
      height: auto !important;
      max-height: fit-content !important;
      overflow: visible !important;
      padding-bottom: 0 !important;
      margin-bottom: 0 !important;
      justify-content: flex-start;
      align-items: stretch;
    }

    #page-composicoes .composicoes-container {
      width: min(1200px, 94vw);
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 10px;
      padding: 12px 0 28px;
    }

#page-loja .featured {
  padding-bottom: 0;
  margin-bottom: 0;
}

#page-loja .carousel-section {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

#page-loja .carousel-shell {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

#page-loja .carousel {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

    .composicoes-container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
    }

    .composition-cta {
      width: 100%;
      display: flex;
      justify-content: center;
  margin: 12px auto 20px;
  padding: 0 16px;
    }
    /* FIM VIEWPORT SWITCHER */
    /* --------------------------- */

    /* --------------------------- */
    /* INFORMAÇÃO DO PRODUTO */
    .product-info {
      text-align: center;
      padding: 16px 0 10px;
    }

    .product-info h1 {
      margin: 0 0 8px;
      font-size: 2rem;
      font-weight: 900;
      letter-spacing: -0.02em;
      line-height: 1.18;
      font-family: "Inter", system-ui, -apple-system, sans-serif;
      color: #f8fafc;
    }

    .product-info p {
      display: none;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 8px 14px;
      border: 1px solid var(--border);
      border-radius: 999px;
      background: #fff;
      font-weight: 600;
      font-size: 0.9rem;
      letter-spacing: 0.02em;
    }

    .badges {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
    }
    /* FIM INFORMAÇÃO DO PRODUTO */
    /* --------------------------- */

    /* --------------------------- */
    /* PROTOCOL DASHBOARDS */
    .protocol-dashboard {
      margin: 20px 0 16px;
      opacity: 0;
      transform: translateY(14px);
      animation: dashboardFadeIn 0.6s ease-out forwards;
    }

    @keyframes dashboardFadeIn {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    #dashboard-70mg {
      animation-delay: 0.1s;
    }

    .dashboard-container {
      position: relative;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(226, 232, 240, 0.18);
      border-radius: 18px;
      padding: 20px;
      max-width: 1200px;
      margin: 0 auto;
      box-shadow: 0 18px 40px rgba(0,0,0,0.22), 0 0 0 1px rgba(56,189,248,0.12);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      overflow: hidden;
    }

    .dashboard-container::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(56,189,248,0.18), transparent 45%);
      opacity: 0.6;
      pointer-events: none;
    }

    .dashboard-container::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
  width: 100%;
  height: 100%;
  border-top: 1px solid rgba(56,189,248,0.45);
  border-left: 1px solid rgba(56,189,248,0.3);
      border-radius: 18px;
      pointer-events: none;
    }

    .dashboard-kicker {
      font-size: 10px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: #94A3B8;
      margin: 0 0 6px;
      text-align: left;
    }

    .dashboard-title {
      font-weight: 800;
      letter-spacing: 0.12em;
      color: #FFFFFF;
      text-transform: uppercase;
      margin: 0 0 14px;
      font-size: 1.25rem;
      text-align: left;
    }

    .dashboard-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
      margin-bottom: 18px;
    }

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

    .dashboard-item.caliber-item {
      grid-column: 1 / -1;
      align-items: center;
      text-align: center;
    }

    .dashboard-icon {
      width: 22px;
      height: 22px;
      color: #38BDF8;
      flex-shrink: 0;
    }

    .dashboard-label {
      font-weight: 700;
      font-size: 12px;
      color: #E2E8F0;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .dashboard-value {
      font-weight: 700;
      font-size: 14px;
      color: #FFFFFF;
      line-height: 1.4;
    }

    .dashboard-performance {
      display: flex;
      flex-direction: column;
      gap: 12px;
      padding-top: 16px;
      border-top: 1px solid rgba(226,232,240,0.18);
    }

    .performance-item {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .performance-label,
    .performance-value {
      font-weight: 700;
      font-size: 13px;
      color: #FFFFFF;
      display: inline-block;
    }

    .performance-item > div:first-child {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .performance-bar {
      height: 6px;
      background: #E2E8F0;
      border-radius: 10px;
      overflow: hidden;
      width: 100%;
    }

    .performance-fill {
      height: 100%;
      background: linear-gradient(90deg, #10B981, #059669);
      border-radius: 10px;
      transition: width 0.8s ease-out;
    }

    .performance-note {
      font-size: 11px;
      color: #64748B;
      font-weight: 500;
      margin-top: -4px;
    }

    /* Mobile First - Abaixo de 480px */
    @media (max-width: 480px) {
      .protocol-dashboard {
        margin: 24px 12px 20px;
      }

      .dashboard-container {
        padding: 16px;
        border-radius: 12px;
      }

      .dashboard-kicker {
        font-size: 10px;
        text-align: center;
      }

      .dashboard-title {
        font-size: 1.2rem;
        text-align: center;
        margin-bottom: 20px;
      }

      .dashboard-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-bottom: 20px;
      }

      .dashboard-item {
        align-items: center;
        text-align: center;
      }

      .dashboard-value {
        font-size: 13px;
      }

      .dashboard-performance {
        gap: 12px;
        padding-top: 16px;
      }

      .performance-item > div:first-child {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
      }

      .performance-bar {
        width: 100%;
      }
    }

    /* Tablet - 481px a 768px */
    @media (min-width: 481px) and (max-width: 768px) {
      .dashboard-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
      }

      .dashboard-kicker,
      .dashboard-title {
        text-align: center;
      }
    }

    /* Desktop - Acima de 768px */
    @media (min-width: 769px) {
      .dashboard-kicker,
      .dashboard-title,
      .dashboard-item {
        text-align: left;
      }
    }
    /* FIM PROTOCOL DASHBOARDS */
    /* --------------------------- */

    /* --------------------------- */
    /* CARROSSEL */
    .carousel-section {
      padding: 6px 0 0;
    }

    .carousel-shell {
      position: relative;
      padding-left: 0;
      padding-right: 0;
      overflow: visible !important;
      pointer-events: auto;
      touch-action: pan-x !important;
    }
    
    /* Indicadores de Progresso */
    .carousel-indicators {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 8px;
      margin-top: 16px;
      padding: 0 16px;
    }
    
    .carousel-indicator {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.3);
      border: 1px solid rgba(255, 255, 255, 0.5);
      cursor: pointer;
      transition: all 0.3s ease;
      padding: 0;
      margin: 0;
      outline: none;
    }
    
    .carousel-indicator.is-active {
      background: #38BDF8;
      border-color: #38BDF8;
      width: 24px;
      border-radius: 4px;
      box-shadow: 0 0 8px rgba(56, 189, 248, 0.5);
    }
    
    .carousel-indicator:hover {
      background: rgba(255, 255, 255, 0.5);
      transform: scale(1.2);
    }
    
    .carousel,
    .produtos-carousel {
      display: flex !important;
      overflow-x: auto !important;
      overflow-y: hidden !important;
      scroll-snap-type: x mandatory !important;
      scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch;
      padding: 20px 5% !important;
      gap: 20px;
      scrollbar-width: none;
      -ms-overflow-style: none;
      justify-content: flex-start;
      align-items: stretch;
      overscroll-behavior-x: contain;
      touch-action: pan-x !important;
      cursor: grab;
      -webkit-user-select: none;
      user-select: none;
      position: relative;
      width: 100%;
      scroll-snap-stop: normal;
    }
    
    .carousel:active,
    .produtos-carousel:active {
      cursor: grabbing;
    }
    
    /* Garantir que o toque funcione em qualquer área do card */
    .product-card,
    .product-card * {
      touch-action: pan-x !important;
    }
    
    .carousel::-webkit-scrollbar,
    .produtos-carousel::-webkit-scrollbar {
      display: none;
    }

    .carousel-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 56px;
      height: 56px;
      border-radius: 50%;
      border: 1px solid rgba(226, 232, 240, 0.6);
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
      display: grid;
      place-items: center;
      cursor: pointer !important;
      color: #0f172a;
      opacity: 0.9;
      z-index: 110 !important;
      transition: all 0.3s ease;
      pointer-events: auto !important;
      touch-action: manipulation;
      user-select: none;
      -webkit-user-select: none;
    }
    
    .carousel-nav:not(:disabled):hover {
      background: rgba(255, 255, 255, 0.75);
      opacity: 1;
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
      transform: translateY(-50%) scale(1.05);
    }
    
    .carousel-nav:not(:disabled):active {
      transform: translateY(-50%) scale(0.95);
    }
    
    .carousel-nav:disabled {
      opacity: 0.3;
      cursor: not-allowed !important;
      pointer-events: none;
    }
    .carousel-nav svg {
      width: 24px;
      height: 24px;
      stroke-width: 2.8;
    }
    .carousel-nav.prev { left: 8px; }
    .carousel-nav.next { right: 8px; }

    .product-card {
      flex: 0 0 90% !important; /* FOCO UNITÁRIO: Garante que 1 card ocupe quase toda a tela */
      min-width: 90% !important;
      max-width: 90%;
      background: rgba(15, 23, 42, 0.8);
      border: 1px solid rgba(56, 189, 248, 0.35);
      border-radius: 12px;
      padding: 12px;
      scroll-snap-align: center !important; /* Força o card a travar no centro */
      scroll-snap-stop: normal;
      will-change: transform;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-between;
      text-align: center;
      min-height: 320px;
      box-shadow: 0 12px 32px rgba(0,0,0,0.25), 0 0 0 1px rgba(56,189,248,0.18);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      position: relative;
      margin-left: 0;
      margin-right: 0;
      color: #0f172a;
      text-shadow: 0 1px 8px rgba(0,0,0,0.35);
      transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s, border-color 0.3s ease;
      opacity: 0.6;
      transform: scale(0.95);
      flex-shrink: 0;
    }
    
    .product-card:not(.is-active) {
      opacity: 0.6 !important;
      transform: scale(0.95) !important;
      pointer-events: auto;
    }

    .product-card.is-active {
      opacity: 1 !important;
      transform: scale(1.05) !important;
      border-color: #38BDF8 !important;
      box-shadow: 0 16px 40px rgba(0,0,0,0.3), 0 0 0 2px rgba(56,189,248,0.6), 0 0 20px rgba(56,189,248,0.2) !important;
      pointer-events: auto !important;
      z-index: 2;
    }

    .product-card.featured-plan {
      border: 1px solid rgba(56, 189, 248, 0.6);
      box-shadow: 0 16px 44px rgba(0,0,0,0.28), 0 0 0 1px rgba(56,189,248,0.35), 0 0 24px rgba(56,189,248,0.18);
      position: relative;
    }

    /* Container de badges acima da foto */
    .product-card .badges-container {
      position: absolute;
      top: 8px;
      left: 8px;
      right: 8px;
      display: flex;
      gap: 6px;
      z-index: 2;
      justify-content: flex-start;
      flex-wrap: wrap;
    }

    .recommended-badge {
      padding: 2px 6px;
      border-radius: 4px;
      background: rgba(56,189,248,0.25);
      color: #FFFFFF;
      font-weight: 800;
      font-size: 8px;
      letter-spacing: 0.2px;
      line-height: 1.2;
      white-space: nowrap;
    }

    .save-badge {
      padding: 2px 6px;
      border-radius: 4px;
      background: rgba(56,189,248,0.25);
      color: #FFFFFF;
      font-weight: 800;
      font-size: 8px;
      letter-spacing: 0.2px;
      line-height: 1.2;
      white-space: nowrap;
      display: inline-flex;
      align-items: center;
      gap: 2px;
    }

    .product-card figure {
      margin: 0 0 8px 0;
      background: transparent;
      border-radius: 0;
      padding: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      border: none;
      box-shadow: none;
      width: 100%;
      height: 40%;
      min-height: 128px;
      max-height: 128px;
      flex-shrink: 0;
    }

    .product-card img {
      width: auto;
      height: 100%;
      max-width: 100%;
      object-fit: contain;
    }

    /* Bloco de Texto (Título + Descrição) */
    .product-card .product-text-block {
      display: flex;
      flex-direction: column;
      gap: 4px;
      width: 100%;
      flex: 1;
      justify-content: flex-start;
      margin-bottom: auto;
    }

    .product-name {
      margin: 0;
      font-size: 14px;
      font-weight: 800;
      line-height: 1.3;
      color: #FFFFFF;
      width: 100%;
    }

    .product-subtext {
      margin: 0;
      color: #94A3B8;
      font-size: 10px;
      line-height: 1.2;
      width: 100%;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .price-line {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
      width: 100%;
      margin-bottom: 12px;
      padding: 0 4px;
    }
    .new-price {
      color: #FFFFFF !important;
      font-size: 16px;
      font-weight: 800;
      line-height: 1.3;
      letter-spacing: 0.4px;
    }
    .price-installment {
      color: #FFFFFF !important;
      font-size: 18px;
      font-weight: 800;
      line-height: 1.4;
      letter-spacing: 0.4px;
      text-align: center;
    }
    .save-badge {
      display: inline-flex;
      align-items: center;
      gap: 3px;
      padding: 3px 8px;
      border-radius: 6px;
      background: rgba(56,189,248,0.2);
      color: #FFFFFF;
      font-weight: 800;
      font-size: 9px;
      letter-spacing: 0.3px;
      width: fit-content;
    }

    /* FIM CARROSSEL */
    /* --------------------------- */

    /* --------------------------- */
    /* CARD DESTAQUE */
    .featured {
      padding: 20px 0 16px;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .featured-carousel {
      display: flex;
      gap: 12px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      padding: 6px 12px 10px;
      scrollbar-width: none;
      -ms-overflow-style: none;
      justify-content: center;
      align-items: center;
      overscroll-behavior-x: contain;
      touch-action: pan-x;
      -webkit-overflow-scrolling: touch;
      width: 100%;
    }
    .featured-carousel::-webkit-scrollbar { display: none; }

    .featured-card {
      flex: 0 0 82%;
      min-width: 82%;
      width: 92%;
      margin: 0 auto;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(56,189,248,0.2);
      border-radius: 28px;
      padding: 32px 24px;
      display: flex !important;
      flex-direction: column !important;
      align-items: center !important;
      text-align: center !important;
      gap: 14px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.5), inset 0 0 15px rgba(56, 189, 248, 0.1);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      position: relative;
      overflow: hidden;
      scroll-snap-align: start;
      color: #FFFFFF;
      text-shadow: 0 1px 8px rgba(0,0,0,0.35);
      float: none !important;
    }

    .featured-card figure {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto;
    }

    .featured-card figure img {
      max-width: 80%;
      width: auto;
      height: auto;
      object-fit: contain;
      margin: 0 auto;
    }

    /* Override para BioTech card - manter imagem visível */
    .biotech-luxury-card figure.biotech-product-image {
      display: flex !important;
    }

    .biotech-luxury-card figure.biotech-product-image img {
      display: block !important;
      visibility: visible !important;
      opacity: 1 !important;
      max-width: 100% !important;
    }

    .featured figure {
      margin: 0;
      background: rgba(15,23,42,0.7);
      border-radius: 16px;
      padding: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(255,255,255,0.16);
      box-shadow: inset 0 0 12px rgba(0,0,0,0.25), inset 0 0 0 1px rgba(56,189,248,0.08);
    }

    .featured img {
      width: 100%;
      object-fit: contain;
    }

    .featured .product-name {
      font-size: 24px;
      line-height: 1.2;
      font-weight: 900;
      letter-spacing: -1px;
      color: #FFFFFF;
      text-align: center;
      width: 100%;
      margin: 0 auto;
    }

    .featured .product-price {
      font-size: 1rem;
      line-height: 1.3;
      color: #FFFFFF;
      text-align: center;
      width: 100%;
      margin: 0 auto;
    }

.featured-card .product-subtext {
  margin: 0;
  color: #E2E8F0;
  font-size: 0.96rem;
  line-height: 1.45;
}

.featured-card .price-line {
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.featured-card .cta {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 0 auto;
}

.featured-card .old-price {
  text-decoration: line-through;
  color: rgba(255,255,255,0.68);
  font-size: 0.95rem;
  font-weight: 700;
}

.featured-card .new-price {
  color: #38BDF8;
  font-size: 1.2rem;
  font-weight: 900;
}

.featured-card .price-installment {
  color: rgba(56, 189, 248, 0.9);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 4px;
  letter-spacing: 0.3px;
}

.featured-card svg,
.featured-card svg * {
  color: #FFFFFF !important;
  fill: #FFFFFF !important;
  stroke: #FFFFFF !important;
  filter: drop-shadow(0 0 8px rgba(56, 189, 248, 0.6));
}

.featured-card .tag-best svg,
.featured-card [class*="icon"] svg {
  color: #38BDF8 !important;
  fill: #38BDF8 !important;
  stroke: #38BDF8 !important;
  filter: drop-shadow(0 0 8px rgba(56, 189, 248, 0.8));
}

    .whatsapp-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 0 16px;
      min-height: 50px;
      border-radius: 10px;
      border: 1px solid #10b981;
      background: transparent;
      color: #10b981;
      font-weight: 700;
      font-size: 0.9rem;
      text-decoration: none;
      transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
      box-shadow: none;
      width: 100%;
    }

    .whatsapp-btn svg {
      width: 20px;
      height: 20px;
      flex: 0 0 20px;
    }

    .whatsapp-btn:hover { background: #ecfdf3; }

    .whatsapp-btn:focus-visible {
      outline: 2px solid #10b981;
      outline-offset: 2px;
    }

    .pix-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
  padding: 0 16px;
  min-height: 50px;
  border-radius: 10px;
      border: 1px solid #0ea371;
      background: linear-gradient(120deg, #10b981, #0ea371);
      color: #FFFFFF;
      font-weight: 800;
      font-size: 0.98rem;
      text-decoration: none;
      transition: filter 0.2s ease, transform 0.2s ease;
      box-shadow: 0 10px 22px rgba(16,185,129,0.16);
      width: 100%;
    }

    .pix-btn svg {
      width: 20px;
      height: 20px;
      flex: 0 0 20px;
    }

    .pix-btn:hover { filter: brightness(1.03); transform: translateY(-1px); }

    .pix-btn:focus-visible { outline: 2px solid #0ea371; outline-offset: 2px; }

    .cta {
      display: flex;
      flex-direction: column;
      align-items: stretch;
      gap: 12px;
      margin-top: 10px;
    }

    .cta .pix-btn,
    .cta .whatsapp-btn {
      width: 100%;
      justify-content: center;
      align-items: center;
      min-height: 50px;
      padding: 16px;
      border-radius: 10px;
      font-weight: 800;
      font-size: 14px;
      letter-spacing: 0.5px;
      text-align: center;
    }

.featured-card .cta .pix-btn {
  width: 100%;
  height: 54px;
  font-size: 18px;
  font-weight: 900;
  border-radius: 12px;
  transition: transform 0.12s ease, filter 0.2s ease;
}

.featured-card .cta .pix-btn:active {
  transform: scale(0.97);
}

    /* Ajuste para CTAs dentro dos cards do carrossel */
    .product-card .cta {
      width: 100%;
      gap: 10px;
      margin-top: auto; /* Cola os botões no rodapé do card */
      display: flex;
      flex-direction: column;
    }

    /* Botão Principal PIX - Estilo Simplificado */
    .product-card .cta .pix-btn {
      width: 100%;
      max-width: 100%;
      min-height: 50px;
      height: auto;
      padding: 16px;
      border-radius: 10px;
      background: #0284C7;
      border: none;
      color: #FFFFFF;
      font-weight: 800;
      font-size: 14px;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      box-shadow: 0 4px 0 #034b70;
      transition: all 0.2s ease;
      cursor: pointer;
      order: 1;
      text-align: center;
    }

    /* Efeito Shimmer no botão PIX */
    .product-card .cta .pix-btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
      animation: shimmerBtn 3s ease-in-out infinite;
    }

    @keyframes shimmerBtn {
      0% { left: -100%; }
      50% { left: 100%; }
      100% { left: 100%; }
    }

    .product-card .cta .pix-btn:hover {
      background: #0369A1;
      transform: translateY(-1px);
      box-shadow: 0 6px 16px rgba(2, 132, 199, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }

    .product-card .cta .pix-btn:active {
      transform: translateY(0);
      box-shadow: 0 2px 8px rgba(2, 132, 199, 0.3);
    }

    /* Container do texto principal do botão PIX */
    .product-card .cta .pix-btn .btn-main-text {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 11px;
      font-weight: 900;
      letter-spacing: 0.8px;
      position: relative;
      z-index: 1;
      line-height: 1.25;
      justify-content: center;
      text-align: center;
      flex-wrap: nowrap;
    }

    /* Sub-texto do botão PIX */
    .product-card .cta .pix-btn .btn-sub-text {
      font-size: 8px;
      font-weight: 700;
      letter-spacing: 0.4px;
      opacity: 0.9;
      position: relative;
      z-index: 1;
      line-height: 1.1;
      text-align: center;
      display: block;
    }

    /* Ícones do botão PIX */
    .product-card .cta .pix-btn svg {
      width: 14px;
      height: 14px;
      flex-shrink: 0;
      position: relative;
      z-index: 1;
    }

    /* Ícone de cadeado (shield-check) */
    .product-card .cta .pix-btn .icon-shield {
      width: 14px;
      height: 14px;
      stroke-width: 2.5;
    }

    /* Botão Secundário WhatsApp - Estilo Consultoria */
    .product-card .cta .whatsapp-btn {
      width: 100%;
      max-width: 100%;
      min-height: 50px;
      height: auto;
      padding: 16px;
      border-radius: 10px;
      border: 2px solid #10B981;
      background: transparent;
      color: #10B981;
      font-weight: 700;
      font-size: 14px;
      letter-spacing: 0.3px;
      text-transform: none;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      position: relative;
      transition: all 0.3s ease;
      cursor: pointer;
      order: 2;
    }

    /* Ponto pulsante de status online */
    .pulse-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #10B981;
      position: relative;
      flex-shrink: 0;
      animation: pulseDotStatus 2s ease-in-out infinite;
      box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }

    @keyframes pulseDotStatus {
      0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
        transform: scale(1);
      }
      50% {
        box-shadow: 0 0 0 4px rgba(16, 185, 129, 0);
        transform: scale(1.1);
      }
      100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
        transform: scale(1);
      }
    }

    /* Texto do botão WhatsApp */
    .product-card .cta .whatsapp-btn .btn-text {
      position: relative;
      z-index: 1;
      transition: all 0.3s ease;
    }

    /* Texto alternativo no hover */
    .product-card .cta .whatsapp-btn .btn-text-hover {
      display: none;
    }

    .product-card .cta .whatsapp-btn:hover {
      background: #10B981;
      border-color: #10B981;
      color: #FFFFFF;
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
    }

    .product-card .cta .whatsapp-btn:hover .btn-text {
      display: none;
    }

    .product-card .cta .whatsapp-btn:hover .btn-text-hover {
      display: block;
    }

    .product-card .cta .whatsapp-btn svg {
      width: 16px;
      height: 16px;
      flex-shrink: 0;
      position: relative;
      z-index: 1;
    }

    .product-card .cta .whatsapp-btn:active {
      transform: translateY(0);
    }

    .tag-best {
      position: absolute;
      top: 10px;
      right: 10px;
      padding: 6px 10px;
      background: linear-gradient(135deg, #5f8dff, #7ea5ff);
      color: #fff;
      font-size: 0.78rem;
      font-weight: 700;
      border-radius: 999px;
      letter-spacing: 0.01em;
      box-shadow: 0 6px 18px rgba(95, 141, 255, 0.25);
    }

    .meta {
      margin: 0 0 10px;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      padding: 10px 12px;
  background: rgba(255,255,255,0.9);
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.14);
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  color: #1f2937;
    }

    .meta-item {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 10px;
      border-radius: 10px;
      background: #edf2f7;
      font-family: "SFMono-Regular", Menlo, Consolas, monospace;
      font-size: 0.78rem;
      color: #2d3748;
    }

    .meta-stock {
      color: #2f6b1d;
      font-weight: 700;
      background: #f0fff4;
      border: 1px solid rgba(72, 187, 120, 0.35);
      position: relative;
      padding-left: 10px;
    }
    .meta-stock::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #48bb78;
      display: inline-block;
      margin-right: 6px;
      box-shadow: 0 0 0 4px rgba(72, 187, 120, 0.18);
      animation: pulseDot 1.6s ease-in-out infinite;
    }
    /* --------------------------- */
    /* BIOTECH LUXURY CARD DESIGN */
    /* --------------------------- */
    .featured-card.biotech-luxury-card {
      border-radius: 16px !important;
      padding: 14px !important;
      max-width: 340px !important;
      margin: 0 auto !important;
      background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%) !important;
      border: 0.5px solid rgba(56, 189, 248, 0.3) !important;
      position: relative !important;
      overflow: hidden !important;
      display: grid !important;
      grid-template-rows: auto 1fr auto !important;
      gap: 10px !important;
      align-items: start !important;
      text-align: left !important;
      flex-direction: column !important;
      box-shadow: 0 4px 16px rgba(0,0,0,0.3), inset 0 0 12px rgba(56, 189, 248, 0.06) !important;
      backdrop-filter: blur(20px) !important;
      -webkit-backdrop-filter: blur(20px) !important;
    }

    /* Header: Grid com Imagem (35-40% no mobile) + Título */
    .biotech-luxury-card .biotech-card-header {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
      position: relative;
      z-index: 1;
      width: 100%;
      align-items: start;
    }

    /* Imagem do Produto */
    .biotech-luxury-card .biotech-product-image {
      width: 100% !important;
      margin: 0 !important;
      display: flex !important;
      visibility: visible !important;
      opacity: 1 !important;
      align-items: center !important;
      justify-content: center !important;
      background: transparent !important;
      border-radius: 0 !important;
      padding: 10px 0 !important;
      border: none !important;
      min-height: 140px !important;
      overflow: visible !important;
      position: relative !important;
      /* Prevenir zoom no container */
      touch-action: none;
      -webkit-touch-callout: none;
    }

    .biotech-luxury-card .biotech-product-image img {
      width: auto !important;
      height: auto !important;
      max-width: 55% !important;
      max-height: 160px !important;
      min-height: auto !important;
      object-fit: contain !important;
      object-position: center center !important;
      margin: 0 !important;
      display: block !important;
      visibility: visible !important;
      opacity: 1 !important;
      transform: none !important;
      filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.4)) !important;
      position: relative !important;
      z-index: 1 !important;
      /* Prevenir zoom e interação */
      touch-action: none;
      -webkit-touch-callout: none;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
      pointer-events: none;
      -webkit-user-drag: none;
      -khtml-user-drag: none;
      -moz-user-drag: none;
      -o-user-drag: none;
    }

    /* Wrapper do Título */
    .biotech-title-wrapper {
      display: flex;
      flex-direction: column;
      gap: 8px;
      width: 100%;
      align-items: center;
      text-align: center;
    }
    
    .biotech-title-row {
      display: flex;
      align-items: center;
      gap: 8px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .biotech-title-row {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
    }

    /* Título Principal */
    .biotech-product-title {
      font-weight: 800 !important;
      text-transform: uppercase !important;
      letter-spacing: 1.2px !important;
      font-size: 1rem !important;
      line-height: 1.2 !important;
      color: #FFFFFF !important;
      margin: 0 !important;
    }

    /* Badge PREMIUM GRADE */
    .biotech-premium-badge {
      display: inline-flex;
      align-items: center;
      padding: 4px 8px;
      background: linear-gradient(135deg, rgba(56, 189, 248, 0.9) 0%, rgba(14, 165, 233, 0.9) 100%);
      color: #FFFFFF;
      font-size: 0.6rem;
      font-weight: 800;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      border-radius: 5px;
      box-shadow: 0 2px 8px rgba(56, 189, 248, 0.25);
      border: 0.5px solid rgba(56, 189, 248, 0.5);
    }

    /* Body: Lista de Benefícios */
    .biotech-card-body {
      position: relative;
      z-index: 1;
    }

    .biotech-benefits-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .biotech-benefit-item {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      color: #E2E8F0;
      font-size: 0.7rem;
      line-height: 1.3;
    }

    .biotech-check-icon {
      flex-shrink: 0;
      width: 14px;
      height: 14px;
      margin-top: 2px;
    }

    .biotech-benefit-item > span {
      flex: 1;
    }

    .biotech-benefit-text {
      display: flex;
      flex-direction: column;
      gap: 4px;
      flex: 1;
    }

    .biotech-benefit-text > span {
      display: block;
      width: 100%;
    }

    .biotech-benefit-subtext {
      font-size: 0.65rem !important;
      color: rgba(226, 232, 240, 0.7) !important;
      font-weight: 500 !important;
      letter-spacing: 0.3px !important;
      display: block !important;
      line-height: 1.3 !important;
      margin-top: 2px;
    }

    /* Footer: Preço + Botão */
    .biotech-card-footer {
      display: flex;
      flex-direction: column;
      gap: 10px;
      position: relative;
      z-index: 1;
      margin-top: auto;
    }

    .biotech-price-wrapper {
      display: flex;
      flex-direction: column;
      gap: 3px;
    }

    .biotech-price-label {
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      color: rgba(226, 232, 240, 0.7);
    }

    .biotech-price-value {
      font-family: 'JetBrains Mono', 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
      font-size: 1.25rem;
      font-weight: 800;
      color: #38BDF8;
      letter-spacing: -0.5px;
    }

    /* Meta Info (SKU e Estoque) - estilo do 70mg mas menor e separados */
    .biotech-meta-items {
      display: flex;
      flex-wrap: nowrap;
      align-items: center;
      gap: 8px;
      margin-top: 6px;
    }

    .biotech-meta-item {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      padding: 3px 6px;
      border-radius: 6px;
      background: rgba(237, 242, 247, 0.3);
      font-family: 'JetBrains Mono', 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
      font-size: 0.6rem;
      font-weight: 600;
      color: rgba(226, 232, 240, 0.85);
      white-space: nowrap;
    }

    .biotech-meta-stock {
      color: rgba(47, 107, 29, 0.95);
      font-weight: 700;
      background: rgba(240, 255, 244, 0.25);
      border: 0.5px solid rgba(72, 187, 120, 0.35);
      padding-left: 7px;
    }

    .biotech-meta-stock::before {
      content: "";
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: rgba(72, 187, 120, 0.9);
      display: inline-block;
      margin-right: 4px;
      box-shadow: 0 0 0 2px rgba(72, 187, 120, 0.2);
    }

    /* Botão de Compra Bio-Tech Tactile */
    .biotech-buy-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      height: 42px;
      padding: 0 18px;
      border-radius: 10px;
      background: linear-gradient(135deg, rgba(56, 189, 248, 0.95) 0%, rgba(14, 165, 233, 0.95) 100%);
      border: 0.5px solid rgba(56, 189, 248, 0.6);
      color: #FFFFFF;
      font-weight: 800;
      font-size: 0.875rem;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      text-decoration: none;
      cursor: pointer;
      transition: transform 0.1s ease, box-shadow 0.2s ease, filter 0.2s ease;
      box-shadow: 
        0 4px 12px rgba(56, 189, 248, 0.2),
        0 2px 6px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
      position: relative;
      overflow: hidden;
    }

    .biotech-buy-btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
      transition: left 0.5s ease;
    }

    .biotech-buy-btn:hover::before {
      left: 100%;
    }

    .biotech-buy-btn svg {
      width: 16px;
      height: 16px;
      flex-shrink: 0;
    }

    .biotech-buy-btn:active {
      transform: translateY(2px) scale(0.98);
      box-shadow: 
        0 4px 12px rgba(56, 189, 248, 0.2),
        0 2px 4px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }

    .biotech-buy-btn:hover {
      filter: brightness(1.05);
      box-shadow: 
        0 10px 28px rgba(56, 189, 248, 0.3),
        0 6px 12px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    }

    /* Responsividade Mobile */
    @media (max-width: 767px) {
      .biotech-luxury-card .biotech-card-header {
        gap: 8px;
      }

      .biotech-luxury-card .biotech-product-image {
        padding: 8px 0;
        min-height: 120px;
        align-items: center;
      }

      .biotech-luxury-card .biotech-product-image img {
        width: auto;
        height: auto;
        max-width: 50%;
        max-height: 140px;
        min-height: auto;
        object-fit: contain;
        object-position: center center;
        margin: 0;
        transform: none;
        filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4));
        /* Prevenir zoom e interação no mobile */
        touch-action: none;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        pointer-events: none;
        -webkit-user-drag: none;
        -khtml-user-drag: none;
        -moz-user-drag: none;
        -o-user-drag: none;
      }

      .biotech-product-title {
        font-size: 0.95rem !important;
      }

      .biotech-premium-badge {
        font-size: 0.55rem;
        padding: 3px 7px;
      }

      .biotech-benefit-item {
        font-size: 0.68rem;
        gap: 7px;
      }

      .biotech-check-icon {
        width: 13px;
        height: 13px;
      }

      .biotech-price-value {
        font-size: 1.15rem;
      }

      .biotech-buy-btn {
        height: 40px;
        padding: 0 16px;
        font-size: 0.8rem;
      }
    }

    @media (min-width: 768px) {
      .biotech-luxury-card .biotech-card-header {
        flex-direction: column;
        align-items: center;
        gap: 16px;
      }
    }
    /* FIM BIOTECH LUXURY CARD */
    /* --------------------------- */

    /* --------------------------- */
    /* BIOTECH MODULES (FADE SEQUENCIAL INFINITO) */
    /* --------------------------- */
    .biotech-modules-carousel-wrapper {
      margin: 30px auto;
      position: relative;
      width: 100%;
      max-width: 600px;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 200px;
    }

    .biotech-modules-carousel {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
      width: 100%;
      position: relative;
    }

    .biotech-modules-carousel .biotech-module {
      grid-column: 1;
      grid-row: 1;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
      pointer-events: none;
      position: relative;
      z-index: 0;
    }

    .biotech-modules-carousel .biotech-module.is-active {
      opacity: 1 !important;
      visibility: visible !important;
      pointer-events: auto;
      z-index: 1;
    }

    .biotech-module {
      background: rgba(255, 255, 255, 0.02);
      backdrop-filter: blur(15px);
      -webkit-backdrop-filter: blur(15px);
      border-radius: 16px;
      padding: 20px;
      border: 1px solid rgba(56, 189, 248, 0.1);
      display: flex;
      flex-direction: column;
      gap: 12px;
      position: relative;
      overflow: hidden;
      transition: all 0.4s ease;
    }

    .biotech-module::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 16px;
      padding: 1px;
      background: linear-gradient(135deg, rgba(56, 189, 248, 0), rgba(56, 189, 248, 0.3), rgba(56, 189, 248, 0));
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .biotech-module:hover {
      border-color: rgba(56, 189, 248, 0.4);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    }

    .biotech-module:hover::before {
      opacity: 1;
    }

    /* Módulo 01: Composições Validadas (Azul Marinho/Ciano) */
    .biotech-module.module-lab {
      border-color: rgba(59, 130, 246, 0.15);
    }

    .biotech-module.module-lab:hover {
      border-color: rgba(59, 130, 246, 0.4);
    }

    .biotech-module.module-lab .biotech-module-icon {
      color: #3b82f6;
    }

    .biotech-module.module-lab::before {
      background: linear-gradient(135deg, rgba(59, 130, 246, 0), rgba(59, 130, 246, 0.3), rgba(59, 130, 246, 0));
    }

    /* Módulo 02: Efeito Instantâneo (Azul Elétrico/Branco) */
    .biotech-module.module-instant {
      border-color: rgba(56, 189, 248, 0.15);
    }

    .biotech-module.module-instant:hover {
      border-color: rgba(56, 189, 248, 0.4);
    }

    .biotech-module.module-instant .biotech-module-icon {
      color: #38BDF8;
      filter: drop-shadow(0 0 5px rgba(56, 189, 248, 0.6));
    }

    .biotech-module.module-instant::before {
      background: linear-gradient(135deg, rgba(56, 189, 248, 0), rgba(56, 189, 248, 0.4), rgba(56, 189, 248, 0));
    }

    /* Módulo 03: Uso Prescrito (Verde Esmeralda) */
    .biotech-module.module-prescribed {
      border-color: rgba(16, 185, 129, 0.15);
    }

    .biotech-module.module-prescribed:hover {
      border-color: rgba(16, 185, 129, 0.4);
    }

    .biotech-module.module-prescribed .biotech-module-icon {
      color: #10B981;
    }

    .biotech-module.module-prescribed::before {
      background: linear-gradient(135deg, rgba(16, 185, 129, 0), rgba(16, 185, 129, 0.3), rgba(16, 185, 129, 0));
    }

    /* Ícone do Módulo */
    .biotech-module-icon {
      position: relative;
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 4px;
    }

    .biotech-module-icon svg {
      width: 32px;
      height: 32px;
    }

    /* Tag LAB-CERTIFIED */
    .biotech-module-tag {
      position: absolute;
      top: -4px;
      right: -8px;
      font-size: 7px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: rgba(59, 130, 246, 0.5);
      opacity: 0.5;
      background: rgba(59, 130, 246, 0.1);
      padding: 2px 6px;
      border-radius: 4px;
    }

    /* Título do Módulo */
    .biotech-module-title {
      margin: 0;
      font-weight: 800;
      text-transform: uppercase;
      font-size: 12px;
      letter-spacing: 1.5px;
      color: #FFFFFF;
      line-height: 1.3;
    }

    /* Texto do Módulo */
    .biotech-module-text {
      margin: 0;
      font-family: system-ui, -apple-system, sans-serif;
      color: #94A3B8;
      font-size: 10px;
      line-height: 1.5;
      font-weight: 400;
    }

    /* Responsividade Mobile */
    @media (max-width: 767px) {
      .biotech-modules-carousel-wrapper {
        margin-top: 16px;
        min-height: 180px;
      }

      .biotech-modules-carousel {
        gap: 16px;
      }

      .biotech-module {
        padding: 16px;
        gap: 10px;
      }

      .biotech-module-icon {
        width: 40px;
        height: 40px;
      }

      .biotech-module-icon svg {
        width: 28px;
        height: 28px;
      }

      .biotech-module-title {
        font-size: 11px;
        letter-spacing: 1.2px;
      }

      .biotech-module-text {
        font-size: 9px;
      }

      .biotech-module-tag {
        font-size: 6px;
        padding: 1px 5px;
      }
    }

    /* FIM BIOTECH MODULES */
    /* --------------------------- */

    /* FIM CARD DESTAQUE */
    /* --------------------------- */

    /* --------------------------- */
    /* CYBER-EMERALD SECURITY CARD */
    /* --------------------------- */
    .security-section-title {
      margin: 0;
      margin-top: 24px;
      margin-bottom: 12px;
      color: #FFFFFF;
      font-weight: 600;
      font-size: 1.25rem;
      line-height: 1.4;
      text-align: left;
      letter-spacing: -0.01em;
    }

    .cyber-emerald-card {
      margin-top: 0;
      padding: 20px;
      border-radius: 16px;
      background: rgba(10, 20, 15, 0.7);
      border: 1px solid rgba(16, 185, 129, 0.3);
      box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 0 20px rgba(16, 185, 129, 0.05);
      backdrop-filter: blur(25px);
      -webkit-backdrop-filter: blur(25px);
      display: flex;
      flex-direction: column;
      gap: 14px;
      position: relative;
      overflow: hidden;
    }

    .cyber-emerald-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.5), transparent);
      animation: shimmer 3s ease-in-out infinite;
    }

    @keyframes shimmer {
      0%, 100% { opacity: 0.3; }
      50% { opacity: 0.8; }
    }

    /* Badge "Safe Zone" */
    .cyber-emerald-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 16px;
      border-radius: 8px;
      background: rgba(16, 185, 129, 0.1);
      border: 1px solid #10B981;
      width: fit-content;
      animation: pulse-emerald 2.5s ease-in-out infinite;
    }

    @keyframes pulse-emerald {
      0%, 100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
        border-color: rgba(16, 185, 129, 0.6);
      }
      50% {
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
        border-color: rgba(16, 185, 129, 1);
      }
    }

    .cyber-emerald-badge span {
      color: #10B981;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-size: 0.75rem;
    }

    /* Ícone Escudo/ECG */
    .cyber-emerald-icon {
      width: 24px;
      height: 24px;
      color: #10B981;
      filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.8));
      flex-shrink: 0;
    }

    /* Título */
    .cyber-emerald-title {
      margin: 0;
      color: #FFFFFF;
      font-weight: 900;
      font-size: 1.5rem;
      line-height: 1.2;
      letter-spacing: -0.02em;
    }

    /* Texto de Apoio */
    .cyber-emerald-text {
      margin: 0;
      color: rgba(226, 232, 240, 0.7);
      font-size: 0.95rem;
      line-height: 1.6;
    }

    /* Responsividade Mobile */
    @media (max-width: 767px) {
      .security-section-title {
        margin-top: 20px;
        margin-bottom: 10px;
        font-size: 1.1rem;
      }

      .cyber-emerald-card {
        margin-top: 0;
        padding: 16px;
        gap: 12px;
      }

      .cyber-emerald-badge {
        padding: 8px 14px;
        gap: 8px;
      }

      .cyber-emerald-badge span {
        font-size: 0.7rem;
        letter-spacing: 0.8px;
      }

      .cyber-emerald-icon {
        width: 20px;
        height: 20px;
      }

      .cyber-emerald-title {
        font-size: 1.25rem;
      }

      .cyber-emerald-text {
        font-size: 0.88rem;
      }
    }
    /* FIM CYBER-EMERALD SECURITY CARD */
    /* --------------------------- */

    /* --------------------------- */
    /* COUPON MODAL - DESIGN MELHORADO */
    /* --------------------------- */
    .coupon-modal-card {
      max-width: 900px;
      width: 100%;
    }

    /* Header do Modal */
    .coupon-modal-header {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 8px;
    }

    .coupon-modal-title-wrapper {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .coupon-validation-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 12px;
      border-radius: 6px;
      background: rgba(34, 197, 94, 0.15);
      border: 1px solid rgba(34, 197, 94, 0.4);
      width: fit-content;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      color: #22C55E;
    }

    .coupon-validation-badge svg {
      width: 14px;
      height: 14px;
      flex-shrink: 0;
    }

    .coupon-modal-card #couponTitle {
      margin: 0;
      font-size: 1.75rem;
      font-weight: 900;
      line-height: 1.2;
      letter-spacing: -0.02em;
      color: #FFFFFF;
    }

    .coupon-modal-subtitle {
      margin: 0;
      font-size: 0.95rem;
      line-height: 1.5;
      color: rgba(226, 232, 240, 0.8);
      font-weight: 400;
    }

    .coupon-modal-close {
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(226, 232, 240, 0.1);
      color: rgba(226, 232, 240, 0.8);
      cursor: pointer;
      transition: all 0.2s ease;
      flex-shrink: 0;
    }

    .coupon-modal-close svg {
      width: 20px;
      height: 20px;
    }

    .coupon-modal-close:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(226, 232, 240, 0.2);
      color: #FFFFFF;
    }

    /* Grid de Cupons */
    .coupon-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 16px;
      margin-top: 20px;
    }

    /* Cards de Cupom */
    .coupon-card {
      display: flex;
      flex-direction: column;
      gap: 14px;
      padding: 18px;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(226, 232, 240, 0.12);
      transition: all 0.2s ease;
    }

    .coupon-card:hover {
      background: rgba(255, 255, 255, 0.06);
      border-color: rgba(56, 189, 248, 0.3);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    }

    .coupon-card-content {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .coupon-product-info {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .coupon-product-quantity {
      font-size: 1.1rem;
      font-weight: 800;
      color: #FFFFFF;
      letter-spacing: -0.01em;
    }

    .coupon-product-dosage {
      font-size: 0.85rem;
      font-weight: 600;
      color: rgba(226, 232, 240, 0.7);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    /* Preços */
    .coupon-prices {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .coupon-old-price {
      font-size: 0.9rem;
      color: rgba(226, 232, 240, 0.5);
      text-decoration: line-through;
      font-weight: 500;
    }

    .coupon-new-price {
      font-size: 1.5rem;
      font-weight: 900;
      color: #22C55E;
      letter-spacing: -0.02em;
      line-height: 1.2;
    }

    .coupon-discount-amount {
      font-size: 0.85rem;
      font-weight: 700;
      color: rgba(34, 197, 94, 0.9);
      letter-spacing: 0.3px;
    }

    /* Botão de Seleção */
    .coupon-select-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      width: 100%;
      padding: 14px 18px;
      border-radius: 10px;
      background: linear-gradient(135deg, rgba(56, 189, 248, 0.95) 0%, rgba(14, 165, 233, 0.95) 100%);
      border: 1px solid rgba(56, 189, 248, 0.4);
      color: #FFFFFF;
      font-weight: 800;
      font-size: 0.9rem;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      cursor: pointer;
      transition: all 0.2s ease;
      margin-top: auto;
    }

    .coupon-select-btn svg {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
    }

    .coupon-select-btn:hover {
      background: linear-gradient(135deg, rgba(56, 189, 248, 1) 0%, rgba(14, 165, 233, 1) 100%);
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(56, 189, 248, 0.4);
    }

    .coupon-select-btn:active {
      transform: translateY(0);
    }

    /* Responsividade */
    @media (max-width: 767px) {
      .coupon-modal-card #couponTitle {
        font-size: 1.4rem;
      }

      .coupon-modal-subtitle {
        font-size: 0.88rem;
      }

      .coupon-modal-header {
        flex-direction: column;
        gap: 12px;
      }

      .coupon-modal-close {
        align-self: flex-end;
      }

      .coupon-grid {
        grid-template-columns: 1fr;
        gap: 12px;
      }

      .coupon-card {
        padding: 16px;
      }

      .coupon-new-price {
        font-size: 1.35rem;
      }

      .coupon-product-quantity {
        font-size: 1rem;
      }

      .coupon-select-btn {
        padding: 12px 16px;
        font-size: 0.85rem;
      }
    }

    @media (min-width: 768px) and (max-width: 1023px) {
      .coupon-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 1024px) {
      .coupon-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }
    /* FIM COUPON MODAL */
    /* --------------------------- */

    /* --------------------------- */
    /* BIOTECH PRODUCT MODAL */
    /* --------------------------- */
    .biotech-product-modal {
      background: rgba(10, 20, 30, 0.85);
      backdrop-filter: blur(25px);
      -webkit-backdrop-filter: blur(25px);
      z-index: 2200;
    }

    .biotech-product-modal.is-visible {
      display: flex;
    }

    .biotech-modal-card {
      position: relative;
      width: min(680px, 95vw);
      max-height: 90vh;
      overflow-y: auto;
      padding: 32px;
      padding-bottom: 60px;
      border-radius: 16px;
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
      border: 0.5px solid rgba(56, 189, 248, 0.3);
      box-shadow: 0 50px 100px rgba(0, 0, 0, 0.8);
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .biotech-modal-card::-webkit-scrollbar {
      width: 6px;
    }

    .biotech-modal-card::-webkit-scrollbar-track {
      background: rgba(255, 255, 255, 0.05);
      border-radius: 3px;
    }

    .biotech-modal-card::-webkit-scrollbar-thumb {
      background: rgba(56, 189, 248, 0.3);
      border-radius: 3px;
    }

    .biotech-modal-card::-webkit-scrollbar-thumb:hover {
      background: rgba(56, 189, 248, 0.5);
    }

    /* Botão Fechar */
    .biotech-modal-close {
      position: absolute;
      top: 20px;
      right: 20px;
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(226, 232, 240, 0.1);
      color: #94A3B8;
      cursor: pointer;
      transition: all 0.2s ease;
      z-index: 10;
    }

    .biotech-modal-close svg {
      width: 20px;
      height: 20px;
    }

    .biotech-modal-close:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(226, 232, 240, 0.2);
      color: #FFFFFF;
    }

    /* Imagem do Produto */
    .biotech-product-image-wrapper {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 20px;
      margin-bottom: 8px;
    }

    .biotech-product-image-wrapper img {
      max-width: 100%;
      max-height: 280px;
      object-fit: contain;
      filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
    }

    /* Header do Modal */
    .biotech-modal-header {
      margin-bottom: 8px;
      position: relative;
      z-index: 10;
    }

    .biotech-modal-content-wrapper {
      position: relative;
      z-index: 10;
    }

    .biotech-benefits-section {
      position: relative;
      z-index: 10;
    }

    .biotech-title-row {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
    }

    .biotech-product-name {
      margin: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      font-size: 2rem;
      font-weight: 900;
      letter-spacing: -0.02em;
      line-height: 1.2;
      color: #FFFFFF !important;
      text-transform: uppercase;
      position: relative;
      z-index: 10;
    }

    .biotech-cert-badge {
      display: inline-flex;
      align-items: center;
      padding: 4px 10px;
      border-radius: 4px;
      background: rgba(56, 189, 248, 0.15);
      border: 1px solid rgba(56, 189, 248, 0.4);
      font-family: 'Open Sans', system-ui, -apple-system, sans-serif;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: #38BDF8;
    }

    /* Grid de Especificações */
    .biotech-specs-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
      padding: 20px;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(56, 189, 248, 0.1);
    }

    .biotech-spec-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      position: relative;
      z-index: 10;
    }

    .biotech-spec-icon {
      width: 24px;
      height: 24px;
      flex-shrink: 0;
      color: #38BDF8;
      margin-top: 2px;
    }

    .biotech-spec-content {
      display: flex;
      flex-direction: column;
      gap: 4px;
      flex: 1;
      position: relative;
      z-index: 10;
    }

    .biotech-spec-label {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      font-size: 0.75rem;
      font-weight: 700 !important;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      color: #38BDF8 !important;
      position: relative;
      z-index: 10;
    }

    .biotech-spec-value {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      font-size: 0.95rem;
      font-weight: 500;
      color: #CBD5E1 !important;
      line-height: 1.4;
      position: relative;
      z-index: 10;
    }

    /* Seção de Benefícios */
    .biotech-benefits-section {
      margin-top: 8px;
    }

    .biotech-benefits-title {
      margin: 0 0 16px 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      color: #FFFFFF !important;
      position: relative;
      z-index: 10;
    }

    /* Forçar cor branca para todos os títulos dentro do modal */
    #productModal h2,
    #productModal h3,
    #productModal h4 {
      color: #FFFFFF !important;
      position: relative;
      z-index: 10;
    }

    /* Forçar cor prata para textos do modal (exceto labels técnicas e badges) */
    #productModal .biotech-benefit-item-modal span,
    #productModal .biotech-spec-value {
      color: #CBD5E1 !important;
    }

    .biotech-benefits-list-modal {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .biotech-benefit-item-modal {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      position: relative;
      z-index: 10;
    }

    .biotech-check-icon-modal {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .biotech-benefit-item-modal span {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      font-size: 0.95rem;
      font-weight: 500;
      color: #CBD5E1 !important;
      line-height: 1.5;
      position: relative;
      z-index: 10;
    }

    /* Botão CTA */
    .biotech-cta-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      width: 100%;
      padding: 18px 24px;
      border-radius: 8px;
      background: linear-gradient(135deg, #38BDF8 0%, #0EA5E9 100%);
      border: none;
      color: #FFFFFF;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      font-size: 1rem;
      font-weight: 900;
      letter-spacing: 1px;
      text-transform: uppercase;
      cursor: pointer;
      transition: all 0.2s ease;
      box-shadow: 
        0 8px 24px rgba(56, 189, 248, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
      margin-top: 8px;
    }

    .biotech-cta-btn svg {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
    }

    .biotech-cta-btn:hover {
      transform: scale(1.02);
      box-shadow: 
        0 12px 32px rgba(56, 189, 248, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }

    .biotech-cta-btn:active {
      transform: scale(0.98);
    }

    /* Responsividade Mobile */
    @media (max-width: 767px) {
      .biotech-modal-card {
        width: 95vw;
        padding: 24px 20px;
        padding-bottom: 60px;
        gap: 20px;
        max-height: 95vh;
      }

      .biotech-modal-close {
        top: 16px;
        right: 16px;
        width: 32px;
        height: 32px;
      }

      .biotech-product-image-wrapper {
        padding: 16px;
      }

      .biotech-product-image-wrapper img {
        max-height: 220px;
      }

      .biotech-product-name {
        font-size: 1.5rem;
      }

      .biotech-cert-badge {
        font-size: 0.65rem;
        padding: 3px 8px;
      }

      .biotech-specs-grid {
        padding: 16px;
        gap: 14px;
      }

      .biotech-spec-icon {
        width: 20px;
        height: 20px;
      }

      .biotech-spec-value {
        font-size: 0.88rem;
      }

      .biotech-cta-btn {
        padding: 16px 20px;
        font-size: 0.9rem;
      }
    }

    @media (min-width: 768px) {
      .biotech-modal-card {
        max-width: 900px;
        flex-direction: row;
        align-items: flex-start;
        gap: 32px;
      }

      .biotech-product-image-wrapper {
        flex: 0 0 320px;
        order: -1;
        padding: 0;
        margin-bottom: 0;
      }

      .biotech-product-image-wrapper img {
        max-height: 400px;
      }

      .biotech-modal-content-wrapper {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 24px;
      }
    }
    /* FIM BIOTECH PRODUCT MODAL */
    /* --------------------------- */

    /* --------------------------- */
    /* RESPONSIVIDADE */
    @media (max-width: 767px) {
      .container {
        width: min(960px, 94vw);
        padding: 0 0 28px;
      }
      .top-bar {
        font-size: 0.9rem;
        padding: 10px 12px;
      }
      header {
        padding: 14px 12px;
      }
      
      /* Hero Mobile */
      .hero figure.hero-image-wrapper {
        overflow: visible;
        min-height: auto;
        display: flex;
        align-items: flex-start;
        justify-content: center;
      }
      
      .hero figure.hero-image-wrapper img {
        width: 100%;
        height: auto;
        object-fit: contain;
        max-height: none;
      }
      
      .cta-glass-3d {
        bottom: 20px;
        right: 16px;
        font-size: 12px;
        padding: 12px 20px;
      }
      
      .hero {
        padding: 10px 0 4px;
      }
      .product-info h1 {
        font-size: 1.9rem;
        line-height: 1.2;
      }
      .product-info p {
        font-size: 0.98rem;
      }
      .badge {
        font-size: 0.9rem;
        padding: 8px 12px;
      }
      .featured-card {
        grid-template-columns: 1fr;
        gap: 12px;
      }
      .tag-best {
        top: 12px;
        right: 12px;
      }
      .cta {
        gap: 12px;
      }
      .cta .pix-btn,
      .cta .whatsapp-btn {
        width: 100%;
        min-height: 50px;
        touch-action: manipulation;
      }
      .carousel-shell {
        padding-left: 0;
        padding-right: 0;
      }

      .carousel,
      .produtos-carousel {
        gap: 16px;
        padding: 16px 5% 20px;
      }
      
      .product-card {
        flex: 0 0 90% !important;
        min-width: 90% !important;
        max-width: 90%;
        margin-left: 0;
        margin-right: 0;
        scroll-snap-align: center !important;
        scroll-snap-stop: normal;
        will-change: transform;
        padding: 12px;
        border-radius: 12px;
      }
      
      .product-card:not(.is-active) {
        opacity: 0.6 !important;
        transform: scale(0.95) !important;
        transition: opacity 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
      }
      
      .product-card.is-active {
        opacity: 1 !important;
        transform: scale(1.05) !important;
        border-color: #38BDF8 !important;
        transition: opacity 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
      }
      
      /* Otimizações Mobile - Modais */
      .modal-backdrop {
        padding: 16px;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
      }
      
      .modal-card {
        max-height: calc(100vh - 32px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
      }
      
      /* Inputs - prevenir zoom no iOS */
      input[type="text"],
      input[type="tel"],
      input[type="email"],
      input[type="number"] {
        font-size: 16px !important;
      }
      
      /* Botões - melhor touch */
      button,
      .btn,
      a[role="button"] {
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
      }
      
      /* Carrossel - melhor scroll touch */
      .carousel {
        -webkit-overflow-scrolling: touch;
        touch-action: pan-x;
      }
      
      /* Navegação - melhor touch */
      .nav-strip-btn {
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
      }

      .product-card figure {
        min-height: 120px;
        max-height: 140px;
        margin-bottom: 8px;
      }

      .product-card .cta {
        gap: 10px;
      }

      .product-card .cta .pix-btn {
        min-height: 52px;
        padding: 14px 14px;
        font-size: 11px;
        gap: 4px;
      }

      .product-card .cta .pix-btn .btn-main-text {
        font-size: 11px;
        gap: 5px;
      }

      .product-card .cta .pix-btn .btn-sub-text {
        font-size: 8px;
      }

      .product-card .cta .pix-btn svg,
      .product-card .cta .pix-btn .icon-shield {
        width: 14px;
        height: 14px;
      }

      .product-card .cta .whatsapp-btn {
        min-height: 44px;
        padding: 10px 12px;
        font-size: 9px;
        gap: 7px;
      }

      .product-card .cta .whatsapp-btn svg {
        width: 14px;
        height: 14px;
      }

      .pulse-dot {
        width: 6px;
        height: 6px;
      }

      .product-card .badges-container {
        top: 6px;
        left: 6px;
        right: 6px;
        gap: 4px;
      }

      .recommended-badge,
      .save-badge {
        font-size: 7px;
        padding: 2px 5px;
      }

      .product-card .product-name {
        font-size: 13px;
        line-height: 1.3;
      }

      .product-card .product-subtext {
        font-size: 9px;
      }

      .product-card .new-price {
        font-size: 14px;
        color: #FFFFFF !important;
        font-weight: 900;
      }
      
      .product-card .price-installment {
        font-size: 14px;
        color: #FFFFFF !important;
        font-weight: 800;
      }
      
      .carousel {
        gap: 16px;
        padding: 16px 5% 20px;
      }
      .product-card {
        flex: 0 0 90% !important;
        min-width: 90% !important;
        max-width: 90%;
        padding: 12px;
        gap: 10px;
        border-radius: 12px;
      }
      .product-card figure {
        padding: 0;
        min-height: 120px;
      }
      .product-card figure img {
        max-height: 140px;
        object-fit: contain;
      }
      .product-card .cta .pix-btn,
      .product-card .cta .whatsapp-btn {
        height: auto;
        font-size: 10px;
        padding: 10px 12px;
      }
      .product-card .product-name {
        font-size: 0.85rem;
        line-height: 1.3;
      }
      .product-card .product-price {
        font-size: 0.8rem;
      }
      .product-card .new-price {
        font-size: 0.9rem;
        color: #FFFFFF !important;
        font-weight: 900;
      }
      .product-card .price-installment {
        font-size: 1rem;
        color: #FFFFFF !important;
        font-weight: 800;
      }
      .whatsapp-btn,
      .pix-btn {
        min-height: 50px;
      }
      .modal-card {
        padding: 16px;
        gap: 14px;
      }
      .modal-card p {
        font-size: 0.95rem;
      }
      .coupon-grid {
        grid-template-columns: 1fr;
      }
      .coupon-card {
        padding: 12px;
      }
      #shippingForm input {
        padding: 12px 14px;
        font-size: 1rem;
      }
      #shippingForm label {
        font-size: 0.95rem;
      }
      .error-text {
        font-size: 0.85rem;
      }
      #submitAddressBtn {
        min-height: 50px;
      }
    .meta-footer {
      padding: 14px 12px;
      font-size: 0.73rem;
      text-align: center;
      background: linear-gradient(180deg, #0F172A 0%, #020617 100%);
      color: #e2e8f0;
      border-top: 1px solid rgba(226,232,240,0.14);
    }
      .meta-footer .meta-footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
      }
    }

    @media (min-width: 768px) {
      .logo-text {
        font-size: 1.4rem;
      }

      .hero {
        padding-top: 28px;
      }

      .hero figure {
        padding: 18px;
      }

      .product-info h1 {
        font-size: 2.4rem;
      }

      .product-info p {
        font-size: 1.05rem;
      }

      .carousel-shell {
        padding-left: 0;
        padding-right: 0;
        overflow: hidden !important;
      }

      .carousel {
        gap: 14px;
        padding: 6px 0 8px;
      }
      
      .product-card {
        flex: 0 0 calc(33.333% - 10px);
        min-width: calc(33.333% - 10px);
        max-width: calc(33.333% - 10px);
        margin-left: 0;
        margin-right: 0;
        flex-shrink: 0;
      }
      
      .product-card:not(.is-active) {
        opacity: 0.3 !important;
        transform: scale(0.85) !important;
        filter: blur(1.5px);
      }
      
      .product-card.is-active {
        opacity: 1 !important;
        transform: scale(1) !important;
        filter: blur(0);
      }

      .featured-card {
        grid-template-columns: 1fr 1fr;
        align-items: center;
        flex: 0 0 48%;
        min-width: 48%;
      }
    }
    /* FIM RESPONSIVIDADE */
    /* --------------------------- */
  
