   /* ============================================================
       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: #091B0D;
      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: #A23A1D; }

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

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

    .nav-cta:hover { background: #8a2f15; }

    .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: #091B0D;
      padding: 60px 0;
    }

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

    /* 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: #A23A1D;
      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: stretch;
    }

    /* Card de pacote */
    .pkg-card {
      background: #fff;
      border: 2px solid #d0d0d0;
      border-radius: 14px;
      overflow: hidden;
      display: flex;
      height: 100%;
      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: #091B0D;
      background: #fffcc3;
    }

    .pkg-card-header {
      background: #626f72;
      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: #091B0D;
    }

    .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: #317483;
      text-align: center;
      line-height: 1;
    }

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

    .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: #317483;
      text-align: center;
      line-height: 1;
    }

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

    .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: #317483; }
    .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: #0e6478;
      text-shadow: -1px 1px 1px #fff;
    }

    .pkg-btn-cart {
      background: #52adc0;
      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: #091B0D;
      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;
    }

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

    /* ============================================================
       BONUS
    ============================================================ */
    .bonus-section {
      background: #091B0D;
      padding: 72px 0;
    }

    .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 #84e7ff;
      border-radius: 12px;
      width: 100%;
      object-fit: cover;
    }

    .bonus-card-number {
      font-family: 'Oswald', sans-serif;
      font-size: 13px;
      font-weight: 700;
      color: #84e7ff;
      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;
    }

    /* ============================================================
       FREE SHIPPING BANNER
    ============================================================ */
    .shipping-banner {
      background: #A23A1D;
      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: #A23A1D;
      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: #091B0D;
      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: 72px 0;
      background: #f9f9f9;
    }

    .ingredients-title {
      font-family: 'Oswald', sans-serif;
      font-size: clamp(22px, 3.5vw, 34px);
      font-weight: 700;
      color: #1a1a1a;
      margin-bottom: 10px;
    }

    .ingredients-subtitle {
      font-size: 17px;
      color: #444;
      margin-bottom: 36px;
    }

    .ingredients-subtitle b { color: #1a1a1a; }

    .ingredients-row {
      display: flex;
      justify-content: center;
      gap: 40px;
      flex-wrap: wrap;
      margin-bottom: 48px;
    }

    .ingredient-card {
      display: flex;
      flex-direction: column;
      gap: 12px;
      width: calc(50% - 20px);
      max-width: 420px;
    }

    .ingredient-card img {
      border: 3px solid #ddd;
      border-radius: 12px;
      width: 100%;
      max-width: 260px;
      max-height: 260px;
      object-fit: cover;
      align-self: center;
    }

    .ingredient-name {
      font-family: 'Oswald', sans-serif;
      font-size: 22px;
      font-weight: 600;
      color: #1a1a1a;
      text-align: center;
    }

    .ingredient-list {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .ingredient-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      color: #444;
    }

    .ingredient-item .chk {
      width: 18px;
      height: 18px;
      min-width: 18px;
    }

    /* ============================================================
       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;
    }

    /* ============================================================
       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: #091B0D;
    }

    .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: #091B0D;
    }

    /* ============================================================
       FAQ
    ============================================================ */
    .faq-section {
      background: #091B0D;
      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: 800px;
      margin: 0 auto;
    }

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

    .references-label {
      font-size: 13px;
      font-weight: 700;
      color: #aaa;
      text-align: center;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 20px;
    }

    .references-logos {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      align-items: center;
      justify-items: center;
      margin-bottom: 12px;
    }

    .references-logos img { max-height: 60px; width: auto; }

    .references-disclaimer {
      font-size: 12px;
      color: #bbb;
      text-align: center;
      margin-bottom: 24px;
    }

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

    .references-cols p {
      font-size: 12px;
      color: #aaa;
      line-height: 1.65;
      margin-bottom: 10px;
    }

    /* ============================================================
       FOOTER
    ============================================================ */
    .site-footer {
      background: #091B0D;
      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-row { flex-direction: column; align-items: center; }
      .ingredient-card { width: 100%; }
      .benefits-grid { grid-template-columns: repeat(2, 1fr); }
      .references-logos { grid-template-columns: repeat(2, 1fr); }
      .testimonial-item { flex-direction: column; }
    }

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