/* ──────────────── Reset & Base ──────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --purple:   #7d308a;
      --green:    #90bd53;
      --green-bg: #a2d45e;
      --dark:     #373737;
      --cream:    #fdf5e6;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: "trade-gothic-next", "Trade Gothic Next LT Pro", Arial, Helvetica, sans-serif;
      color: var(--dark);
      overflow-x: hidden;
    }

    /* ──────────────── Shared helpers ──────────────── */
    .purple { color: var(--purple) !important; }
    .green { color: var(--green) !important; }
    .dark { color: var(--dark) !important; }
    .desktop-only { display: revert; }

    .btn-green {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--green);
      color: #fff;
      border: none;
      border-radius: 50px;
      padding: 14px 28px;
      font-size: 18px;
      font-weight: 600;
      cursor: pointer;
      white-space: nowrap;
      text-decoration: none;
      transition: background 0.2s;
    }

    .hero__content .btn-green:hover {
      background: var(--purple);
    }

    .btn-purple {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--purple);
      color: #fff;
      border: none;
      border-radius: 50px;
      padding: 14px 32px;
      font-size: 18px;
      font-weight: 600;
      cursor: pointer;
      white-space: nowrap;
      text-decoration: none;
      transition: background 0.2s;
    }

    .btn-purple:hover {
      background: var(--green);
    }

    /* ──────────────── NAVBAR ──────────────── */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 100;
      padding: 10px 16px;
    }

    .navbar__inner {
      max-width: 1300px;
      margin: 0 auto;
      background: rgba(255, 255, 255, 0.38);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.35);
      border-radius: 50px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 30px 10px 24px;
      gap: 12px;
    }

    .navbar__logo {
      display: flex;
      align-items: center;
      flex-shrink: 0;
    }

    .navbar__logo img {
      margin: 14px 0px 8px 30px;
      height: 47px;
      width: auto;
      display: block;
    }

    .navbar__links {
      display: flex;
      align-items: center;
      gap: 40px;
      list-style: none;
      flex: 1;
      justify-content: right;
    }

    .navbar__links li:last-child {
      flex-shrink: 0;
    }

    .navbar__links a {
      color: var(--purple);
      text-decoration: none;
      font-size: 18px;
      font-weight: 400;
      white-space: nowrap;
      letter-spacing: 0.01em;
    }

    .navbar__links a:hover { text-decoration: underline; }

    .navbar__cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--green);
      color: #fff !important;
      text-decoration: none !important;
      border-radius: 50px;
      padding: 16px 28px;
      font-size: 26px !important;
      font-weight: 600;
      white-space: nowrap;
      letter-spacing: 0.01em;
      transition: background 0.2s;
    }

    .navbar__cta:hover {
      background: var(--purple);
      text-decoration: none !important;
    }

    /* Hamburger – hidden on desktop */
    .navbar__burger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 6px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 6px;
      flex-shrink: 0;
    }

    .navbar__burger span {
      display: block;
      width: 26px;
      height: 2.5px;
      background: var(--purple);
      border-radius: 2px;
    }

    /* ──────────────── MOBILE MENU ──────────────── */
    .mobile-menu {
      display: flex;
      position: fixed;
      inset: 0;
      z-index: 200;
      background: rgba(0, 0, 0, 0.35);
      padding: 14px 14px 0;
      align-items: flex-start;
      justify-content: stretch;
      visibility: hidden;
      opacity: 0;
    }

    .mobile-menu__card {
      background: #fff;
      border-radius: 24px;
      padding: 24px 24px 28px;
      width: 100%;
    }

    .mobile-menu__header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 28px;
    }

    .mobile-menu__logo img {
      height: 38px;
      width: auto;
      display: block;
    }

    .mobile-menu__close {
      background: none;
      border: none;
      font-size: 22px;
      color: var(--purple);
      cursor: pointer;
      line-height: 1;
      padding: 4px;
    }

    .mobile-menu__links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 24px;
      margin-bottom: 28px;
    }

    .mobile-menu__links li a {
      color: var(--purple);
      text-decoration: none;
      font-size: 22px;
      font-weight: 400;
    }

    .mobile-menu__cta {
      width: 100%;
      display: flex;
      justify-content: center;
      font-size: 20px;
      padding: 16px 24px;
    }

    /* ──────────────── HERO ──────────────── */
    .hero {
      position: relative;
      width: 100%;
      min-height: 1100px;
      max-height: 100vh;
      overflow: hidden;
    }

    .hero__bg {
      position: absolute;
      inset: 0;
      object-fit: cover;
      width: 100%;
      height: 100%;
    }

    /* Dark overlay on left */
    .hero__overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to right,
        rgba(83,64,51,0.82) 0%,
        rgba(83,64,51,0.55) 34%,
        rgba(83,64,51,0) 60%);
    }

    .hero__content {
      position: relative;
      z-index: 10;
      display: flex;
      flex-direction: column;
      justify-content: center;
      height: 100%;
      min-height: 1100px;
      max-height: 100vh;
      padding: 120px 6% 60px;
      max-width: 600px;
    }

    .hero__headline {
      line-height: 1.15;
      margin-bottom: 32px;
      font-weight: 400;
    }

    .hero__headline .line {
      display: flex;
      align-items: baseline;
      gap: 10px;
      flex-wrap: nowrap;
    }

    .hero__headline .plain {
      color: #fff;
      font-size: clamp(28px, 3.5vw, 50px);
      font-weight: 400;
    }

    .hero__headline .italic {
      color: var(--green);
      font-size: clamp(34px, 4.2vw, 60px);
      font-style: italic;
      font-family: "instrument-serif", "Instrument Serif", Georgia, serif;
    }

    .hero__product {
      position: absolute;
      right: 5%;
      bottom: 0;
      height: 88%;
      max-height: 780px;
      z-index: 5;
      display: flex;
      align-items: flex-end;
    }

    .hero__product img {
      height: 100%;
      object-fit: contain;
      filter: drop-shadow(4px 8px 24px rgba(0,0,0,0.2));
    }

    .hero__scroll-btn {
      position: absolute;
      bottom: 28px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 20;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 2px solid rgba(255,255,255,0.6);
      background: rgba(255,255,255,0.15);
      color: #fff;
      cursor: pointer;
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      transition: background 0.2s, border-color 0.2s;
      animation: heroScrollBounce 1.6s ease-in-out infinite;
    }

    .hero__scroll-btn:hover {
      background: rgba(255,255,255,0.30);
      border-color: rgba(255,255,255,0.9);
    }

    @keyframes heroScrollBounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50%       { transform: translateX(-50%) translateY(6px); }
    }

    /* ──────────────── SECTION: PERNAS CANSADAS ──────────────── */
    .sec-pernas {
      background: #ffffff;
      padding: 0;
    }

    .sec-pernas__canvas {
      max-width: 1242px;
      min-height: 562px;
      margin: 120px auto 30px;
      display: flex;
      justify-content: space-between;
    }

    .pernas-col {
      display: flex;
    }

    .pernas-col img {
      max-width: 100%;
    }

    .sec-pernas__title {
      width: 276px;
      font-size: 33px;
      line-height: 1.25;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 48px;
    }

    .sec-pernas__title .normal      { color: var(--dark);   font-weight: 400; }
    .sec-pernas__title .bold-purple { color: var(--purple); font-weight: 700; }

    .pi-1 { width: 285px; height: 371px; display: flex; flex-direction: column; }
    .pi-2 { width: 320px; display: flex; flex-direction: column; }
    .pi-2 img { margin-top: -30px; }
    .pi-3 { width: 270px; height: 381px; }
    .pi-3 img { position: relative; bottom: -50px; }
    .pi-4 { width: 280px; display: flex; flex-direction: column; }
    .pi-4 img { margin-top: 130px; }

    .sec-pernas__caption {
      margin-top: 30px;
      font-size: 22px;
      line-height: 1.6;
      color: var(--dark);
    }

    .sec-pernas__caption .cap-bold.green {
      color: var(--green);
      font-weight: 700;
    }

    .sec-pernas__caption .cap-medium.purple {
      color: var(--purple);
      font-weight: 600;
    }

    /* mobile-only elements hidden on desktop */
    .sec-pernas__title--above { display: none; }
    .sec-pernas__caption--below { display: none; }
    .pernas-slider { display: none; }

    /* ──────────────── SECTION: CLAIMS / BENEFITS ──────────────── */
    .sec-claims {
      background: linear-gradient(184deg,rgba(255, 255, 255, 1) 8%, rgba(238, 242, 232, 0.86) 20%, rgba(213, 237, 175, 1) 41%, rgba(192, 222, 131, 1) 66%, rgba(243, 241, 231, 1) 97%);      padding: 160px 6%;
      position: relative;
      overflow: hidden;
    }

    .sec-claims__title {
      text-align: center;
      font-size: clamp(20px, 2.2vw, 32px);
      color: var(--dark);
      font-weight: 400;
      margin-bottom: 56px;
      max-width: 1100px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.45;
    }

    .sec-claims__title strong { color: var(--dark); font-weight: 700; }
    .sec-claims__title sup { font-size: 0.55em; vertical-align: super; }

    .sec-claims__layout {
      max-width: 1240px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      gap: 32px;
      align-items: center;
      background: radial-gradient(circle,rgba(255, 255, 255, 1) 13%, rgba(255, 255, 255, 0) 50%);
    }

    .sec-claims__col {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .sec-claims__col.justify-end { align-items: end; }

    .claim-card {
      background: rgba(255, 255, 255, 0.20);
      border-radius: 42.168px;
      box-shadow: 0 3.551px 3.551px 0 rgba(0, 0, 0, 0.25);
      padding: 24px 28px 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      min-height: 150px;
      width: 235px;
      transition: background 0.2s ease;
    }

    .claim-card.c1 { margin-right: 20px; }
    .claim-card.c2 { margin-right: 70px; }
    .claim-card.c3 { margin-right: 20px; }
    .claim-card.c4 { margin-left: 20px; }
    .claim-card.c5 { margin-left: 70px; }
    .claim-card.c6 { margin-left: 20px; }

    .claim-card:hover {
      background: rgba(255, 255, 255, 1);
    }

    .claim-card__icon {
      width: 56px;
      height: 56px;
      object-fit: contain;
    }

    .claim-card__label {
      font-size: 20px;
      color: var(--purple);
      line-height: 1.3;
    }

    .claim-card__label em {
      font-style: italic;
      font-family: "instrument-serif", "Instrument Serif", Georgia, serif;
      color: var(--purple);
      font-size: 23px;
      font-weight: normal;
    }

    .claim-card__label sup {
      font-size: 10px;
      vertical-align: super;
    }

    .sec-claims__product {
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      width: 400px;
      height: 680px;
      cursor: pointer;
    }

    .sec-claims__product-img {
      max-width: 320px;
      filter: drop-shadow(0 8px 24px rgba(0,0,0,0.12));
      transform: rotate(6.219deg);
      width: auto;
      max-height: 500px;
      transition: transform 0.35s ease, max-width 0.35s ease, max-height 0.35s ease;
    }

    .sec-claims__product:hover .sec-claims__product-img {
      max-width: 380px;
      max-height: 590px;
    }

    .badge-novo {
      position: absolute;
      top: 50px;
      left: 70px;
      width: 90px;
      transition: opacity 0.25s ease;
    }

    .badge-novo--hover { opacity: 0; }

    .sec-claims__product:hover .sec-claims__product-img {
      transform: rotate(12deg);
    }
    .sec-claims__product:hover .badge-novo--default { opacity: 0; }
    .sec-claims__product:hover .badge-novo--hover   { opacity: 1; }

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

    .sec-claims__cta .btn-purple:hover {
      background: var(--green);
    }

    /* mobile-only blocks – hidden on desktop */
    .sec-claims__product-mobile { display: none; }
    .sec-claims__grid-mobile { display: none; }

    /* ──────────────── INGREDIENTS PILL ──────────────── */
    .ingredients-pill {
      max-width: 1000px;
      margin: 100px auto 0;
      background: rgba(132, 26, 158, 0.1);
      border-radius: 40px;
      padding: 40px 80px;
      text-align: center;
      scroll-margin-top: 100px;
    }
    .ingredients-pill__text {
      font-size: 22px;
      line-height: 1.7;
      color: var(--dark);
      font-weight: 400;
      margin-bottom: 28px;
    }

    .ingredients-pill__brand {
      color: var(--purple);
      font-weight: 700;
    }
    /* ──────────────── SECTION: INGREDIENTS ──────────────── */
    .sec-ingredients {
      background: var(--cream);
      padding: 60px 6%;
    }

    .sec-ingredients__inner {
      max-width: 1000px;
      margin: 0 auto;
      background: rgba(132,26,158,0.1);
      border-radius: 40px;
      padding: 48px 80px;
      text-align: center;
    }

    .sec-ingredients__inner p {
      font-size: clamp(16px, 1.6vw, 22px);
      line-height: 1.6;
      color: var(--dark);
      margin-bottom: 32px;
    }

    .sec-ingredients__inner p strong { color: var(--purple); }

    /* ──────────────── SECTION: COMO APLICAR ──────────────── */
    .sec-apply {
      position: relative;
      overflow: hidden;
    }

    .sec-apply__bg {
      position: absolute;
      inset: 0;
      object-fit: cover;
      width: 100%;
      height: 100%;
    }

    .sec-apply__overlay {
      position: absolute;
      inset: 0;
      background-image: url(../images/bg-textura.png);
      background-size: cover;
      background-repeat: no-repeat;
      background-position: bottom;
    }

    .sec-apply__content {
      position: relative;
      z-index: 5;
      padding: 80px 6%;
    }

    .sec-apply__card {
      max-width: 1000px;
      margin: 0 auto;
      background: rgba(160,100,40,0.35);
      backdrop-filter: blur(20px);
      border-radius: 37px;
      padding: 48px 56px 40px;
      color: #fff;
      box-shadow: -1px 0px 1px 0px rgba(255, 255, 255, 0.5), 0px 0px 0px 0px, 0px 1px 1px 0px rgba(255, 255, 255, 0.5), 0px 0px 1px 0px rgba(255, 255, 255, 0.5);
    }

    .sec-apply__title {
      font-size: clamp(22px, 2.5vw, 36px);
      font-weight: 700;
      text-align: center;
      margin-bottom: 36px;
    }

    .sec-apply__steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }

    .step {
      display: flex;
      gap: 12px;
      align-items: flex-start;
    }

    .step__num {
      font-family: "instrument-serif", "Instrument Serif", Georgia, serif;
      font-style: italic;
      font-size: 52px;
      line-height: 1;
      flex-shrink: 0;
    }

    .step__text {
      font-size: 17px;
      line-height: 1.5;
    }

    .step__text strong { font-weight: 700; }


    div.bg-rosa {
      background: radial-gradient(circle at 0% 0%, rgba(249, 168, 249, 0.65) 0%, rgba(255, 255, 255, 0) 50%);
    }

    /* ──────────────── SECTION: FARMACIAS ──────────────── */
    .sec-pharma {
      padding: 220px 6% 50px;
      text-align: center;
    }

    .sec-pharma__title {
      font-size: clamp(20px, 2.2vw, 32px);
      font-weight: 400;
      color: var(--dark);
      margin-bottom: 40px;
      line-height: 1.4;
    }

    .sec-pharma__marquee-wrapper {
      overflow: hidden;
      width: 100%;
      margin-bottom: 16px;
    }

    .sec-pharma__marquee {
      display: flex;
      gap: 0;
      width: max-content;
      animation: marquee-scroll 28s linear infinite;
    }

    .sec-pharma__marquee:hover { animation-play-state: paused; }

    .sec-pharma__marquee--reverse {
      animation-direction: reverse;
    }

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

    .pharma-logo {
      height: 120px;
      object-fit: contain;
      mix-blend-mode: darken;
      padding: 8px 24px;
      flex-shrink: 0;
      filter: grayscale(100%);
      opacity: 0.7;
      transition: filter 0.3s, opacity 0.3s;
    }

    .pharma-logo:hover { filter: none; opacity: 1; }

    .sec-pharma__cta {
      margin-top: 40px;
      display: none;
    }

    .sec-onda {
      display: block;
      width: 100vw;
      max-width: 100vw;
      height: auto;
      margin: 0;
      position: relative;
      left: 50%;
      transform: translateX(-50%);
    }

    .sec-onda img {
      width: 100%;
      height: auto;
      display: block;
    }

    /* ──────────────── SECTION: REDES SOCIAIS ──────────────── */
    .sec-social {
      padding: 70px 6% 160px;
      text-align: center;
    }

    .sec-social__title {
      font-size: clamp(22px, 2.5vw, 36px);
      line-height: 1.4;
      margin-bottom: 50px;
      font-weight: 400;
    }

    .sec-social__title strong { color: var(--purple); font-weight: 700; }

    .sec-social__grid {
      display: flex;
      gap: 30px;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 40px;
    }

    .social-post {
      border-radius: 20px;
      overflow: hidden;
      width: 220px;
      height: 276px;
      flex-shrink: 0;
    }

    .social-post img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.35s ease;
    }

    .social-post:hover img {
      transform: scale(1.08);
    }

    .sec-social__icons {
      display: flex;
      gap: 36px;
      justify-content: center;
      align-items: center;
    }

    .social-icon {
      width: 50px;
      height: 50px;
      object-fit: contain;
      display: block;
      transition: filter 0.25s ease;
    }

    .sec-social__icons a:hover .social-icon {
      filter: invert(22%) sepia(60%) saturate(800%) hue-rotate(265deg) brightness(80%) contrast(110%);
    }

    .sec-social__icons a:last-child .social-icon {
      width: 60px;
      height: 60px;
    }

    /* ──────────────── FOOTER ──────────────── */
    .footer {
      background: var(--green-bg);
      padding: 60px 6% 40px;
      position: relative;
    }

    .footer__top {
      max-width: 1240px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 380px 1fr 1fr;
      gap: 40px;
      padding-bottom: 32px;
      border-bottom: 1px solid rgba(55,55,55,0.2);
      margin-bottom: 32px;
    }

    .footer__logo img {
      height: 190px;
      object-fit: contain;
    }

    .footer__links h4 {
      font-size: 16px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 10px;
    }

    .footer__links hr {
      border: none;
      border-top: 1px solid var(--dark);
      margin-bottom: 10px;
    }

    .footer__links ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .footer__links ul li a {
      color: var(--dark);
      text-decoration: none;
      font-size: 15px;
      font-weight: 300;
    }

    .footer__links ul li a:hover { text-decoration: underline; }

    .footer__legal {
      max-width: 1240px;
      margin: 0 auto;
      font-size: 16px;
      line-height: 1.7;
      color: var(--dark);
      margin-bottom: 32px;
    }

    .footer__legal p + p { margin-top: 12px; }

    .footer__bottom {
      max-width: 1240px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 28px;
      flex-wrap: wrap;
      padding: 16px 0;
    }

    .footer__bottom-logo {
      background: #fff;
      border-radius: 12px;
      padding: 0px 12px 6px;
      display: flex;
      align-items: center;
    }

    .footer__bottom-logo img { height: 38px; object-fit: contain; }

    .footer__bottom img { height: 42px; object-fit: contain; }

    .footer__bottom .btn-outline {
      border: 2px solid var(--dark);
      background: transparent;
      color: var(--dark);
      border-radius: 8px;
      padding: 9px 22px;
      font-size: 14px;
      font-weight: 700;
      cursor: pointer;
      text-decoration: none;
    }

    .footer__certifications {
      font-size: 13px;
      font-weight: 700;
      line-height: 1.6;
      color: var(--dark);
    }

    /* ──────────────── Responsive ──────────────── */
    @media (max-width: 1100px) {
      .sec-pernas__canvas { gap: 16px; }
      .pernas-col { flex-shrink: 1; min-width: 0; }
      .pi-1 { height: 290px; }
      .pi-2 { height: 340px; }
      .pi-3 { height: 300px; margin-top: 64px; }
      .pi-4 { height: 120px; margin-top: 148px; }
      .sec-claims__layout { grid-template-columns: 1fr; }
      .sec-claims__product { order: -1; }
      .sec-apply__steps { grid-template-columns: 1fr; }
      .footer__top { grid-template-columns: 1fr 1fr; }
      .footer__logo { grid-column: 1 / -1; }
    }

    @media (max-width: 768px) {
      .desktop-only { display: none !important; }

      /* Navbar */
      .navbar__links { display: none; }
      .navbar__burger { display: flex; }
      .navbar__logo img { margin: 6px 0 6px 12px; height: 36px; }
      .navbar__inner { padding: 8px 16px 8px 6px; }

      /* Hero */
      .hero__scroll-btn { display: none; }
      .hero { max-height: 700px; min-height: 0; height: 100svh; }
      .hero__overlay {
        background: linear-gradient(to bottom,
          rgba(83,64,51,0.10) 0%,
          rgba(83,64,51,0.00) 50%,
          rgba(83,64,51,0.45) 100%);
      }
      .hero__content {
        max-width: 100%;
        justify-content: flex-end;
        align-items: center;
        padding: 0 6% 40px;
        min-height: 0;
        height: 100%;
      }
      .hero__content .btn-green {
        padding: 14px 80px;

      }
      .hero__headline { display: block; }

      /* Sections */
      .hero__product { height: 55%; right: 0; }
      /* pernas section – mobile layout */
      .sec-pernas { padding: 32px 5% 0; }
      .sec-pernas__canvas { display: none; }

      /* title above slider */
      .sec-pernas__title--above {
        display: block;
        font-size: 24px;
        line-height: 1.3;
        width: 100%;
        margin-bottom: 20px;
      }
      .sec-pernas__title--inline { display: none; }

      /* slider */
      .pernas-slider {
        display: block;
        overflow: hidden;
        margin: 0 -5%;
      }
      .pernas-slider__track {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 0 5%;
      }
      .pernas-slider__track::-webkit-scrollbar { display: none; }
      .pernas-slider__track img {
        flex: 0 0 calc(50% - 6px);
        height: 260px;
        object-fit: cover;
        border-radius: 12px;
        scroll-snap-align: start;
      }

      /* caption below slider */
      .sec-pernas__caption--below {
        display: block;
        font-size: 20px;
        line-height: 1.55;
        margin-top: 24px;
        padding-bottom: 36px;
      }
      .sec-pernas__caption--inline { display: none; }

      .sec-ingredients__inner { padding: 32px 24px; }
      .footer__top { grid-template-columns: 1fr; border-bottom: none; }

      /* footer bottom – mobile layout */
      .footer__bottom {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        text-align: center;
      }
      .footer__bottom-logo {
        padding: 10px 20px
      }
      .footer__bottom-logo img { height: 44px; }
      .footer__bottom img { height: 52px; }
      .footer__bottom .btn-outline {
        width: 100%;
        text-align: center;
        padding: 14px 24px;
        font-size: 16px;
        border-radius: 50px;
      }
      .footer__certifications {
        font-size: 15px;
      }
      .sec-claims__title {
        display: block;
        font-size: clamp(16px, 4.5vw, 22px);
        margin-bottom: 28px;
        text-align: center;
      }

      /* claims – mobile layout */
      .sec-claims {
        padding: 48px 5% 48px;
      }
      .sec-claims__layout { display: none; }

      /* product at top */
      .sec-claims__product-mobile {
        display: flex;
        justify-content: center;
        position: relative;
        margin-bottom: 36px;
      }
      .sec-claims__product-mobile img:first-child {
        transform: rotate(6.219deg);
        width: 60%;
        max-width: 280px;
        object-fit: contain;
        filter: drop-shadow(0 8px 24px rgba(0,0,0,0.12));
      }
      .badge-novo-mobile {
        position: absolute;
        top: -30px;
        left: 20%;
        transform: translateX(-20%);
        width: 72px !important;
      }

      /* 2-column grid of cards */
      .sec-claims__grid-mobile {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-bottom: 32px;
      }
      .sec-claims__grid-mobile .claim-card {
        width: auto;
        min-height: 0;
        padding: 18px 16px 16px;
        margin: 0 !important;
        border-radius: 20px;
        background: rgba(255,255,255,0.55);
        box-shadow: 0 2px 8px rgba(0,0,0,0.10);
        gap: 10px;
      }
      .sec-claims__grid-mobile .claim-card__icon {
        width: 44px;
        height: 44px;
      }
      .sec-claims__grid-mobile .claim-card__label {
        font-size: 15px;
        line-height: 1.35;
      }
      .sec-claims__grid-mobile .claim-card__label em {
        font-size: 17px;
      }

      .ingredients-pill { padding: 40px; }
      .ingredients-pill__text { font-size: 18px; }

      .sec-apply__overlay {
        background-image: url(../images/bg-textura-mobile.png);
      }
      .sec-apply__card { padding: 48px 15px 40px; }

      /* social – mobile layout */
      .sec-social {
        padding: 90px 5% 90px;
      }
      .sec-social__title {
        font-size: 28px;
        margin-bottom: 36px;
      }
      .sec-social__grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-bottom: 36px;
      }
      .social-post {
        width: auto;
        height: auto;
        aspect-ratio: 4 / 5;
      }
      .sec-social__icons {
        gap: 24px;
      }
      .social-icon {
        width: 40px;
        height: 40px;
      }

      div.bg-rosa {
        background: radial-gradient(circle at 0% 0%, rgba(249, 168, 249, 0.55) 0%, rgba(255, 255, 255, 0) 25%);
      }

      /* pharma – mobile layout */
      .sec-pharma {
        padding: 90px 0 80px;
      }
      .sec-pharma__title {
        font-size: 24px;
        padding: 0 6%;
        margin-bottom: 36px;
      }
      .pharma-logo {
        height: 84px;
        padding: 6px 16px;
      }
      .sec-pharma__cta {
        display: block;
        padding: 0 6%;
        margin-top: 36px;
      }
      .sec-pharma__cta .btn-green {
        width: 100%;
        font-size: 20px;
        padding: 18px 24px;
      }

      /* wave – thicker lines on mobile */
      .sec-onda svg {
        transform: scaleY(1.4);
        transform-origin: center;
      }
      
      .footer__logo img {
        height: 100px;
        width: 200px;
        object-fit: contain;
      }

      /* footer links – larger text on mobile */
      .footer__links h4 {
        font-size: 20px;
      }
      .footer__links ul li a {
        font-size: 18px;
      }
    }
