   /* ============================================================
       RESET & BASE
    ============================================================ */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

    body {
      font-family: 'Nunito Sans', sans-serif;
      font-size: 17px;
      line-height: 1.7;
      color: #1a1a1a;
      background: #fff;
      -webkit-font-smoothing: antialiased;
    }

    img { max-width: 100%; height: auto; display: block; }
    a { text-decoration: none; color: inherit; }

    /* ============================================================
       UTILITIES
    ============================================================ */
    .container {
      width: 100%;
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .text-center { text-align: center; }
    .white { color: #fff; }

    /* ============================================================
       NAVBAR — sticky, limpa, sombra suave
    ============================================================ */
    .navbar {
      position: sticky;
      top: 0;
      z-index: 300;
      background: #fff;
      border-bottom: 1px solid #e8e8e8;
      box-shadow: 0 2px 10px rgba(0,0,0,0.07);
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 62px;
      gap: 20px;
    }

    .nav-logo {
      font-family: 'Oswald', sans-serif;
      font-size: 26px;
      font-weight: 700;
      color: #5C1530;
      letter-spacing: 1px;
      text-decoration: none;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      list-style: none;
    }

    .nav-links a {
      font-size: 14px;
      font-weight: 600;
      color: #333;
      transition: color 0.2s;
    }

    .nav-links a:hover { color: #B91349; }

    .nav-links a b { color: #B91349; }

    .nav-cta {
      display: flex;
      align-items: center;
      gap: 8px;
      background: #B91349;
      color: #fff !important;
      font-size: 13px;
      font-weight: 700;
      padding: 9px 18px;
      border-radius: 6px;
      transition: background 0.2s;
    }

    .nav-cta:hover { background: #7C0F35; }

    .nav-cta svg { width: 16px; height: 16px; }

    /* Mobile hamburger */
    .nav-hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
      background: none;
      border: none;
    }

    .nav-hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: #333;
      border-radius: 2px;
      transition: all 0.3s;
    }

    /* ============================================================
       HERO — dark green, produto + copy
    ============================================================ */
    .hero {
      background-color: #5C1530;
      padding: 60px 0;
    }

    .hero-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
    }

    .hero-inner-simple {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 32px;
    }

    .hero-inner-simple .hero-product-img {
      max-height: 380px;
    }

    .hero-inner-simple .hero-cta-btn {
      max-width: 420px;
    }

    /* Coluna esquerda: imagem + depoimentos */
    .hero-left {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 24px;
    }

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

    .hero-comments {
      display: flex;
      flex-direction: column;
      gap: 14px;
      width: 100%;
    }

    .hero-comment {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 10px;
      padding: 12px 14px;
    }

    .hero-comment-avatar {
      width: 46px;
      height: 46px;
      min-width: 46px;
      border-radius: 50%;
      object-fit: cover;
      object-position: 50% 0%;
      border: 2px solid rgba(255,255,255,0.2);
    }

    .hero-comment-body { flex: 1; }

    .hero-comment-stars {
      color: #f59e0b;
      font-size: 12px;
      letter-spacing: 1px;
      margin-bottom: 4px;
    }

    .hero-comment-text {
      font-size: 13px;
      color: rgba(255,255,255,0.85);
      line-height: 1.5;
      font-style: italic;
    }

    .hero-comment-author {
      font-size: 12px;
      color: rgba(255,255,255,0.55);
      margin-top: 4px;
    }

    .hero-comment-author b { color: rgba(255,255,255,0.75); }

    /* Coluna direita: copy */
    .hero-right {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .hero-title {
      font-family: 'Oswald', sans-serif;
      font-size: clamp(38px, 5vw, 64px);
      font-weight: 700;
      color: #fff;
      line-height: 1.05;
    }

    .hero-subtitle {
      font-size: 19px;
      font-weight: 400;
      color: rgba(255,255,255,0.82);
      line-height: 1.5;
    }

    .hero-subtitle b { color: #fff; }

    .hero-cta-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      background: #e8321c;
      color: #fff;
      font-size: 18px;
      font-weight: 700;
      padding: 16px 32px;
      border-radius: 8px;
      margin-top: 8px;
      max-width: 360px;
      animation: cta-pulse 2s ease-in-out infinite;
      transition: background 0.2s;
    }

    .hero-cta-btn:hover { background: #c4280f; animation: none; }

    @keyframes cta-pulse {
      0%, 100% { box-shadow: 0 3px 12px rgba(232,50,28,0.3); transform: scale(1); }
      50% { box-shadow: 0 0 0 8px rgba(232,50,28,0.1), 0 3px 14px rgba(232,50,28,0.35); transform: scale(1.008); }
    }

    /* ============================================================
       CLAIM BANNER
    ============================================================ */
    .claim-banner {
      background: #B91349;
      padding: 28px 24px;
    }

    .claim-banner h2 {
      font-family: 'Oswald', sans-serif;
      font-size: clamp(22px, 4vw, 36px);
      font-weight: 700;
      color: #fff;
      line-height: 1.2;
    }

    /* ============================================================
       PACKAGES SECTION
    ============================================================ */
    .packages-section {
      background: #f0f2f0;
      padding: 0 0 56px;
    }

    /* Triângulo decorativo */
    .packages-triangle {
      width: 100%;
      overflow: hidden;
      line-height: 0;
    }

    .packages-triangle svg {
      display: block;
      width: 100%;
    }

    .packages-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 20px;
      margin-top: 28px;
      align-items: start;
    }

    /* Card de pacote */
    .pkg-card {
      background: #fff;
      border: 2px solid #5C1530;
      border-radius: 14px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      text-decoration: none;
      color: #1a1a1a;
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .pkg-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    }

    .pkg-card.featured {
      border-color: #5C1530;
      background: #FCE4EC;
    }

    .pkg-card-header {
      background: #B91349;
      padding: 10px 16px;
      text-align: center;
    }

    .pkg-card-header h4 {
      font-family: 'Oswald', sans-serif;
      font-size: 16px;
      font-weight: 600;
      color: #fff;
      letter-spacing: 1px;
    }

    .pkg-card.featured .pkg-card-header {
      background: #5C1530;
    }

    .pkg-card-body {
      padding: 20px;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .pkg-qty {
      font-family: 'Oswald', sans-serif;
      font-size: 38px;
      font-weight: 700;
      color: #5C1530;
      text-align: center;
      line-height: 1;
    }

    .pkg-card.featured .pkg-qty { color: #B91349; }

    .pkg-supply {
      font-size: 14px;
      font-weight: 600;
      color: #555;
      text-align: center;
      margin-top: 2px;
    }

    .pkg-product-img {
      max-height: 180px;
      width: auto;
      object-fit: contain;
      margin: 0 auto;
    }

    .pkg-price {
      font-family: 'Oswald', sans-serif;
      font-size: 72px;
      font-weight: 700;
      color: #5C1530;
      text-align: center;
      line-height: 1;
    }

    .pkg-card.featured .pkg-price { color: #B91349; }

    .pkg-price-per {
      font-size: 14px;
      color: #666;
      text-align: center;
      margin-top: 2px;
    }

    .pkg-badges {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .pkg-badge {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-size: 14px;
      font-weight: 700;
    }

    .pkg-badge-icon {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
    }

    .pkg-badge.green { color: #5C1530; }
    .pkg-badge.red { color: #ba1e21; }

    /* Botão BUY NOW */
    .pkg-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      background: linear-gradient(180deg, #fbff56 48%, #fcd838 52%);
      border: 2px solid #ecbf33;
      border-radius: 10px;
      padding: 12px 16px;
      box-shadow: 0 0 0 2px #d4af3b;
      cursor: pointer;
      transition: opacity 0.2s;
    }

    .pkg-btn:hover { opacity: 0.9; }

    .pkg-btn-text {
      font-family: 'Oswald', sans-serif;
      font-size: 22px;
      font-weight: 700;
      color: #5C1530;
      text-shadow: -1px 1px 1px #fff;
    }

    .pkg-btn-cart {
      background: #B91349;
      border-radius: 50%;
      width: 44px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      padding: 9px;
    }

    .pkg-btn-cart svg { width: 100%; height: 100%; }

    .pkg-hand {
      align-self: flex-end;
      max-width: 44px;
      margin-top: -26px;
    }

    .pkg-cards-img {
      max-width: 100%;
      margin: 0 auto;
    }

    /* ============================================================
       GUARANTEE
    ============================================================ */
    .guarantee-section {
      background: #fff;
      padding: 72px 0;
      border-top: 1px solid #eee;
      border-bottom: 1px solid #eee;
    }

    .guarantee-inner {
      display: flex;
      flex-direction: column;
      gap: 28px;
    }

    .guarantee-title {
      font-family: 'Oswald', sans-serif;
      font-size: clamp(24px, 4vw, 38px);
      font-weight: 700;
      color: #5C1530;
      line-height: 1.15;
    }

    .guarantee-body {
      display: flex;
      align-items: center;
      gap: 28px;
    }

    .guarantee-seal {
      width: 160px;
      min-width: 160px;
      height: 160px;
      object-fit: contain;
    }

    .guarantee-text {
      font-size: 17px;
      line-height: 1.7;
      color: #333;
    }

    .guarantee-fda {
      max-width: 680px;
      margin: 0 auto;
      width: 100%;
    }

    .guarantee-made {
      font-size: 16px;
      color: #444;
    }

    /* ============================================================
       BONUS
    ============================================================ */
    .bonus-section {
      position: relative;
      background: #5C1530 url('../images/bg-ebook.webp') center / cover no-repeat;
      padding: 72px 0;
    }
    .bonus-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(16,18,21,0.85) 0%, rgba(92,21,48,0.65) 100%);
      pointer-events: none;
    }
    .bonus-section .container {
      position: relative;
      z-index: 1;
    }

    .bonus-title {
      font-family: 'Oswald', sans-serif;
      font-size: clamp(24px, 4vw, 40px);
      font-weight: 700;
      color: #fff;
      line-height: 1.2;
      margin-bottom: 36px;
    }

    .bonus-title .highlight { color: #ff0; }
    .bonus-title .underline { color: #ff0; text-decoration: underline; }

    .bonus-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 28px;
    }

    .bonus-card {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .bonus-card img {
      border: 3px solid #F8BBD0;
      border-radius: 12px;
      width: 100%;
      object-fit: cover;
    }

    .bonus-card-number {
      font-family: 'Oswald', sans-serif;
      font-size: 13px;
      font-weight: 700;
      color: #F8BBD0;
      letter-spacing: 1.5px;
      text-transform: uppercase;
    }

    .bonus-card-title {
      font-family: 'Oswald', sans-serif;
      font-size: 26px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 4px;
    }

    .bonus-card-text {
      font-size: 15px;
      font-weight: 500;
      color: rgba(255,255,255,0.78);
      line-height: 1.6;
    }

    .bonus-intro {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 14px;
      color: #fff;
    }

    .bonus-intro-title {
      font-family: 'Oswald', sans-serif;
      font-size: 28px;
      font-weight: 700;
      color: #fff;
      line-height: 1.25;
    }

    .bonus-intro-text {
      font-size: 17px;
      font-weight: 500;
      color: rgba(255,255,255,0.88);
      line-height: 1.6;
    }

    .bonus-card-caption {
      font-family: 'Oswald', sans-serif;
      font-size: 20px;
      font-weight: 700;
      color: #fff;
      text-align: center;
      line-height: 1.3;
    }
    .bonus-card-caption span {
      font-family: 'Nunito Sans', sans-serif;
      font-size: 15px;
      font-weight: 500;
      color: rgba(255,255,255,0.82);
    }

    .bonus-card-disclaimer {
      font-size: 13px;
      color: rgba(255,255,255,0.7);
      text-align: center;
      margin-top: 6px;
    }

    .bonus-cta-wrap {
      text-align: center;
      margin-top: 36px;
    }

    .bonus-cta {
      display: inline-block;
      background: #ff0;
      color: #5C1530;
      font-family: 'Oswald', sans-serif;
      font-size: 22px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 16px 56px;
      border-radius: 8px;
      box-shadow: 0 4px 0 #d4af3b;
      transition: transform 0.15s ease, box-shadow 0.15s ease;
    }
    .bonus-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 0 #d4af3b;
    }

    /* ============================================================
       FREE SHIPPING BANNER
    ============================================================ */
    .shipping-banner {
      background: #B91349;
      padding: 32px 0;
    }

    .shipping-inner {
      display: flex;
      align-items: center;
      gap: 24px;
      justify-content: space-between;
    }

    .shipping-icon { max-height: 90px; }

    .shipping-content {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .shipping-title {
      font-family: 'Oswald', sans-serif;
      font-size: clamp(20px, 3vw, 30px);
      font-weight: 700;
      color: #fff;
    }

    .shipping-sub {
      font-size: 15px;
      font-weight: 500;
      color: rgba(255,255,255,0.85);
    }

    .shipping-sub span { color: #a8ffc4; font-weight: 700; }

    /* ============================================================
       SCIENTIFIC DISCOVERY
    ============================================================ */
    .science-section {
      padding: 72px 0;
      background: #fff;
    }

    .science-inner {
      display: flex;
      flex-direction: column;
      gap: 22px;
    }

    .science-label {
      font-size: 14px;
      font-weight: 700;
      color: #B91349;
      text-transform: uppercase;
      letter-spacing: 1.5px;
    }

    .science-title {
      font-family: 'Oswald', sans-serif;
      font-size: clamp(22px, 3.5vw, 36px);
      font-weight: 700;
      color: #1a1a1a;
      line-height: 1.2;
    }

    .science-subtitle {
      font-family: 'Oswald', sans-serif;
      font-size: clamp(20px, 3vw, 32px);
      font-weight: 500;
      color: #333;
      font-style: italic;
      line-height: 1.25;
    }

    .science-intro {
      font-size: 17px;
      color: #444;
      line-height: 1.75;
    }

    .science-content {
      display: grid;
      grid-template-columns: 2fr 3fr;
      gap: 32px;
      align-items: start;
    }

    .science-content img { border-radius: 10px; width: 100%; }

    .science-body {
      font-size: 17px;
      color: #333;
      line-height: 1.75;
    }

    .science-body b { color: #1a1a1a; }

    .science-full {
      font-size: 17px;
      color: #333;
      line-height: 1.75;
    }

    .science-full b { color: #1a1a1a; }

    .science-ref {
      font-size: 12px;
      color: #aaa;
      line-height: 1.6;
    }

    /* ============================================================
       PRODUCT INTRO
    ============================================================ */
    .product-section {
      background: #5C1530;
      padding: 72px 0;
    }

    .product-eyebrow {
      font-size: 16px;
      font-weight: 400;
      color: rgba(255,255,255,0.7);
      text-align: center;
      margin-bottom: 6px;
    }

    .product-title {
      font-family: 'Oswald', sans-serif;
      font-size: clamp(40px, 6vw, 65px);
      font-weight: 700;
      color: #fff;
      text-align: center;
      margin-bottom: 40px;
    }

    .product-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
    }

    .product-inner img { width: 100%; border-radius: 10px; }

    .product-copy {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .product-copy h2 {
      font-family: 'Oswald', sans-serif;
      font-size: clamp(22px, 3vw, 30px);
      font-weight: 500;
      color: #fff;
      line-height: 1.3;
    }

    .product-copy h2 b { font-weight: 700; }

    .product-copy p {
      font-size: 17px;
      font-weight: 500;
      color: rgba(255,255,255,0.78);
      line-height: 1.7;
    }

    /* ============================================================
       INGREDIENTS
    ============================================================ */
    .ingredients-section {
      padding: 64px 0;
      background: #eaf5f8;
    }

    .ingredients-title {
      font-family: 'Oswald', sans-serif;
      font-size: clamp(28px, 4vw, 40px);
      font-weight: 700;
      color: #1a1a1a;
      line-height: 1.2;
      margin-bottom: 12px;
    }

    .ingredients-subtitle {
      font-size: 16px;
      color: #555;
      margin-bottom: 40px;
    }

    .ingredients-layout {
      display: grid;
      grid-template-columns: 1.4fr 1fr;
      gap: 40px;
      align-items: center;
    }

    .ingredients-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 24px;
    }

    .ingredient-tile {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 6px;
    }

    .ingredient-thumb-wrap {
      background: #FCE4EC;
      border-radius: 20px;
      padding: 14px;
      display: inline-block;
      margin-bottom: 4px;
    }

    .ingredient-thumb {
      width: 110px;
      height: 100px;
      object-fit: cover;
      border-radius: 10px;
      display: block;
    }

    .ingredient-tile-name {
      font-family: 'Oswald', sans-serif;
      font-size: 18px;
      font-weight: 700;
      color: #1a1a1a;
      margin-top: 4px;
      line-height: 1.2;
    }

    .ingredient-tile-sub {
      font-size: 13px;
      color: #555;
      line-height: 1.4;
    }

    .ingredients-bottle {
      display: flex;
      justify-content: center;
      align-items: center;
      background: #2a1330;
      border-radius: 20px;
      padding: 24px;
      min-height: 380px;
    }

    .ingredients-bottle img {
      max-height: 360px;
      width: auto;
      object-fit: contain;
    }

    /* ============================================================
       BENEFITS STRIP
    ============================================================ */
    .benefits-strip {
      background: #eee;
      border-top: 3px solid #e0e0e0;
      padding: 48px 0;
    }

    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 16px;
    }

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

    .benefit-icon-wrap {
      background: #fff;
      border-radius: 50%;
      width: 64px;
      height: 64px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      padding: 12px;
    }

    .benefit-icon-wrap svg { width: 100%; height: 100%; }

    .benefit-label {
      font-size: 13px;
      font-weight: 700;
      color: #333;
      line-height: 1.3;
    }

    /* ============================================================
       WELLNESS — Daily Wellness & Energy
    ============================================================ */
    .wellness-section {
      padding: 72px 0;
      background: #fff;
    }

    .wellness-inner {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 48px;
      align-items: center;
    }

    .wellness-img-wrap {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .wellness-img {
      width: 100%;
      max-width: 490px;
      height: auto;
      border-radius: 20px;
      object-fit: cover;
    }

    .wellness-content {
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .wellness-title {
      font-family: 'Oswald', sans-serif;
      font-size: clamp(22px, 2.6vw, 30px);
      font-weight: 700;
      color: #1a1a1a;
      line-height: 1.25;
    }

    .wellness-text {
      font-size: 16px;
      color: #444;
      line-height: 1.6;
    }

    .wellness-cta {
      align-self: flex-start;
      display: inline-block;
      background: #B91349;
      color: #fff;
      font-family: 'Oswald', sans-serif;
      font-size: 18px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 14px 36px;
      border-radius: 8px;
      transition: background 0.2s, transform 0.15s;
    }
    .wellness-cta:hover {
      background: #7C0F35;
      transform: translateY(-2px);
    }

    /* ============================================================
       TESTIMONIALS (users)
    ============================================================ */
    .testimonials-section {
      padding: 72px 0;
      background: #fff;
    }

    .testimonials-title {
      font-family: 'Oswald', sans-serif;
      font-size: clamp(24px, 4vw, 38px);
      font-weight: 700;
      color: #1a1a1a;
      margin-bottom: 40px;
    }

    .testimonial-item {
      display: flex;
      gap: 24px;
      align-items: flex-start;
      padding: 28px 0;
      border-bottom: 1px solid #f0f0f0;
    }

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

    .testimonial-avatar {
      width: 74px;
      height: 74px;
      min-width: 74px;
      border-radius: 50%;
      object-fit: cover;
      border: 4px solid #e0e0e0;
    }

    .testimonial-body {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .testimonial-result {
      font-family: 'Oswald', sans-serif;
      font-size: 22px;
      font-weight: 700;
      color: #5C1530;
    }

    .testimonial-stars {
      font-size: 14px;
      color: #f59e0b;
      letter-spacing: 1px;
    }

    .testimonial-quote-icon {
      width: 28px;
      height: auto;
    }

    .testimonial-text {
      font-size: 16px;
      color: #444;
      line-height: 1.7;
      font-style: italic;
    }

    .testimonial-product {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-top: 4px;
    }

    .testimonial-product img {
      width: 80px;
      height: 80px;
      object-fit: contain;
    }

    .testimonial-product-text {
      font-size: 14px;
      color: #555;
      line-height: 1.5;
    }

    .testimonial-product-text span {
      display: block;
      font-weight: 700;
      color: #5C1530;
    }

    /* ============================================================
       COMPARISON — Glucolyn vs The Rest
    ============================================================ */
    .comparison-section {
      padding: 72px 0;
      background: #eaf5f8;
    }

    .comparison-inner {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 48px;
      align-items: center;
      background: #fff;
      border-radius: 20px;
      padding: 32px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    }

    .comparison-img-wrap {
      display: flex;
      justify-content: center;
      align-items: center;
      background: linear-gradient(135deg, #FCE4EC, #F8BBD0);
      border-radius: 20px;
      padding: 24px;
    }

    .comparison-img {
      max-width: 100%;
      max-height: 380px;
      width: auto;
      object-fit: contain;
    }

    .comparison-title {
      font-family: 'Oswald', sans-serif;
      font-size: clamp(28px, 4vw, 40px);
      font-weight: 700;
      color: #1a1a1a;
      line-height: 1.2;
      margin-bottom: 20px;
      text-align: left;
    }

    .comparison-table {
      width: 100%;
      border-collapse: separate;
      border-spacing: 0;
      border-radius: 14px;
      overflow: hidden;
      background: #fff;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }

    .comparison-table thead th {
      background: #f5f5f5;
      color: #1a1a1a;
      font-family: 'Oswald', sans-serif;
      font-size: 16px;
      font-weight: 700;
      padding: 14px 12px;
      text-align: center;
      border-bottom: 1px solid #e8e8e8;
    }

    .comparison-table thead th.comparison-glucolyn {
      background: #5C1530;
      color: #fff;
    }

    .comparison-table .comparison-others {
      color: #777;
      font-weight: 600;
      font-size: 14px;
      line-height: 1.2;
    }

    .comparison-table tbody td {
      padding: 14px 12px;
      font-size: 15px;
      color: #333;
      text-align: center;
      border-bottom: 1px solid #f0f0f0;
    }

    .comparison-table tbody td:first-child {
      text-align: left;
      font-weight: 600;
      color: #1a1a1a;
    }

    .comparison-table tbody td.comparison-glucolyn {
      background: #FCE4EC;
      font-size: 18px;
    }

    .comparison-table tbody tr:last-child td { border-bottom: none; }

    /* ============================================================
       FAQ
    ============================================================ */
    .faq-section {
      background: #5C1530;
      padding: 72px 0;
    }

    .faq-title {
      font-family: 'Oswald', sans-serif;
      font-size: clamp(26px, 4vw, 40px);
      font-weight: 700;
      color: #fff;
      margin-bottom: 40px;
    }

    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .faq-item {}

    .faq-question {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      background: #fff;
      border-radius: 10px;
      padding: 14px 18px;
      cursor: pointer;
      user-select: none;
    }

    .faq-question h3 {
      font-family: 'Nunito Sans', sans-serif;
      font-size: 17px;
      font-weight: 700;
      color: #1a1a1a;
      line-height: 1.3;
    }

    .faq-arrow {
      width: 22px;
      min-width: 22px;
      transition: transform 0.3s;
    }

    .faq-answer {
      display: none;
      padding: 18px 20px;
      font-size: 16px;
      font-weight: 500;
      color: rgba(255,255,255,0.82);
      line-height: 1.7;
      border-left: 3px solid rgba(255,255,255,0.1);
      margin-left: 8px;
    }

    .faq-item.open .faq-answer { display: block; }
    .faq-item.open .faq-arrow { transform: rotate(180deg); }

    /* ============================================================
       LABEL
    ============================================================ */
    .label-section {
      padding: 72px 0;
      background: #fff;
    }

    .label-img {
      max-width: 1000px;
      width: 100%;
      margin: 0 auto;
      border-radius: 20px;
    }

    /* ============================================================
       REFERENCES
    ============================================================ */
    .references-section {
      padding: 64px 0;
      background: #fff;
    }

    .references-title {
      font-family: 'Oswald', sans-serif;
      font-size: clamp(28px, 4vw, 40px);
      font-weight: 700;
      color: #1a1a1a;
      line-height: 1.2;
      margin-bottom: 24px;
    }

    .references-logos {
      display: flex;
      justify-content: center;
      align-items: center;
      max-width: 720px;
      margin: 0 auto 16px;
    }

    .references-logos img,
    .references-logos picture {
      max-width: 100%;
      height: auto;
    }

    .references-disclaimer {
      font-size: 14px;
      color: #777;
      text-align: center;
      margin-bottom: 32px;
      padding: 0 16px;
    }

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

    .reference-list {
      font-size: 13px;
      color: #555;
      line-height: 1.6;
      padding-left: 22px;
      margin: 0;
    }

    .reference-list li {
      margin-bottom: 10px;
    }

    /* ============================================================
       FOOTER
    ============================================================ */
    .site-footer {
      background: #5C1530;
      padding: 40px 0;
    }

    .footer-links {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 24px;
      list-style: none;
      margin-bottom: 20px;
    }

    .footer-links a {
      font-size: 13px;
      font-weight: 600;
      color: rgba(255,255,255,0.65);
      transition: color 0.2s;
    }

    .footer-links a:hover { color: #fff; }

    .footer-disclaimer {
      font-size: 11px;
      color: rgba(255,255,255,0.35);
      line-height: 1.7;
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
    }

    .footer-disclaimer b { color: rgba(255,255,255,0.5); }

    /* ============================================================
       CART SVG (reutilizável)
    ============================================================ */
    .cart-svg { width: 100%; height: 100%; }

    /* ============================================================
       RESPONSIVO
    ============================================================ */
    @media (max-width: 991px) {
      .nav-links { display: none; }
      .nav-hamburger { display: flex; }
      .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 62px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 20px 24px;
        border-bottom: 1px solid #eee;
        z-index: 400;
        gap: 16px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
      }

      .hero-inner { grid-template-columns: 1fr; }
      .hero-comments { display: none; }
      .hero-right { text-align: center; align-items: center; }

      .bonus-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
      .benefits-grid { grid-template-columns: repeat(3, 1fr); }
      .science-content { grid-template-columns: 1fr; }
      .product-inner { grid-template-columns: 1fr; }
      .references-cols { grid-template-columns: 1fr; }
    }

    @media (max-width: 767px) {
      .packages-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; margin-top: 28px; }
      .guarantee-body { flex-direction: column; align-items: center; text-align: center; }
      .shipping-inner { flex-direction: column; text-align: center; }
      .ingredients-layout { grid-template-columns: 1fr; gap: 28px; }
      .ingredients-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
      .ingredients-bottle { min-height: 280px; }
      .ingredients-bottle img { max-height: 260px; }
      .benefits-grid { grid-template-columns: repeat(2, 1fr); }
      .testimonial-item { flex-direction: column; }
      .wellness-inner { grid-template-columns: 1fr; gap: 28px; }
      .wellness-cta { align-self: stretch; text-align: center; }
      .comparison-inner { grid-template-columns: 1fr; gap: 24px; padding: 20px; }
      .comparison-title { text-align: center; }
      .comparison-table thead th,
      .comparison-table tbody td { padding: 10px 8px; font-size: 13px; }
      .comparison-table tbody td.comparison-glucolyn { font-size: 16px; }
    }

    @media (max-width: 479px) {
      .benefits-grid { grid-template-columns: 1fr; }
      .hero-cta-btn { max-width: 100%; }
      .ingredients-grid { grid-template-columns: 1fr; gap: 16px; }
    }
