/** Shopify CDN: Minification failed

Line 1143:28 Expected identifier but found "{"
Line 1143:29 Unexpected "{"
Line 1143:38 Expected ":"
Line 1143:86 Expected identifier but found "{"
Line 1143:87 Unexpected "{"
Line 1143:96 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:footer (INDEX:0) */
.vf-footer {
  background: var(--vf-footer-bg, #1A1A1A);
  color: var(--vf-footer-text, #FFFFFF);
  font-family: var(--font-body);
}

.vf-footer__badges {
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 16px 0;
}

.vf-footer__badges-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 28px;
}

.vf-footer__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  opacity: .9;
}

.vf-footer__badge svg {
  color: var(--vf-green-light);
}

.vf-footer__main {
  padding: 48px 0 24px;
}

.vf-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.vf-footer__col {
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.vf-footer__col-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: 0;
  color: inherit;
  padding: 16px 0;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 400;
  text-align: left;
  cursor: pointer;
}

.vf-footer__chevron {
  transition: transform .2s ease;
}

.vf-footer__col-title[aria-expanded="true"] .vf-footer__chevron {
  transform: rotate(180deg);
}

.vf-footer__col-content {
  display: none;
  padding-bottom: 16px;
}

.vf-footer__col-title[aria-expanded="true"] + .vf-footer__col-content {
  display: block;
}

.vf-footer__text {
  font-size: 14px;
  line-height: 1.6;
  opacity: .8;
}

.vf-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vf-footer__link {
  color: inherit;
  text-decoration: none;
  font-size: 14px;
  opacity: .8;
  transition: opacity .2s ease, color .2s ease;
}

.vf-footer__link:hover {
  opacity: 1;
  color: var(--vf-green-light);
}

.vf-footer__social {
  list-style: none;
  display: flex;
  gap: 12px;
  margin: 12px 0 0;
  padding: 0;
}

.vf-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: inherit;
  transition: background .2s ease, border-color .2s ease;
}

.vf-footer__social a:hover {
  background: var(--vf-green);
  border-color: var(--vf-green);
}

.vf-footer__payment {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
}

.vf-footer__payment-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.vf-footer__payment-item {
  display: inline-flex;
}

.vf-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 16px 0;
}

.vf-footer__bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  font-size: 12px;
  opacity: .7;
}

.vf-footer__bottom-inner p {
  margin: 0;
}

@media (min-width: 750px) {
  .vf-footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 32px;
  }

  .vf-footer__bottom-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 990px) {
  .vf-footer__main {
    padding: 64px 0 32px;
  }

  .vf-footer__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }

  .vf-footer__col {
    border-bottom: 0;
  }

  .vf-footer__col-title {
    pointer-events: none;
    padding: 0 0 16px;
  }

  .vf-footer__chevron {
    display: none;
  }

  .vf-footer__col-content {
    display: block !important;
    padding-bottom: 0;
  }
}
/* END_SECTION:footer */

/* START_SECTION:header (INDEX:1) */
.vf-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--vf-surface);
  border-bottom: 1px solid var(--vf-border);
  transition: box-shadow .2s ease, background .2s ease;
}

.vf-header.is-scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
}

.vf-header--dark {
  background: var(--vf-text);
  color: var(--vf-surface);
  border-bottom-color: rgba(255,255,255,.1);
}

.vf-header--green {
  background: var(--vf-green);
  color: var(--vf-surface);
  border-bottom-color: var(--vf-green-dark);
}

.vf-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
  padding: 12px 16px;
}

.vf-header__hamburger {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}

.vf-header__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}

.vf-header__hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.vf-header__hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.vf-header__hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.vf-header__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  font-family: var(--font-heading);
}

.vf-header__logo-text {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -.01em;
  color: var(--vf-green-dark);
}

.vf-header--dark .vf-header__logo-text,
.vf-header--green .vf-header__logo-text {
  color: inherit;
}

.vf-header__nav {
  display: none;
}

.vf-header__menu {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.vf-header__menu-link {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: inherit;
  text-decoration: none;
  padding: 8px 0;
  position: relative;
  transition: color .2s ease;
}

.vf-header__menu-link:hover,
.vf-header__menu-link.is-active {
  color: var(--vf-green-dark);
}

.vf-header__menu-link.is-active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: var(--vf-green);
  border-radius: 2px;
}

.vf-header__icons {
  display: flex;
  align-items: center;
  gap: 6px;
}

.vf-header__icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  color: inherit;
  text-decoration: none;
  transition: background .2s ease;
}

.vf-header__icon:hover {
  background: rgba(0,0,0,.05);
}

.vf-header--dark .vf-header__icon:hover,
.vf-header--green .vf-header__icon:hover {
  background: rgba(255,255,255,.1);
}

.vf-header__icon--account {
  display: none;
}

.vf-header__cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: var(--vf-green);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  line-height: 18px;
  text-align: center;
  border-radius: 999px;
}

.vf-mobile-menu {
  background: var(--vf-surface);
  color: var(--vf-text);
  border-top: 1px solid var(--vf-border);
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.vf-mobile-menu.is-open {
  max-height: 80vh;
}

.vf-mobile-menu__list {
  list-style: none;
  margin: 0;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.vf-mobile-menu__link {
  display: block;
  padding: 14px 8px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--vf-text);
  text-decoration: none;
  border-bottom: 1px solid var(--vf-border);
}

.vf-mobile-menu__link:hover {
  color: var(--vf-green-dark);
}

@media (min-width: 750px) {
  .vf-header__inner {
    min-height: 76px;
  }

  .vf-header__icon--account {
    display: inline-flex;
  }
}

@media (min-width: 990px) {
  .vf-header__hamburger {
    display: none;
  }

  .vf-header__nav {
    display: flex;
    flex: 1;
    justify-content: center;
  }

  .vf-header__inner {
    gap: 32px;
  }
}
/* END_SECTION:header */

/* START_SECTION:main-404 (INDEX:2) */
.vf-404 {
    padding: 80px 16px 120px;
    background: var(--vf-bg);
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .vf-404__container {
    max-width: 560px;
    text-align: center;
  }
  .vf-404__code {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: clamp(80px, 14vw, 140px);
    line-height: 1;
    color: var(--vf-green);
    letter-spacing: -.04em;
    margin-bottom: 8px;
  }
  .vf-404__title {
    margin: 0 0 16px;
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.15;
  }
  .vf-404__text {
    margin: 0 0 32px;
    color: var(--vf-muted);
    font-size: 16px;
    line-height: 1.6;
  }
  .vf-404__actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
  }
/* END_SECTION:main-404 */

/* START_SECTION:main-cart (INDEX:3) */
.vf-cart {
    padding: 48px 0 80px;
    background: var(--vf-bg);
    min-height: 60vh;
  }
  .vf-cart__header {
    margin-bottom: 32px;
  }
  .vf-cart__header h1 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 48px);
  }
  .vf-cart__count {
    margin: 8px 0 0;
    color: var(--vf-muted);
    font-size: 14px;
  }
  .vf-cart__empty {
    text-align: center;
    padding: 64px 16px;
    max-width: 480px;
    margin: 0 auto;
  }
  .vf-cart__empty-icon {
    color: var(--vf-green);
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
  }
  .vf-cart__empty h2 {
    margin: 0 0 12px;
    font-family: var(--font-heading);
    font-size: 28px;
  }
  .vf-cart__empty p {
    color: var(--vf-muted);
    margin: 0 0 28px;
  }

  .vf-cart__layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
  }
  @media (min-width: 990px) {
    .vf-cart__layout {
      grid-template-columns: 1fr 380px;
      gap: 48px;
      align-items: start;
    }
  }

  /* Items */
  .vf-cart__items {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .vf-cart-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    grid-template-areas:
      "image body remove"
      "image qty price";
    gap: 14px 16px;
    background: var(--vf-surface);
    padding: 16px;
    border-radius: var(--card-radius);
    border: 1px solid var(--vf-border);
    align-items: center;
  }
  @media (min-width: 750px) {
    .vf-cart-item {
      grid-template-columns: 100px 1fr 140px 110px auto;
      grid-template-areas: "image body qty price remove";
    }
  }
  .vf-cart-item__image {
    grid-area: image;
    width: 80px;
    height: 80px;
    background: var(--vf-beige);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  @media (min-width: 750px) {
    .vf-cart-item__image { width: 100px; height: 100px; }
  }
  .vf-cart-item__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
  }
  .vf-cart-item__body {
    grid-area: body;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .vf-cart-item__title {
    font-family: var(--font-heading);
    font-size: 17px;
    color: var(--vf-text);
    line-height: 1.2;
  }
  .vf-cart-item__title:hover { color: var(--vf-green-dark); }
  .vf-cart-item__variant {
    font-size: 13px;
    color: var(--vf-muted);
  }
  .vf-cart-item__price-mobile {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-top: 4px;
  }
  @media (min-width: 750px) {
    .vf-cart-item__price-mobile { display: none; }
  }

  .vf-cart-item__qty {
    grid-area: qty;
  }
  .vf-cart-item__qty-control {
    display: inline-flex;
    align-items: center;
    border: 1.5px solid var(--vf-border);
    border-radius: 8px;
    overflow: hidden;
    width: fit-content;
  }
  .vf-cart-item__qty-btn {
    width: 36px;
    height: 36px;
    background: transparent;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
  }
  .vf-cart-item__qty-btn:hover { background: var(--vf-bg); }
  .vf-cart-item__qty-btn svg { width: 14px; height: 14px; }
  .vf-cart-item__qty-input {
    width: 44px;
    height: 36px;
    text-align: center;
    border: 0;
    background: transparent;
    font-size: 14px;
    font-weight: 600;
    -moz-appearance: textfield;
  }
  .vf-cart-item__qty-input::-webkit-outer-spin-button,
  .vf-cart-item__qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }

  .vf-cart-item__price {
    grid-area: price;
    font-family: var(--font-heading);
    font-size: 18px;
    text-align: right;
    display: none;
  }
  @media (min-width: 750px) {
    .vf-cart-item__price { display: block; }
  }
  .vf-cart-item__remove {
    grid-area: remove;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vf-muted);
    border-radius: 50%;
    transition: background var(--transition), color var(--transition);
  }
  .vf-cart-item__remove:hover {
    background: #FDECEC;
    color: var(--vf-danger);
  }

  /* Summary */
  .vf-cart__summary {
    background: var(--vf-surface);
    border-radius: var(--card-radius);
    border: 1px solid var(--vf-border);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: sticky;
    top: 100px;
  }
  .vf-cart__summary-title {
    margin: 0 0 4px;
    font-family: var(--font-heading);
    font-size: 22px;
  }
  .vf-cart__summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
  }
  .vf-cart__summary-row--total {
    padding-top: 14px;
    border-top: 1px solid var(--vf-border);
    font-size: 18px;
  }
  .vf-cart__summary-row--total strong {
    font-family: var(--font-heading);
    font-size: 22px;
  }
  .vf-cart__summary-info {
    padding: 10px 14px;
    background: var(--vf-beige);
    border-radius: 8px;
    font-size: 13px;
    color: var(--vf-text);
  }
  .vf-cart__summary-info--success {
    background: var(--vf-green-light);
    color: var(--vf-green-dark);
    font-weight: 600;
  }
  .vf-cart__summary-micro {
    margin: 0;
    text-align: center;
    font-size: 12px;
    color: var(--vf-muted);
  }
  .vf-cart__continue {
    margin-top: 4px;
    text-align: center;
    font-size: 14px;
    color: var(--vf-text);
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  .vf-cart__continue:hover { color: var(--vf-green-dark); }

  /* ===== BÔNUS PROMO 06/06 ===== */
  .vf-cart-bonus {
    position: relative;
    background: linear-gradient(135deg, #FFF8E1 0%, #FFFBEB 100%);
    border: 2px dashed #FACC15;
    border-radius: 12px;
    padding: 14px 16px;
    margin: 4px 0 14px;
    overflow: hidden;
    animation: vf-cart-bonus-flash 2.4s ease-in-out infinite;
  }
  @keyframes vf-cart-bonus-flash {
    0%, 100% { box-shadow: 0 0 0 0 rgba(250, 204, 21, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(250, 204, 21, 0); }
  }
  .vf-cart-bonus__head {
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }
  .vf-cart-bonus__check {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #16A34A;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
  }
  .vf-cart-bonus__check svg { width: 14px; height: 14px; }
  .vf-cart-bonus__copy {
    flex: 1;
    min-width: 0;
  }
  .vf-cart-bonus__title {
    margin: 0 0 3px;
    font-size: 14px;
    line-height: 1.35;
    color: #1A1A1A;
    font-weight: 600;
  }
  .vf-cart-bonus__title strong {
    color: #6B1212;
    font-weight: 800;
  }
  .vf-cart-bonus__sub {
    margin: 0;
    font-size: 12px;
    color: #555;
    line-height: 1.4;
  }
  .vf-cart-bonus__pill {
    display: inline-block;
    background: #DC2626;
    color: #FACC15;
    font-weight: 900;
    font-size: 10.5px;
    letter-spacing: 0.8px;
    padding: 4px 10px;
    border-radius: 999px;
    margin-top: 10px;
  }
/* END_SECTION:main-cart */

/* START_SECTION:main-collection-banner (INDEX:4) */
.vf-collection-banner {
    padding: 56px 0 32px;
    background: var(--vf-bg);
  }
  .vf-collection-banner__header {
    max-width: 720px;
    text-align: left;
  }
  .vf-collection-banner__title {
    margin: 0 0 16px;
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.05;
    letter-spacing: -.02em;
  }
  .vf-collection-banner__desc {
    color: var(--vf-muted);
    font-size: 16px;
    line-height: 1.65;
  }
  .vf-collection-banner__desc p:last-child { margin-bottom: 0; }
  .vf-collection-banner__meta {
    margin-top: 16px;
    font-size: 13px;
    color: var(--vf-muted);
    text-transform: uppercase;
    letter-spacing: .08em;
  }
/* END_SECTION:main-collection-banner */

/* START_SECTION:main-collection-product-grid (INDEX:5) */
.vf-coll-grid {
    padding: 24px 0 80px;
    background: var(--vf-bg);
  }
  .vf-coll-grid__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  @media (min-width: 750px) {
    .vf-coll-grid__list { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  }
  @media (min-width: 1200px) {
    .vf-coll-grid__list { grid-template-columns: repeat(4, 1fr); }
  }
  .vf-coll-grid__empty {
    text-align: center;
    padding: 80px 16px;
  }
  .vf-coll-grid__empty h2 {
    margin: 0 0 12px;
    font-family: var(--font-heading);
    font-size: 28px;
  }
  .vf-coll-grid__empty p {
    color: var(--vf-muted);
    margin: 0 0 24px;
  }
  .vf-coll-grid__pagination {
    margin-top: 48px;
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
  }
  .vf-coll-grid__page {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
    border: 1.5px solid var(--vf-border);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    background: var(--vf-surface);
    color: var(--vf-text);
    transition: border-color var(--transition), background var(--transition);
  }
  .vf-coll-grid__page:hover {
    border-color: var(--vf-green);
    color: var(--vf-green-dark);
  }
  .vf-coll-grid__page.is-current {
    background: var(--vf-green);
    border-color: var(--vf-green);
    color: #fff;
  }
  .vf-coll-grid__page.is-disabled {
    color: var(--vf-muted);
    background: transparent;
    border: 0;
  }
/* END_SECTION:main-collection-product-grid */

/* START_SECTION:main-page (INDEX:6) */
.vf-main-page {
    padding: 64px 0 96px;
    background: var(--vf-bg);
  }
  .vf-main-page__container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 16px;
  }
  @media (min-width: 750px) {
    .vf-main-page__container { padding: 0 24px; }
  }
  .vf-main-page__header {
    margin-bottom: 40px;
    text-align: left;
  }
  .vf-main-page__title {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.1;
    letter-spacing: -.01em;
  }
  .vf-main-page__content {
    font-size: 16px;
    line-height: 1.75;
    color: var(--vf-text);
  }
  .vf-main-page__content h2 {
    font-family: var(--font-heading);
    font-size: clamp(24px, 3vw, 32px);
    margin: 2em 0 .6em;
    color: var(--vf-text);
  }
  .vf-main-page__content h3 {
    font-family: var(--font-heading);
    font-size: clamp(20px, 2.5vw, 24px);
    margin: 1.6em 0 .5em;
  }
  .vf-main-page__content h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    margin: 1.4em 0 .4em;
  }
  .vf-main-page__content p { margin: 0 0 1.2em; }
  .vf-main-page__content a {
    color: var(--vf-green-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--transition);
  }
  .vf-main-page__content a:hover { color: var(--vf-green); }
  .vf-main-page__content ul,
  .vf-main-page__content ol {
    margin: 0 0 1.2em 1.4em;
    padding: 0;
  }
  .vf-main-page__content li {
    margin: 0 0 .5em;
  }
  .vf-main-page__content blockquote {
    margin: 1.5em 0;
    padding: 16px 20px;
    background: var(--vf-beige);
    border-left: 4px solid var(--vf-green);
    border-radius: 8px;
    font-style: italic;
    color: var(--vf-text);
  }
  .vf-main-page__content blockquote p:last-child { margin-bottom: 0; }
  .vf-main-page__content img {
    border-radius: var(--card-radius);
    margin: 1.5em 0;
  }
  .vf-main-page__content hr {
    border: 0;
    border-top: 1px solid var(--vf-border);
    margin: 2.5em 0;
  }
  .vf-main-page__content strong { font-weight: 700; color: var(--vf-text); }
/* END_SECTION:main-page */

/* START_SECTION:main-search (INDEX:7) */
.vf-search {
    padding: 56px 0 96px;
    background: var(--vf-bg);
    min-height: 60vh;
  }
  .vf-search__header {
    margin-bottom: 40px;
  }
  .vf-search__title {
    margin: 0 0 24px;
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 44px);
  }
  .vf-search__form {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }
  .vf-search__input-wrap {
    position: relative;
    flex: 1;
    min-width: 240px;
  }
  .vf-search__icon {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    color: var(--vf-muted);
    pointer-events: none;
    display: flex;
  }
  .vf-search__icon svg { width: 18px; height: 18px; }
  .vf-search__input {
    width: 100%;
    padding: 14px 16px 14px 44px;
    border: 1.5px solid var(--vf-border);
    border-radius: var(--button-radius);
    background: var(--vf-surface);
    font-size: 16px;
    min-height: 52px;
  }
  .vf-search__input:focus {
    outline: 0;
    border-color: var(--vf-green);
    box-shadow: 0 0 0 3px rgba(94, 188, 67, .15);
  }
  .vf-search__count {
    margin: 0 0 24px;
    color: var(--vf-muted);
    font-size: 14px;
  }
  .vf-search__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  @media (min-width: 750px) {
    .vf-search__grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  }
  @media (min-width: 1200px) {
    .vf-search__grid { grid-template-columns: repeat(4, 1fr); }
  }
  .vf-search__item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 20px;
    background: var(--vf-surface);
    border: 1px solid var(--vf-border);
    border-radius: var(--card-radius);
    color: var(--vf-text);
    transition: border-color var(--transition);
  }
  .vf-search__item:hover { border-color: var(--vf-green); }
  .vf-search__item-title {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 18px;
  }
  .vf-search__item-excerpt {
    margin: 0;
    color: var(--vf-muted);
    font-size: 14px;
    line-height: 1.5;
  }
  .vf-search__item-type {
    margin-top: auto;
    font-size: 11px;
    font-weight: 700;
    color: var(--vf-green-dark);
    letter-spacing: .08em;
    text-transform: uppercase;
  }
  .vf-search__empty {
    text-align: center;
    padding: 64px 16px;
    max-width: 520px;
    margin: 0 auto;
  }
  .vf-search__empty h2 {
    margin: 0 0 12px;
    font-family: var(--font-heading);
    font-size: 28px;
  }
  .vf-search__empty p {
    margin: 0 0 24px;
    color: var(--vf-muted);
  }
  .vf-search__pagination {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 12px;
  }
  .vf-search__page {
    padding: 10px 18px;
    border: 1.5px solid var(--vf-border);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    background: var(--vf-surface);
    color: var(--vf-text);
  }
  .vf-search__page:hover {
    border-color: var(--vf-green);
    color: var(--vf-green-dark);
  }
/* END_SECTION:main-search */

/* START_SECTION:vf-announcement-bar (INDEX:8) */
.vf-announcement{background:{{ section.settings.bg_color | default:'#1B5E20' }};color:{{ section.settings.text_color | default:'#FFFFFF' }};padding:10px 16px;font:600 14px/1.4 Inter,system-ui,sans-serif;min-height:40px;overflow:hidden;position:relative;z-index:50}.vf-announcement--sc{background:#1B5E20;color:#fff}.vf-announcement--sc *{color:#fff!important}.vf-announcement__track{position:relative;min-height:20px;display:flex;align-items:center;justify-content:center}.vf-announcement__slide{position:absolute;inset:auto 0;opacity:0;pointer-events:none;text-align:center;transition:opacity .35s ease}.vf-announcement__slide.is-active{opacity:1;pointer-events:auto}.vf-announcement strong{font-weight:800}.vf-ann-countdown{background:rgba(255,255,255,.18);padding:2px 8px;border-radius:6px;font-variant-numeric:tabular-nums}@media(max-width:540px){.vf-announcement{font-size:12px;padding:9px 10px;min-height:42px}.vf-announcement__track{min-height:24px}}
/* END_SECTION:vf-announcement-bar */

/* START_SECTION:vf-comparativo (INDEX:9) */
.vf-cmp {
    background: #ffffff;
    padding: clamp(48px, 7vw, 80px) 0;
    font-family: 'Inter', system-ui, sans-serif;
  }

  .vf-cmp__container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
  }

  .vf-cmp__heading {
    font-family: 'Caprasimo', Georgia, serif;
    font-size: clamp(28px, 3.8vw, 44px);
    line-height: 1.15;
    color: var(--vf-green-dark, #1B5E20);
    text-align: center;
    margin: 0 0 16px 0;
    letter-spacing: -0.01em;
  }

  .vf-cmp__sub {
    font-size: 17px;
    line-height: 1.5;
    color: #1A1A1A;
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px auto;
    font-weight: 500;
  }
  .vf-cmp__sub p { margin: 0; }
  .vf-cmp__sub strong { color: var(--vf-cmp-accent, #5EBC43); }

  .vf-cmp__table-wrap {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    background: #ffffff;
  }

  .vf-cmp__table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
  }

  .vf-cmp__th {
    background: var(--vf-cmp-header-bg, #1a1a1a);
    color: #ffffff;
    font-family: 'Caprasimo', Georgia, serif;
    font-size: 15px;
    line-height: 1.2;
    padding: 18px 14px;
    text-align: center;
    font-weight: normal;
    letter-spacing: 0.01em;
  }
  .vf-cmp__th--label { text-align: left; background: #1a1a1a; }
  .vf-cmp__th--us {
    background: var(--vf-cmp-accent, #5EBC43);
    color: #ffffff;
  }

  .vf-cmp__rowlabel {
    text-align: left;
    padding: 14px 16px;
    font-size: 14px;
    color: #1a1a1a;
    background: #fafafa;
    font-weight: 600;
    border-top: 1px solid #eee;
  }

  .vf-cmp__cell {
    padding: 14px 14px;
    text-align: center;
    font-size: 14px;
    color: #444;
    border-top: 1px solid #eee;
    vertical-align: middle;
  }

  .vf-cmp__cell--us {
    background: #C0DE96;
    color: #1a1a1a;
    font-weight: 500;
    border-left: 3px solid var(--vf-cmp-accent, #5EBC43);
    border-right: 3px solid var(--vf-cmp-accent, #5EBC43);
  }
  .vf-cmp__table tbody tr:last-child .vf-cmp__cell--us {
    border-bottom: 3px solid var(--vf-cmp-accent, #5EBC43);
  }

  .vf-cmp__hl {
    color: #009933;
    font-weight: 700;
  }

  .vf-cmp__yes {
    display: inline-flex;
    width: 24px;
    height: 24px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #5ebc43;
    color: #ffffff;
    font-size: 13px;
    margin-right: 4px;
  }
  .vf-cmp__no {
    display: inline-flex;
    width: 24px;
    height: 24px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #e5e5e5;
    color: #999;
    font-size: 13px;
  }

  .vf-cmp__mobile { display: none; }

  @media (max-width: 749px) {
    .vf-cmp__table-wrap { display: none; }
    .vf-cmp__mobile { display: flex; flex-direction: column; gap: 16px; }
    .vf-cmp__mcard {
      background: #fafafa;
      border-radius: 16px;
      padding: 24px 20px;
      border: 1px solid #eee;
    }
    .vf-cmp__mcard--us {
      background: #C0DE96;
      border: 2px solid var(--vf-cmp-accent, #5EBC43);
    }
    .vf-cmp__mtitle {
      font-family: 'Caprasimo', Georgia, serif;
      font-size: 20px;
      margin: 0 0 12px 0;
      color: #1a1a1a;
    }
    .vf-cmp__mlist {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 8px;
      font-size: 14px;
      color: #1a1a1a;
    }
    .vf-cmp__mkey { color: #555; font-weight: 500; }
  }
/* END_SECTION:vf-comparativo */

/* START_SECTION:vf-cta-final (INDEX:10) */
.vf-cta{position:relative;background:var(--bg,#5EBC43);color:var(--c,#fff);padding:clamp(60px,9vw,110px) 0;overflow:hidden;font-family:Inter,system-ui,sans-serif}.vf-cta__bg{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}.vf-cta__overlay{position:absolute;inset:0;background:rgba(0,0,0,.35)}.vf-cta__in{position:relative;z-index:2;max-width:900px;margin:auto;padding:0 24px;text-align:center}.vf-cta h2,.vf-cta p{color:#fff!important}.vf-cta h2{font-family:Caprasimo,Georgia,serif;font-size:clamp(38px,7vw,68px);line-height:1.05;margin:0 0 16px}.vf-cta p{font-size:clamp(15px,1.6vw,19px);line-height:1.5;max-width:650px;margin:0 auto 24px}.vf-cta a{display:inline-flex;align-items:center;gap:9px;background:#fff;color:#087c2d;text-decoration:none;font-weight:800;padding:17px 34px;border-radius:999px}
/* END_SECTION:vf-cta-final */

/* START_SECTION:vf-depoimentos (INDEX:11) */
.vf-dep {
    background: #fafafa;
    padding: clamp(48px, 7vw, 80px) 0;
    font-family: 'Inter', system-ui, sans-serif;
  }

  .vf-dep__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
  }

  .vf-dep__heading {
    font-family: 'Caprasimo', Georgia, serif;
    font-size: clamp(28px, 3.8vw, 44px);
    line-height: 1.15;
    color: var(--vf-green-dark, #1B5E20);
    text-align: center;
    margin: 0 0 12px 0;
    letter-spacing: -0.01em;
  }

  .vf-dep__sub {
    font-size: 17px;
    line-height: 1.5;
    color: #1A1A1A;
    text-align: center;
    margin: 0 auto 48px auto;
    font-weight: 500;
  }

  .vf-dep__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .vf-dep__card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px 22px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .vf-dep__head {
    display: flex;
    gap: 14px;
    align-items: center;
  }

  .vf-dep__avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    background: #f0f0f0;
    flex-shrink: 0;
  }

  .vf-dep__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }
  .vf-dep__img--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #c0de96, #5ebc43);
    color: #ffffff;
    font-family: 'Caprasimo', Georgia, serif;
    font-size: 22px;
  }

  .vf-dep__meta { display: flex; flex-direction: column; gap: 2px; }

  .vf-dep__name {
    font-family: 'Caprasimo', Georgia, serif;
    font-size: 16px;
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0;
  }

  .vf-dep__info {
    font-size: 12px;
    color: #777;
    margin: 0;
  }

  .vf-dep__content {
    font-size: 15px;
    line-height: 1.55;
    color: #333;
    margin: 0;
    flex: 1;
  }

  .vf-dep__stars {
    display: flex;
    gap: 2px;
    font-size: 16px;
    color: #ddd;
  }
  .vf-dep__star.is-on { color: #5ebc43; }

  @media (max-width: 989px) {
    .vf-dep__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  }
  @media (max-width: 749px) {
    .vf-dep__grid {
      grid-template-columns: repeat(6, minmax(280px, 1fr));
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      gap: 16px;
      padding-bottom: 12px;
      -webkit-overflow-scrolling: touch;
    }
    .vf-dep__card { scroll-snap-align: start; }
  }
/* END_SECTION:vf-depoimentos */

/* START_SECTION:vf-faq (INDEX:12) */
.vf-faq {
    background: #FFFFFF;
    padding: clamp(56px, 7vw, 96px) 0;
    font-family: 'Inter', system-ui, sans-serif;
  }

  .vf-faq__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  /* Intro (lado esquerdo no desktop) */
  .vf-faq__intro {
    text-align: center;
  }

  .vf-faq__eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--vf-green-dark, #1B5E20);
    background: #ECFFE5;
    padding: 6px 14px;
    border-radius: 999px;
    margin: 0 0 16px;
  }

  .vf-faq__heading {
    font-family: 'Caprasimo', Georgia, serif;
    font-size: clamp(28px, 3.8vw, 44px);
    line-height: 1.15;
    color: var(--vf-green-dark, #1B5E20);
    margin: 0 0 14px;
    letter-spacing: -0.01em;
    font-weight: 400;
  }

  .vf-faq__sub {
    font-size: 17px;
    line-height: 1.55;
    color: #1A1A1A;
    margin: 0 auto 32px;
    max-width: 520px;
    font-weight: 500;
  }

  .vf-faq__support {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: #F0FDF4;
    border: 1px solid #DCFCE7;
    padding: 14px 20px;
    border-radius: 14px;
    text-align: left;
  }
  .vf-faq__support-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #FFFFFF;
    color: var(--vf-green-dark, #1B5E20);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .vf-faq__support-icon svg {
    width: 20px;
    height: 20px;
  }
  .vf-faq__support-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .vf-faq__support-text strong {
    font-family: 'Caprasimo', Georgia, serif;
    font-weight: 400;
    color: #1A1A1A;
    font-size: 15px;
  }
  .vf-faq__support-link {
    color: var(--vf-green-dark, #1B5E20);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s ease;
  }
  .vf-faq__support-link:hover {
    gap: 8px;
  }

  /* Lista de perguntas */
  .vf-faq__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .vf-faq__item {
    background: #FAFAFA;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #EFEFEF;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  }
  .vf-faq__item:hover {
    border-color: #DCFCE7;
  }
  .vf-faq__item[open] {
    background: #FFFFFF;
    border-color: var(--vf-green-light, #C0DE96);
    box-shadow: 0 6px 20px rgba(27, 94, 32, 0.08);
  }

  .vf-faq__question {
    list-style: none;
    cursor: pointer;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-family: 'Caprasimo', Georgia, serif;
    font-size: 17px;
    line-height: 1.3;
    color: #1A1A1A;
    transition: color 0.2s ease;
  }
  .vf-faq__question::-webkit-details-marker { display: none; }
  .vf-faq__question::marker { content: ''; }

  .vf-faq__item[open] .vf-faq__question {
    color: var(--vf-green-dark, #1B5E20);
  }

  .vf-faq__qtext { flex: 1; }

  .vf-faq__icon {
    position: relative;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--vf-green, #5EBC43);
    transition: transform 0.3s ease, background 0.25s ease;
  }
  .vf-faq__icon::before,
  .vf-faq__icon::after {
    content: '';
    position: absolute;
    background: #FFFFFF;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .vf-faq__icon::before { width: 14px; height: 2px; }
  .vf-faq__icon::after  { width: 2px; height: 14px; transition: opacity 0.2s ease; }

  .vf-faq__item[open] .vf-faq__icon {
    background: var(--vf-green-dark, #1B5E20);
    transform: rotate(180deg);
  }
  .vf-faq__item[open] .vf-faq__icon::after { opacity: 0; }

  .vf-faq__answer {
    padding: 0 24px 26px 24px;
    font-size: 16px;
    line-height: 1.65;
    color: #1A1A1A;
    font-weight: 500;
  }
  .vf-faq__answer p { margin: 0 0 12px 0; }
  .vf-faq__answer p:last-child { margin-bottom: 0; }
  .vf-faq__answer strong {
    color: var(--vf-green-dark, #1B5E20);
    font-weight: 700;
  }
  .vf-faq__answer a {
    color: var(--vf-green-dark, #1B5E20);
    text-decoration: underline;
    font-weight: 600;
  }
  .vf-faq__answer ul, .vf-faq__answer ol { margin: 8px 0 8px 22px; }
  .vf-faq__answer li { margin-bottom: 6px; }

  /* Tablet+ */
  @media (min-width: 750px) {
    .vf-faq__container {
      grid-template-columns: 1fr;
    }
  }

  /* Desktop: split 2 colunas */
  @media (min-width: 990px) {
    .vf-faq__container {
      grid-template-columns: 380px 1fr;
      gap: 80px;
      align-items: start;
    }
    .vf-faq__intro {
      text-align: left;
      position: sticky;
      top: 100px;
    }
    .vf-faq__sub {
      margin-left: 0;
      margin-right: 0;
    }
  }

  @media (max-width: 749px) {
    .vf-faq__question { padding: 18px 20px; font-size: 16px; }
    .vf-faq__answer { padding: 0 20px 20px 20px; font-size: 14px; }
    .vf-faq__support { display: flex; }
  }
/* END_SECTION:vf-faq */

/* START_SECTION:vf-foto-beneficios (INDEX:13) */
.vf-fb {
    background: #E8F3DA;
    padding: 64px 16px;
  }

  .vf-fb__inner {
    max-width: 1160px;
    margin: 0 auto;
    text-align: center;
  }

  .vf-fb__eyebrow {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--vf-green-dark, #009933);
    background: #FFFFFF;
    padding: 6px 14px;
    border-radius: 999px;
    margin: 0 0 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  }

  .vf-fb__heading {
    font-family: 'Caprasimo', 'Capriola', Georgia, serif;
    font-size: clamp(26px, 4vw, 40px);
    color: var(--vf-green-dark, #1B5E20);
    line-height: 1.15;
    margin: 0 0 14px;
    font-weight: 400;
    letter-spacing: -0.01em;
  }
  .vf-fb__heading-emoji {
    display: inline-block;
    margin-left: 4px;
    vertical-align: -2px;
  }

  .vf-fb__credential {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #1A1A1A;
    margin: 0 auto 40px;
    max-width: 640px;
    line-height: 1.55;
    font-weight: 500;
  }
  .vf-fb__credential strong {
    color: var(--vf-green-dark, #009933);
    font-weight: 700;
  }
  .vf-fb__credential p {
    margin: 0;
  }

  /* Grid mobile: 1 coluna (foto vai pro topo via order) */
  .vf-fb__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: center;
  }

  .vf-fb__col {
    display: flex;
    flex-direction: column;
    gap: 22px;
  }

  .vf-fb__card {
    display: flex;
    gap: 14px;
    text-align: left;
    align-items: flex-start;
  }

  .vf-fb__icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: #ECFFE5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vf-green-dark, #009933);
    transition: transform 0.2s ease, background 0.2s ease;
  }
  .vf-fb__icon svg {
    width: 32px;
    height: 32px;
  }

  /* Cores diferentes por ícone pra dar variedade visual (sobre fundo verde quase branco) */
  .vf-fb__icon--spark { background: #FEF3C7; color: #B45309; }
  .vf-fb__icon--leaf { background: #ECFFE5; color: #009933; }
  .vf-fb__icon--moon { background: #E0E7FF; color: #4338CA; }
  .vf-fb__icon--sparkle { background: #FCE7F3; color: #BE185D; }
  .vf-fb__icon--drop { background: #DBEAFE; color: #1D4ED8; }
  .vf-fb__icon--shield { background: #ECFFE5; color: #009933; }
  .vf-fb__icon--heart { background: #FFE4E6; color: #BE123C; }

  .vf-fb__card-body {
    flex: 1;
  }

  .vf-fb__card-title {
    font-family: 'Caprasimo', 'Capriola', Georgia, serif;
    font-size: 20px;
    color: var(--vf-green-dark, #009933);
    margin: 0 0 8px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.005em;
  }

  .vf-fb__card-desc {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #1A1A1A;
    line-height: 1.55;
    margin: 0;
    font-weight: 500;
  }

  .vf-fb__photo {
    width: 100%;
    max-width: 360px;
    margin: 8px auto;
    aspect-ratio: 9 / 12;
    background: var(--vf-beige, #F5EDE0);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .vf-fb__photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .vf-fb__photo-placeholder {
    color: var(--vf-green, #5EBC43);
    opacity: 0.4;
    padding: 40px;
  }
  .vf-fb__photo-placeholder svg {
    width: 100%;
    height: 100%;
  }

  /* Tablet: foto centro + 4 cards lado a lado em volta */
  @media (min-width: 750px) and (max-width: 989px) {
    .vf-fb__grid {
      grid-template-columns: 1fr 1fr;
      gap: 30px;
    }
    .vf-fb__photo {
      grid-column: 1 / -1;
      order: -1;
      aspect-ratio: 16 / 10;
      max-width: 480px;
    }
  }

  /* Desktop: 3 colunas (esq | foto | dir) */
  @media (min-width: 990px) {
    .vf-fb {
      padding: 80px 24px;
    }
    .vf-fb__grid {
      grid-template-columns: 1fr 360px 1fr;
      gap: 56px;
      align-items: center;
    }
    .vf-fb__col {
      gap: 32px;
    }
    .vf-fb__col--left .vf-fb__card {
      flex-direction: row-reverse;
      text-align: right;
    }
    .vf-fb__col--left .vf-fb__card-body {
      text-align: right;
    }
    .vf-fb__photo {
      max-width: 100%;
      aspect-ratio: 9 / 14;
    }
  }

  @media (prefers-reduced-motion: no-preference) {
    .vf-fb__card:hover .vf-fb__icon {
      transform: scale(1.08);
    }
  }
/* END_SECTION:vf-foto-beneficios */

/* START_SECTION:vf-hero-slideshow (INDEX:14) */
.vf-hero {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 16px auto 0;
    overflow: hidden;
    background: #1a1a1a;
    border-radius: 16px;
  }

  .vf-hero--small { aspect-ratio: 21 / 9; }
  .vf-hero--medium { aspect-ratio: 16 / 9; }
  .vf-hero--large { aspect-ratio: 16 / 10; }
  .vf-hero--full { min-height: 92vh; aspect-ratio: auto; }

  .vf-hero__track {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .vf-hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    pointer-events: none;
  }
  .vf-hero__slide.is-active {
    opacity: 1;
    pointer-events: auto;
  }

  .vf-hero__slide-link {
    position: absolute;
    inset: 0;
    display: block;
    z-index: 1;
    text-decoration: none;
  }
  .vf-hero__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }
  .vf-hero__img--placeholder {
    background: linear-gradient(135deg, #5ebc43, #009933);
  }

  .vf-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.35) 100%);
    pointer-events: none;
  }

  .vf-hero__content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5vw clamp(20px, 6vw, 80px);
    color: var(--vf-hero-text-color, #ffffff);
    max-width: 720px;
    z-index: 2;
    pointer-events: none;
  }
  .vf-hero__content > * { pointer-events: auto; }
  .vf-hero__slide--left .vf-hero__content { align-items: flex-start; text-align: left; }
  .vf-hero__slide--center .vf-hero__content { align-items: center; text-align: center; left: 50%; transform: translateX(-50%); }
  .vf-hero__slide--right .vf-hero__content { align-items: flex-end; text-align: right; right: 0; left: auto; }

  .vf-hero__heading {
    font-family: 'Caprasimo', Georgia, serif;
    font-size: clamp(36px, 6vw, 78px);
    line-height: 1.05;
    margin: 0 0 16px 0;
    letter-spacing: -0.01em;
  }

  .vf-hero__sub {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: clamp(15px, 1.6vw, 20px);
    line-height: 1.5;
    margin: 0 0 28px 0;
    max-width: 540px;
  }

  .vf-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #5ebc43;
    color: #ffffff;
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 600;
    font-size: 15px;
    padding: 16px 32px;
    border-radius: 999px;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease;
  }
  .vf-hero__cta:hover {
    background: #009933;
    transform: translateY(-2px);
  }
  .vf-hero__cta span { transition: transform 0.2s ease; }
  .vf-hero__cta:hover span { transform: translateX(4px); }

  .vf-hero__dots {
    position: absolute;
    bottom: clamp(20px, 4vw, 40px);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 4;
  }
  .vf-hero__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s ease, transform 0.2s ease;
  }
  .vf-hero__dot.is-active {
    background: #ffffff;
    transform: scale(1.2);
  }

  @media (max-width: 749px) {
    /* Mobile = full bleed, sem margens, sem cantos arredondados */
    .vf-hero {
      max-width: 100%;
      margin: 0 auto;
      border-radius: 0;
    }
    .vf-hero--small,
    .vf-hero--medium,
    .vf-hero--large {
      aspect-ratio: 3 / 4;
    }
    .vf-hero--full { min-height: 80vh; }
    .vf-hero__content {
      max-width: 100%;
      padding: 28px 20px;
      justify-content: flex-end;
      padding-bottom: 80px;
    }
    .vf-hero__sub { max-width: 100%; font-size: 14.5px; margin-bottom: 20px; }
    .vf-hero__heading { font-size: clamp(28px, 8vw, 42px); }
    .vf-hero__overlay {
      background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.55) 70%, rgba(0,0,0,0.7) 100%);
    }
    .vf-hero__slide--left .vf-hero__content,
    .vf-hero__slide--right .vf-hero__content,
    .vf-hero__slide--center .vf-hero__content {
      align-items: flex-start;
      text-align: left;
      left: 0;
      right: 0;
      transform: none;
    }
    .vf-hero__cta { padding: 14px 24px; font-size: 14px; }
  }
/* END_SECTION:vf-hero-slideshow */

/* START_SECTION:vf-ingredientes (INDEX:15) */
.vf-ing {
    background: var(--vf-ing-bg, #E8F3DA);
    padding: clamp(48px, 7vw, 80px) 0;
    font-family: 'Inter', system-ui, sans-serif;
  }

  .vf-ing__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
  }

  .vf-ing__heading {
    font-family: 'Caprasimo', Georgia, serif;
    font-size: clamp(26px, 3.6vw, 42px);
    line-height: 1.15;
    color: var(--vf-green-dark, #1B5E20);
    text-align: center;
    margin: 0 0 12px 0;
    letter-spacing: -0.01em;
  }

  .vf-ing__sub {
    font-size: 16px;
    line-height: 1.5;
    color: #1A1A1A;
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px auto;
    font-weight: 500;
  }

  .vf-ing__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
  }

  .vf-ing__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }

  .vf-ing__media {
    width: 100%;
    max-width: 160px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .vf-ing__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }
  .vf-ing__img--placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #c0de96, #5ebc43);
  }

  .vf-ing__name {
    font-family: 'Caprasimo', Georgia, serif;
    font-size: 18px;
    line-height: 1.2;
    color: var(--vf-green-dark, #009933);
    margin: 8px 0 4px;
  }

  .vf-ing__desc {
    font-size: 14px;
    line-height: 1.5;
    color: #1A1A1A;
    margin: 0;
    font-weight: 500;
    max-width: 200px;
    padding: 0 4px;
  }

  @media (max-width: 989px) {
    .vf-ing__grid { grid-template-columns: repeat(3, 1fr); }
  }
  @media (max-width: 749px) {
    .vf-ing__grid {
      grid-template-columns: repeat(5, minmax(180px, 1fr));
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      gap: 16px;
      padding-bottom: 12px;
      -webkit-overflow-scrolling: touch;
    }
    .vf-ing__card { scroll-snap-align: start; }
    .vf-ing__media { max-width: 140px; }
  }
/* END_SECTION:vf-ingredientes */

/* START_SECTION:vf-kit-selector-kids (INDEX:16) */
.vf-kit-kids {
    padding: clamp(56px, 8vw, 96px) 0;
    background: linear-gradient(180deg, #FFF8E1 0%, #FAFAFA 100%);
    font-family: 'Inter', system-ui, sans-serif;
  }

  .vf-kit-kids__container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
  }

  .vf-kit-kids__eyebrow {
    text-align: center;
    font-size: 13px;
    color: var(--vf-green-dark, #1B5E20);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    margin: 0 0 10px;
  }

  .vf-kit-kids__heading {
    font-family: 'Caprasimo', Georgia, serif;
    font-size: clamp(30px, 4.5vw, 48px);
    line-height: 1.15;
    color: var(--vf-green-dark, #1B5E20);
    text-align: center;
    margin: 0 0 14px;
    letter-spacing: -0.01em;
    font-weight: 400;
  }

  .vf-kit-kids__subheading {
    font-size: 17px;
    line-height: 1.55;
    color: #1A1A1A;
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
    font-weight: 500;
  }

  .vf-kit-kids__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .vf-kit-kids__card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    border: 1px solid #EFEFEF;
  }
  .vf-kit-kids__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(94, 188, 67, 0.15);
  }

  .vf-kit-kids__media-link {
    display: block;
    text-decoration: none;
  }

  .vf-kit-kids__media {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #FFF8E1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .vf-kit-kids__img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
  }
  .vf-kit-kids__img--placeholder {
    width: 60%;
    height: 60%;
    background: linear-gradient(135deg, #FCD34D, #93C5FD);
    border-radius: 14px;
  }

  .vf-kit-kids__badge {
    position: absolute;
    top: 14px;
    left: 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 7px 14px;
    border-radius: 999px;
    background: #FCD34D;
    color: #1A1A1A;
    z-index: 2;
  }

  .vf-kit-kids__body {
    padding: 24px 22px 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
  }

  .vf-kit-kids__name {
    font-family: 'Caprasimo', Georgia, serif;
    font-size: 24px;
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0;
    font-weight: 400;
  }

  .vf-kit-kids__age {
    font-size: 13px;
    color: var(--vf-green-dark, #1B5E20);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
  }

  .vf-kit-kids__desc {
    font-size: 14px;
    line-height: 1.5;
    color: #555;
    margin: 4px 0 0;
  }

  .vf-kit-kids__bullets {
    list-style: none;
    margin: 8px 0 4px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .vf-kit-kids__bullets li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13.5px;
    line-height: 1.4;
    color: #1A1A1A;
  }
  .vf-kit-kids__bullets svg {
    width: 16px;
    height: 16px;
    color: var(--vf-green, #5EBC43);
    flex-shrink: 0;
    margin-top: 2px;
  }

  .vf-kit-kids__price-box {
    background: #F0FDF4;
    padding: 16px 18px;
    border-radius: 12px;
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 4px;
    border: 1px solid #DCFCE7;
  }
  .vf-kit-kids__installment {
    font-family: 'Caprasimo', Georgia, serif;
    font-size: 24px;
    color: var(--vf-green-dark, #1B5E20);
    line-height: 1.15;
    font-weight: 400;
    letter-spacing: -0.005em;
  }
  .vf-kit-kids__price {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #6B6B6B;
    line-height: 1.3;
    font-weight: 500;
  }

  .vf-kit-kids__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--vf-green, #5EBC43);
    color: #ffffff;
    font-weight: 700;
    font-size: 14.5px;
    padding: 14px 22px;
    border-radius: 999px;
    text-decoration: none;
    text-align: center;
    transition: background 0.2s ease, transform 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    box-shadow: 0 2px 0 var(--vf-green-dark, #1B5E20);
  }
  .vf-kit-kids__cta:hover {
    background: var(--vf-green-dark, #1B5E20);
    transform: translateY(1px);
    box-shadow: 0 1px 0 var(--vf-green-dark, #1B5E20);
  }
  .vf-kit-kids__cta span { transition: transform 0.2s ease; }
  .vf-kit-kids__cta:hover span { transform: translateX(4px); }

  .vf-kit-kids__help-box {
    margin: 48px auto 0;
    max-width: 640px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: #FFFFFF;
    border-radius: 16px;
    border: 1px solid #E5E5E5;
  }
  .vf-kit-kids__help {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    color: #1A1A1A;
    font-weight: 500;
  }
  .vf-kit-kids__help a {
    color: var(--vf-green-dark, #1B5E20);
    font-weight: 700;
    text-decoration: underline;
  }

  .vf-kit-kids__wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #FFFFFF;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14.5px;
    letter-spacing: 0.02em;
    box-shadow: 0 2px 0 #128C7E;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  }
  .vf-kit-kids__wa-btn:hover {
    background: #128C7E;
    transform: translateY(1px);
    box-shadow: 0 1px 0 #128C7E;
  }
  .vf-kit-kids__wa-btn svg {
    flex-shrink: 0;
  }

  @media (max-width: 750px) {
    .vf-kit-kids__grid { grid-template-columns: 1fr; gap: 20px; }
    .vf-kit-kids__container { padding: 0 16px; }
    .vf-kit-kids__name { font-size: 22px; }
    .vf-kit-kids__body { padding: 20px 18px 22px; gap: 8px; }
  }
/* END_SECTION:vf-kit-selector-kids */

/* START_SECTION:vf-kit-selector (INDEX:17) */
.vf-kit{padding:clamp(48px,7vw,80px) 0;background:#fafafa;font-family:Inter,system-ui,sans-serif}.vf-kit__container{max-width:1000px;margin:auto;padding:0 24px}.vf-kit__heading{font-family:Caprasimo,Georgia,serif;font-size:clamp(28px,4vw,44px);color:#1B5E20;text-align:center;margin:0 0 10px}.vf-kit__subheading{text-align:center;max-width:590px;margin:0 auto 42px;font-size:16px}.vf-kit__grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}.vf-kit__card{position:relative;background:#fff;border:1px solid #ecece7;border-radius:16px;overflow:visible;display:flex;flex-direction:column;box-shadow:0 2px 10px rgba(0,0,0,.04)}.vf-kit__card--sc{border:2px solid #1B5E20}.vf-kit__ribbon{position:absolute;z-index:4;top:-11px;left:14px;background:#1B5E20;color:#fff!important;border-radius:999px;padding:5px 11px;font-size:10px;font-weight:800;white-space:nowrap}.vf-kit__media-link{display:block;text-decoration:none}.vf-kit__media{position:relative;aspect-ratio:1/1;background:#F5EDE0;border-radius:14px 14px 0 0;display:flex;align-items:center;justify-content:center;overflow:hidden}.vf-kit__media img{width:100%;height:100%;object-fit:contain}.vf-kit__badge{position:absolute;top:12px;right:12px;z-index:2;border-radius:999px;padding:5px 9px;font-size:10px;font-weight:800;background:#1a1a1a;color:#fff}.vf-kit__badge--best{background:#5EBC43;color:#fff!important}.vf-kit__badge--kids{background:#1B5E20;color:#fff!important}.vf-kit__badge--family{background:#1B5E20;color:#fff!important}.vf-kit__body{padding:18px;display:flex;flex:1;flex-direction:column;gap:7px}.vf-kit__name{font-family:Caprasimo,Georgia,serif;font-size:18px;margin:0}.vf-kit__age{font-size:11px;text-transform:uppercase;letter-spacing:.05em;color:#777;margin:0}.vf-kit__desc{font-size:13px;line-height:1.4;color:#555;margin:0;min-height:36px}.vf-kit__price-box{margin-top:auto;background:#F0FDF4;border:1px solid #DCFCE7;border-radius:10px;padding:12px;display:flex;flex-direction:column;gap:3px}.vf-kit__installment{font-family:Caprasimo,Georgia,serif;font-size:21px;color:#1B5E20}.vf-kit__price{font-size:12px;color:#666}.vf-kit__sc-hint{margin-top:5px;background:#1B5E20;color:#fff!important;border-radius:7px;padding:5px 7px;text-align:center;font-size:11px;font-weight:800}.vf-kit__cta{margin-top:5px;display:flex;justify-content:center;gap:7px;background:#5EBC43;color:#fff!important;text-decoration:none!important;border-radius:999px;padding:12px;font-size:13px;font-weight:800}.vf-kit__promo{max-width:760px;margin:36px auto 0;background:linear-gradient(135deg,#1B5E20,#2E7D32);color:#fff;border-radius:18px;padding:28px;text-align:center}.vf-kit__promo,.vf-kit__promo *{color:#fff!important}.vf-kit__promo-badge{display:inline-block;border:1px solid rgba(255,255,255,.3);background:rgba(255,255,255,.12);border-radius:999px;padding:6px 13px;font-size:11px;font-weight:800;letter-spacing:.08em}.vf-kit__promo h3{font-family:Caprasimo,Georgia,serif;font-size:27px;margin:12px 0 8px}.vf-kit__promo p{max-width:620px;margin:0 auto 17px;line-height:1.55}.vf-kit__countdown{display:inline-block;background:rgba(255,255,255,.12);padding:9px 13px;border-radius:9px;font-variant-numeric:tabular-nums}@media(max-width:900px){.vf-kit__grid{grid-template-columns:repeat(2,1fr)}}@media(max-width:540px){.vf-kit__container{padding:0 14px}.vf-kit__grid{gap:12px}.vf-kit__body{padding:13px}.vf-kit__name{font-size:16px}.vf-kit__installment{font-size:18px}.vf-kit__promo{padding:22px 16px}.vf-kit__promo h3{font-size:22px}}
/* END_SECTION:vf-kit-selector */

/* START_SECTION:vf-pdp-aviso-idade (INDEX:18) */
.vf-pdp-idade {
    background: #FFFFFF;
    padding: 32px 0;
    font-family: 'Inter', system-ui, sans-serif;
  }
  .vf-pdp-idade__container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
  }
  .vf-pdp-idade__card {
    background: linear-gradient(135deg, #F5EDE0 0%, #E8F3DA 100%);
    border: 1px solid rgba(27, 94, 32, 0.15);
    border-radius: 18px;
    padding: 24px 28px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
  }
  .vf-pdp-idade__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #1B5E20;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .vf-pdp-idade__icon svg { width: 24px; height: 24px; }
  .vf-pdp-idade__body {
    flex: 1;
  }
  .vf-pdp-idade__title {
    display: block;
    font-family: 'Caprasimo', Georgia, serif;
    font-weight: 400;
    font-size: 19px;
    color: #1B5E20;
    margin-bottom: 6px;
    letter-spacing: -0.005em;
    line-height: 1.2;
  }
  .vf-pdp-idade__text {
    margin: 0 0 12px;
    font-size: 14.5px;
    line-height: 1.55;
    color: #1A1A1A;
  }
  .vf-pdp-idade__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #1B5E20;
    text-decoration: none;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 999px;
    transition: background 0.2s ease, transform 0.2s ease;
    border: 1px solid rgba(27, 94, 32, 0.2);
  }
  .vf-pdp-idade__cta:hover {
    background: #1B5E20;
    color: #fff;
    transform: translateY(-1px);
  }
  .vf-pdp-idade__cta span {
    transition: transform 0.2s ease;
  }
  .vf-pdp-idade__cta:hover span {
    transform: translateX(3px);
  }

  @media (min-width: 750px) {
    .vf-pdp-idade { padding: 48px 0; }
    .vf-pdp-idade__card { padding: 28px 36px; }
    .vf-pdp-idade__title { font-size: 22px; }
    .vf-pdp-idade__text { font-size: 15.5px; }
  }
/* END_SECTION:vf-pdp-aviso-idade */

/* START_SECTION:vf-pdp-benefits (INDEX:19) */
.vf-benef { padding: 34px 16px; background: #FDFDF9; }
  .vf-benef__wrap { max-width: 1080px; margin: 0 auto; }
  .vf-benef__eyebrow { margin: 0 0 6px; text-align: center; font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: #5EBC43; }
  .vf-benef__heading { margin: 0 0 8px; text-align: center; font-size: 25px; line-height: 1.2; font-weight: 800; color: #16301A; }
  .vf-benef__sub { margin: 0 auto 24px; max-width: 620px; text-align: center; font-size: 14.5px; line-height: 1.5; color: #5B6B5B; }
  .vf-benef__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .vf-benef__card { position: relative; aspect-ratio: 4 / 5; border-radius: 18px; overflow: hidden; background: #E4F0DC; box-shadow: 0 8px 22px rgba(22,48,26,.10); isolation: isolate; }
  .vf-benef__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
  .vf-benef__img--ph { background: repeating-linear-gradient(45deg, #EAF0E4, #EAF0E4 12px, #E0E8D8 12px, #E0E8D8 24px); }
  .vf-benef__scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,22,10,.82) 0%, rgba(10,22,10,.42) 34%, rgba(10,22,10,0) 60%); z-index: 1; }
  .vf-benef__badge { position: absolute; top: 12px; left: 12px; z-index: 2; background: #1B5E20; color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .02em; padding: 5px 11px; border-radius: 999px; box-shadow: 0 2px 8px rgba(0,0,0,.28); max-width: calc(100% - 24px); }
  .vf-benef__card--amber .vf-benef__badge { background: #E8920F; }
  .vf-benef__card--red .vf-benef__badge { background: #E11D2E; }
  .vf-benef__body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 14px 14px 15px; display: flex; flex-direction: column; gap: 4px; }
  .vf-benef__title { margin: 0; font-size: 17px; line-height: 1.22; font-weight: 800; color: #fff; text-shadow: 0 1px 6px rgba(0,0,0,.35); }
  .vf-benef__text { margin: 0; font-size: 12.5px; line-height: 1.4; color: rgba(255,255,255,.92); text-shadow: 0 1px 5px rgba(0,0,0,.35); }
  .vf-benef__card.is-featured { box-shadow: 0 0 0 3px #5EBC43, 0 10px 26px rgba(94,188,67,.28); }
  .vf-benef__card--amber.is-featured { box-shadow: 0 0 0 3px #E8920F, 0 10px 26px rgba(232,146,15,.30); }
  @media (max-width: 900px) { .vf-benef__grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 480px) {
    .vf-benef { padding: 26px 12px; }
    .vf-benef__heading { font-size: 21px; }
    .vf-benef__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .vf-benef__title { font-size: 15px; }
    .vf-benef__text { font-size: 11.5px; }
  }
/* END_SECTION:vf-pdp-benefits */

/* START_SECTION:vf-pdp-calendario-lua-nova (INDEX:20) */
.vf-pdp-cal {
    background: #FFFFFF;
    padding: 72px 0;
    font-family: 'Inter', system-ui, sans-serif;
  }
  .vf-pdp-cal__container {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 24px;
  }
  .vf-pdp-cal__header {
    text-align: center;
    margin-bottom: 40px;
  }
  .vf-pdp-cal__eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: #5EBC43;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
  }
  .vf-pdp-cal__heading {
    font-family: 'Caprasimo', Georgia, serif;
    font-size: clamp(28px, 3.6vw, 38px);
    line-height: 1.15;
    color: #1B5E20;
    margin: 0 0 14px;
    letter-spacing: -0.01em;
    font-weight: 400;
  }
  .vf-pdp-cal__sub {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    max-width: 580px;
    margin: 0 auto;
  }

  .vf-pdp-cal__card {
    background: #F5EDE0;
    border-radius: 18px;
    padding: 8px 0 24px;
    border: 1px solid rgba(27, 94, 32, 0.1);
    overflow: hidden;
  }

  .vf-pdp-cal__table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .vf-pdp-cal__table {
    width: 100%;
    border-collapse: collapse;
    min-width: 540px;
  }
  .vf-pdp-cal__th {
    padding: 18px 16px 14px;
    text-align: left;
    border-bottom: 2px solid rgba(27, 94, 32, 0.2);
    background: transparent;
    vertical-align: bottom;
  }
  .vf-pdp-cal__th--month {
    width: 28%;
  }
  .vf-pdp-cal__th-eyebrow {
    display: block;
    font-size: 10.5px;
    font-weight: 700;
    color: #5EBC43;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
  }
  .vf-pdp-cal__th-label {
    display: block;
    font-family: 'Caprasimo', Georgia, serif;
    font-size: 14px;
    color: #1B5E20;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.005em;
  }
  .vf-pdp-cal__row {
    transition: background 0.15s ease;
  }
  .vf-pdp-cal__row:hover {
    background: rgba(255, 255, 255, 0.6);
  }
  .vf-pdp-cal__row--highlight {
    background: rgba(94, 188, 67, 0.12);
  }
  .vf-pdp-cal__row--highlight:hover {
    background: rgba(94, 188, 67, 0.18);
  }
  .vf-pdp-cal__td {
    padding: 14px 16px;
    font-size: 14px;
    color: #1A1A1A;
    border-bottom: 1px dashed rgba(27, 94, 32, 0.12);
    line-height: 1.4;
  }
  .vf-pdp-cal__row:last-child .vf-pdp-cal__td {
    border-bottom: none;
  }
  .vf-pdp-cal__td--month {
    font-weight: 600;
    color: #1B5E20;
  }
  .vf-pdp-cal__td--strong {
    font-weight: 700;
  }

  .vf-pdp-cal__footnote {
    margin: 20px 24px 0;
    font-size: 13px;
    color: #555;
    line-height: 1.6;
    text-align: center;
    font-style: italic;
  }

  @media (min-width: 750px) {
    .vf-pdp-cal__th { padding: 22px 20px 16px; }
    .vf-pdp-cal__th-label { font-size: 16px; }
    .vf-pdp-cal__td { padding: 16px 20px; font-size: 15px; }
  }
/* END_SECTION:vf-pdp-calendario-lua-nova */

/* START_SECTION:vf-pdp-como-tomar-kids (INDEX:21) */
.vf-kids-como-tomar {
    background: linear-gradient(180deg, #FFFFFF 0%, #FFF8E1 100%);
    padding: 72px 0;
    font-family: 'Inter', system-ui, sans-serif;
  }
  .vf-kids-como-tomar__container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
  }
  .vf-kids-como-tomar__header {
    text-align: center;
    margin-bottom: 40px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }
  .vf-kids-como-tomar__eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: #FCD34D;
    background: #1B5E20;
    padding: 5px 14px;
    border-radius: 999px;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
  }
  .vf-kids-como-tomar__heading {
    font-family: 'Caprasimo', Georgia, serif;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.1;
    color: #1B5E20;
    margin: 0 0 14px;
    letter-spacing: -0.015em;
    font-weight: 400;
  }
  .vf-kids-como-tomar__sub {
    font-size: 16px;
    line-height: 1.55;
    color: #555;
    margin: 0;
  }

  .vf-kids-como-tomar__visual {
    margin: 0 auto 40px;
    max-width: 920px;
    border-radius: 24px;
    overflow: hidden;
    background: #FFF8E1;
    border: 1px solid rgba(252, 211, 77, 0.3);
  }
  .vf-kids-como-tomar__visual img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* 2 PASSOS */
  .vf-kids-como-tomar__steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 48px;
  }
  .vf-kids-como-tomar__step {
    background: #FFFFFF;
    border: 2px solid #FCD34D;
    border-radius: 24px;
    padding: 24px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .vf-kids-como-tomar__step:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(252, 211, 77, 0.2);
  }
  .vf-kids-como-tomar__step--main {
    border-color: #1B5E20;
    background: #E8F3DA;
  }
  .vf-kids-como-tomar__step-head {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 14px;
  }
  .vf-kids-como-tomar__step-num {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: #FCD34D;
    color: #1B5E20;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Caprasimo', Georgia, serif;
    font-size: 24px;
    line-height: 1;
    font-weight: 400;
  }
  .vf-kids-como-tomar__step--main .vf-kids-como-tomar__step-num {
    background: #1B5E20;
    color: #fff;
  }
  .vf-kids-como-tomar__step-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #5EBC43;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
  }
  .vf-kids-como-tomar__step-title {
    font-family: 'Caprasimo', Georgia, serif;
    font-size: 20px;
    color: #1B5E20;
    margin: 0 0 4px;
    letter-spacing: -0.005em;
    line-height: 1.2;
    font-weight: 400;
  }
  .vf-kids-como-tomar__step-when {
    display: block;
    font-size: 13px;
    color: #777;
    font-weight: 600;
  }
  .vf-kids-como-tomar__step-text {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    color: #1A1A1A;
  }
  .vf-kids-como-tomar__step-text strong { color: #1B5E20; }

  .vf-kids-como-tomar__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1B5E20;
    transform: rotate(90deg);
    margin: -4px 0;
  }
  .vf-kids-como-tomar__arrow svg { width: 28px; height: 28px; }

  /* TABELA DE DOSAGEM POR IDADE */
  .vf-kids-como-tomar__dosage {
    background: #FFFFFF;
    border: 2px solid #1B5E20;
    border-radius: 24px;
    padding: 32px 24px;
    margin-bottom: 32px;
  }
  /* NOVO BLOCO DE DOSAGEM */
  .vf-kids-dose__title {
    font-family: 'Caprasimo', Georgia, serif;
    font-size: clamp(22px, 2.8vw, 28px);
    color: #1B5E20;
    text-align: center;
    margin: 0 0 6px;
    font-weight: 400;
    letter-spacing: -0.01em;
  }
  .vf-kids-dose__sub {
    text-align: center;
    font-size: 14px;
    color: #555;
    margin: 0 0 28px;
  }
  .vf-kids-dose__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .vf-kids-dose__card {
    background: linear-gradient(135deg, #FCD34D 0%, #FBBF24 100%);
    border-radius: 16px;
    padding: 20px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
  }
  .vf-kids-dose__age-value {
    font-family: 'Caprasimo', Georgia, serif;
    font-size: clamp(16px, 2.1vw, 20px);
    color: #1B5E20;
    font-weight: 400;
    letter-spacing: -0.01em;
  }
  .vf-kids-dose__ml {
    font-family: 'Caprasimo', Georgia, serif;
    font-size: clamp(32px, 4.4vw, 42px);
    color: #1B5E20;
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1;
    margin-top: 4px;
  }
  .vf-kids-dose__freq {
    font-size: 12.5px;
    color: #1B5E20;
    font-weight: 600;
    letter-spacing: 0.02em;
  }
  .vf-kids-dose__note {
    text-align: center;
    margin: 16px 0 0;
    font-size: 13px;
    color: #777;
    font-style: italic;
  }
  .vf-kids-como-tomar__note-duas {
    max-width: 760px;
    margin: 24px auto 0;
    background: #E8F3DA;
    border: 1px dashed rgba(27, 94, 32, 0.3);
    border-radius: 14px;
    padding: 14px 20px;
    font-size: 14px;
    line-height: 1.55;
    color: #1B5E20;
    text-align: center;
  }
  .vf-kids-como-tomar__note-duas strong { color: #1B5E20; }

  @media (min-width: 640px) {
    .vf-kids-dose__grid { grid-template-columns: repeat(3, 1fr); }
  }
  @media (min-width: 990px) {
    .vf-kids-dose__grid { grid-template-columns: repeat(5, 1fr); }
  }
  .vf-kids-como-tomar__enzima {
    margin-top: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: linear-gradient(135deg, #FFF8E1 0%, #FCD34D 120%);
    border: 1px dashed #FBBF24;
    border-radius: 16px;
    padding: 18px 22px;
  }
  .vf-kids-como-tomar__enzima-icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    background: #1B5E20;
    color: #FCD34D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .vf-kids-como-tomar__enzima-icon svg { width: 20px; height: 20px; }
  .vf-kids-como-tomar__enzima strong {
    display: block;
    font-family: 'Caprasimo', Georgia, serif;
    font-size: 16px;
    color: #1B5E20;
    margin-bottom: 4px;
    font-weight: 400;
  }
  .vf-kids-como-tomar__enzima p {
    margin: 0;
    font-size: 14.5px;
    color: #333;
    line-height: 1.5;
  }
  /* TIP + WARNING */
  .vf-kids-como-tomar__tip {
    background: #DBEAFE;
    border-left: 4px solid #2563EB;
    border-radius: 0 14px 14px 0;
    padding: 16px 20px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 14px;
  }
  .vf-kids-como-tomar__tip-icon {
    flex-shrink: 0;
    color: #2563EB;
    width: 24px;
    height: 24px;
  }
  .vf-kids-como-tomar__tip-icon svg { width: 100%; height: 100%; }
  .vf-kids-como-tomar__tip strong {
    display: block;
    color: #1E40AF;
    font-size: 14px;
    margin-bottom: 3px;
  }
  .vf-kids-como-tomar__tip p {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.55;
    color: #1E40AF;
  }

  .vf-kids-como-tomar__warning {
    background: #FEF3C7;
    border-left: 4px solid #D97706;
    border-radius: 0 14px 14px 0;
    padding: 14px 20px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
  }
  .vf-kids-como-tomar__warning-icon {
    flex-shrink: 0;
    color: #D97706;
    width: 22px;
    height: 22px;
  }
  .vf-kids-como-tomar__warning-icon svg { width: 100%; height: 100%; }
  .vf-kids-como-tomar__warning p {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.55;
    color: #92400E;
  }

  @media (min-width: 750px) {
    .vf-kids-como-tomar { padding: 96px 0; }
    .vf-kids-como-tomar__steps {
      grid-template-columns: 1fr auto 1fr;
      align-items: stretch;
    }
    .vf-kids-como-tomar__arrow {
      transform: rotate(0);
      margin: 0;
    }
    .vf-kids-como-tomar__dosage-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (min-width: 990px) {
    .vf-kids-como-tomar__dosage-grid {
      grid-template-columns: repeat(5, 1fr);
    }
    .vf-kids-como-tomar__dose-card {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 6px;
      padding: 22px 14px;
    }
    .vf-kids-como-tomar__dose-freq {
      min-width: auto;
      text-align: center;
    }
    .vf-kids-como-tomar__dose-amount {
      font-size: 30px;
    }
  }
/* END_SECTION:vf-pdp-como-tomar-kids */

/* START_SECTION:vf-pdp-como-tomar (INDEX:22) */
.vf-pdp-como-tomar {
    background: #FAFAFA;
    padding: 72px 0;
    font-family: 'Inter', system-ui, sans-serif;
  }
  .vf-pdp-como-tomar__container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
  }
  .vf-pdp-como-tomar__header {
    text-align: center;
    margin-bottom: 40px;
  }
  .vf-pdp-como-tomar__eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: #5EBC43;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
  }
  .vf-pdp-como-tomar__heading {
    font-family: 'Caprasimo', Georgia, serif;
    font-size: clamp(28px, 3.8vw, 42px);
    line-height: 1.1;
    color: #1B5E20;
    margin: 0 0 14px;
    letter-spacing: -0.015em;
    font-weight: 400;
  }
  .vf-pdp-como-tomar__sub {
    font-size: 16px;
    line-height: 1.55;
    color: #555;
    max-width: 640px;
    margin: 0 auto;
  }

  .vf-pdp-como-tomar__visual {
    margin: 0 auto 48px;
    max-width: 920px;
    border-radius: 18px;
    overflow: hidden;
    background: #F5EDE0;
  }
  .vf-pdp-como-tomar__visual img {
    width: 100%;
    height: auto;
    display: block;
  }

  .vf-pdp-como-tomar__phases {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .vf-pdp-como-tomar__phase {
    background: #FFFFFF;
    border-radius: 18px;
    padding: 28px;
    border: 1px solid #ECECEC;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
  }
  .vf-pdp-como-tomar__phase:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  }

  .vf-pdp-como-tomar__phase-head {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 18px;
  }
  .vf-pdp-como-tomar__phase-num {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: #1B5E20;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Caprasimo', Georgia, serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1;
  }
  .vf-pdp-como-tomar__phase-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #5EBC43;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 2px;
  }
  .vf-pdp-como-tomar__phase-title {
    font-family: 'Caprasimo', Georgia, serif;
    font-size: 22px;
    color: #1B5E20;
    margin: 0 0 4px;
    letter-spacing: -0.01em;
    line-height: 1.15;
    font-weight: 400;
  }
  .vf-pdp-como-tomar__phase-duration {
    display: block;
    font-size: 13px;
    color: #777;
    font-weight: 600;
  }

  .vf-pdp-como-tomar__phase-intro {
    font-size: 14.5px;
    line-height: 1.55;
    color: #1A1A1A;
    margin: 0 0 18px;
    padding-bottom: 16px;
    border-bottom: 1px dashed rgba(27, 94, 32, 0.18);
  }

  .vf-pdp-como-tomar__doses {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .vf-pdp-como-tomar__dose {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .vf-pdp-como-tomar__dose-component {
    display: inline-block;
    align-self: flex-start;
    background: #E8F3DA;
    color: #1B5E20;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 999px;
    letter-spacing: 0.3px;
  }
  .vf-pdp-como-tomar__dose-instruction {
    font-size: 14px;
    color: #1A1A1A;
    line-height: 1.55;
  }

  .vf-pdp-como-tomar__warning {
    margin: 40px auto 0;
    max-width: 800px;
    background: #FEF3C7;
    border: 1px solid #FDE68A;
    border-radius: 14px;
    padding: 16px 20px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
  }
  .vf-pdp-como-tomar__warning-icon {
    flex-shrink: 0;
    color: #D97706;
    width: 24px;
    height: 24px;
  }
  .vf-pdp-como-tomar__warning-icon svg { width: 100%; height: 100%; }
  .vf-pdp-como-tomar__warning p {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: #92400E;
  }
  .vf-pdp-como-tomar__warning strong { color: #92400E; }

  @media (min-width: 750px) {
    .vf-pdp-como-tomar { padding: 96px 0; }
    .vf-pdp-como-tomar__phases { grid-template-columns: 1fr 1fr; gap: 24px; }
    .vf-pdp-como-tomar__phase { padding: 32px; }
  }
/* END_SECTION:vf-pdp-como-tomar */

/* START_SECTION:vf-pdp-cross-familia (INDEX:23) */
.vf-xfam{ padding:36px 0; background:var(--vf-bg,#FAF8F2); }
  .vf-xfam__title{ font-family:var(--font-heading,inherit); font-size:clamp(22px,3vw,30px); text-align:center; margin:0 0 6px; color:var(--vf-text,#1A1A1A); }
  .vf-xfam__sub{ text-align:center; color:var(--vf-muted,#666); margin:0 auto 22px; font-size:14px; max-width:52ch; line-height:1.5; }
  .vf-xfam__grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:14px; max-width:760px; margin:18px auto 0; }
  .vf-xfam__card{ background:var(--vf-surface,#fff); border:1px solid var(--vf-border,#E3E3DD); border-radius:14px; padding:16px; display:flex; flex-direction:column; align-items:center; gap:10px; text-align:center; }
  .vf-xfam__img{ width:110px; height:110px; background:var(--vf-beige,#F5F1E8); border-radius:12px; display:flex; align-items:center; justify-content:center; overflow:hidden; }
  .vf-xfam__img img{ width:100%; height:100%; object-fit:contain; padding:8px; }
  .vf-xfam__body{ display:flex; flex-direction:column; gap:3px; }
  .vf-xfam__name{ font-family:var(--font-heading,inherit); font-size:15px; color:var(--vf-text,#1A1A1A); line-height:1.25; }
  .vf-xfam__name:hover{ color:var(--vf-green-dark,#1B5E20); }
  .vf-xfam__price{ font-weight:800; color:var(--vf-green-dark,#1B5E20); font-size:16px; }
  .vf-xfam__add{ margin-top:auto; width:100%; border:0; cursor:pointer; background:var(--vf-green,#5EBC43); color:#08210f; font-weight:800; font-size:13.5px; padding:11px 14px; border-radius:9px; transition:background .15s, color .15s; }
  .vf-xfam__add:hover{ background:var(--vf-green-dark,#1B5E20); color:#fff; }
  .vf-xfam__add:disabled{ opacity:.55; cursor:default; }
/* END_SECTION:vf-pdp-cross-familia */

/* START_SECTION:vf-pdp-economia-familia (INDEX:24) */
.vf-econ {
    background: linear-gradient(180deg, #FFFFFF 0%, #E8F3DA 100%);
    padding: 72px 0;
    font-family: 'Inter', system-ui, sans-serif;
  }
  .vf-econ__container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
  }
  .vf-econ__header {
    text-align: center;
    margin-bottom: 40px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
  }
  .vf-econ__eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #FBBF24;
    background: #1B5E20;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 14px;
  }
  .vf-econ__heading {
    font-family: 'Caprasimo', Georgia, serif;
    font-size: clamp(28px, 4vw, 42px);
    color: #1B5E20;
    font-weight: 400;
    letter-spacing: -0.015em;
    line-height: 1.15;
    margin: 0;
  }
  .vf-econ__compare {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: stretch;
    position: relative;
  }
  .vf-econ__col {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 28px 28px 32px;
    display: flex;
    flex-direction: column;
    border: 2px solid #ECECEC;
  }
  .vf-econ__col--kit {
    background: linear-gradient(135deg, #FCD34D 0%, #FBBF24 100%);
    border-color: #FBBF24;
    position: relative;
  }
  .vf-econ__col-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #777;
    margin-bottom: 18px;
  }
  .vf-econ__col-label--kit {
    color: #1B5E20;
  }
  .vf-econ__list {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
  }
  .vf-econ__list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14.5px;
    color: #333;
    padding-bottom: 12px;
    border-bottom: 1px dashed rgba(0,0,0,0.08);
  }
  .vf-econ__list li:last-child { border-bottom: none; padding-bottom: 0; }
  .vf-econ__col--kit .vf-econ__list li { color: #1B5E20; border-bottom-color: rgba(27, 94, 32, 0.2); }
  .vf-econ__list strong {
    font-family: 'Caprasimo', Georgia, serif;
    font-weight: 400;
    font-size: 16px;
    color: #1B5E20;
  }
  .vf-econ__list-frete span,
  .vf-econ__list-frete strong { color: #777; font-size: 13px; }
  .vf-econ__list-frete--free strong { color: #1B5E20; font-weight: 700; font-family: 'Inter', sans-serif; }
  .vf-econ__list-desconto span,
  .vf-econ__list-desconto strong { color: #1B5E20; font-weight: 700; }
  .vf-econ__total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-top: 14px;
    border-top: 2px solid rgba(0,0,0,0.1);
  }
  .vf-econ__col--kit .vf-econ__total { border-top-color: rgba(27, 94, 32, 0.3); }
  .vf-econ__total-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #1B5E20;
  }
  .vf-econ__total-value {
    font-family: 'Caprasimo', Georgia, serif;
    font-weight: 400;
    font-size: clamp(28px, 4vw, 38px);
    color: #1B5E20;
    letter-spacing: -0.01em;
  }
  .vf-econ__total--separado .vf-econ__total-value { color: #777; text-decoration: line-through; text-decoration-thickness: 2px; }
  .vf-econ__economia {
    margin-top: 18px;
    background: #1B5E20;
    color: #FCD34D;
    padding: 14px 18px;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
  }
  .vf-econ__economia span {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .vf-econ__economia strong {
    font-family: 'Caprasimo', Georgia, serif;
    font-size: clamp(26px, 3.4vw, 34px);
    font-weight: 400;
    letter-spacing: -0.01em;
  }
  .vf-econ__vs {
    align-self: center;
    background: #1B5E20;
    color: #FCD34D;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Caprasimo', Georgia, serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.04em;
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
    z-index: 2;
    margin: -10px auto;
  }
  .vf-econ__footnote {
    text-align: center;
    margin: 32px 0 0;
    font-size: 13.5px;
    color: #555;
    font-style: italic;
  }
  @media (min-width: 820px) {
    .vf-econ__compare {
      grid-template-columns: 1fr auto 1fr;
      gap: 24px;
    }
    .vf-econ__vs { margin: 0; }
  }
/* END_SECTION:vf-pdp-economia-familia */

/* START_SECTION:vf-pdp-escolar-kids (INDEX:25) */
.vf-kids-esc {
    background: linear-gradient(180deg, #FFF8E1 0%, #FFFFFF 100%);
    padding: 72px 0;
    font-family: 'Inter', system-ui, sans-serif;
  }
  .vf-kids-esc__container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
  }
  .vf-kids-esc__split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
  }
  .vf-kids-esc__media {
    border: 2px solid #FCD34D;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 1;
    background: #FFF8E1;
  }
  .vf-kids-esc__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .vf-kids-esc__eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #FBBF24;
    background: #1B5E20;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 14px;
  }
  .vf-kids-esc__heading {
    font-family: 'Caprasimo', Georgia, serif;
    font-size: clamp(28px, 4vw, 40px);
    color: #1B5E20;
    font-weight: 400;
    letter-spacing: -0.015em;
    line-height: 1.15;
    margin: 0 0 16px;
  }
  .vf-kids-esc__body {
    font-size: 16px;
    line-height: 1.55;
    color: #333;
    margin: 0 0 24px;
  }
  .vf-kids-esc__list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .vf-kids-esc__list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
  }
  .vf-kids-esc__check {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #FCD34D;
    color: #1B5E20;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .vf-kids-esc__check svg { width: 16px; height: 16px; }
  .vf-kids-esc__list strong {
    display: block;
    font-family: 'Caprasimo', Georgia, serif;
    font-size: 18px;
    color: #1B5E20;
    margin-bottom: 4px;
    font-weight: 400;
    letter-spacing: -0.005em;
  }
  .vf-kids-esc__list p {
    margin: 0;
    font-size: 14.5px;
    color: #555;
    line-height: 1.5;
  }
  .vf-kids-esc__footnote {
    font-size: 13px;
    color: #777;
    font-style: italic;
    margin: 0;
  }
  @media (min-width: 900px) {
    .vf-kids-esc__split {
      grid-template-columns: 1fr 1.2fr;
      gap: 56px;
    }
  }
/* END_SECTION:vf-pdp-escolar-kids */

/* START_SECTION:vf-pdp-estatistica-kids (INDEX:26) */
.vf-kids-est {
    background: #1B5E20;
    color: #fff;
    font-family: 'Inter', system-ui, sans-serif;
    overflow: hidden;
    position: relative;
  }
  .vf-kids-est::before {
    content: '';
    position: absolute;
    top: 24px;
    right: 24px;
    width: 80px;
    height: 80px;
    background: #FCD34D;
    border-radius: 50%;
    opacity: 0.15;
    z-index: 0;
  }
  .vf-kids-est__container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  .vf-kids-est__split {
    display: grid;
    grid-template-columns: 1fr;
  }
  .vf-kids-est__media {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #0D3E12;
  }
  .vf-kids-est__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .vf-kids-est__content {
    padding: 56px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
  }
  .vf-kids-est__eyebrow {
    display: inline-block;
    align-self: flex-start;
    font-size: 12px;
    font-weight: 700;
    color: #1B5E20;
    background: #FCD34D;
    padding: 5px 14px;
    border-radius: 999px;
    letter-spacing: 1.5px;
  }
  .vf-kids-est__stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .vf-kids-est__stat-number {
    font-family: 'Caprasimo', Georgia, serif;
    font-size: clamp(56px, 9vw, 110px);
    line-height: 0.95;
    color: #FCD34D;
    letter-spacing: -0.03em;
    font-weight: 400;
  }
  .vf-kids-est__stat-label {
    font-family: 'Caprasimo', Georgia, serif;
    font-size: clamp(20px, 2.6vw, 28px);
    line-height: 1.2;
    color: #fff;
    margin: 0;
    letter-spacing: -0.01em;
    font-weight: 400;
    max-width: 480px;
  }
  .vf-kids-est__body {
    margin: 0;
    font-size: 15.5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    max-width: 480px;
  }
  .vf-kids-est__source {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 8px 0 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
    font-style: italic;
  }
  .vf-kids-est__source svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
  }

  @media (min-width: 750px) {
    .vf-kids-est__split { grid-template-columns: 1fr 1fr; }
    .vf-kids-est__media { aspect-ratio: auto; }
    .vf-kids-est__content { padding: 72px 56px; }
  }
  @media (min-width: 990px) {
    .vf-kids-est__content { padding: 96px 80px; }
  }
/* END_SECTION:vf-pdp-estatistica-kids */

/* START_SECTION:vf-pdp-estatistica (INDEX:27) */
.vf-pdp-est {
    background: #1B5E20;
    color: #fff;
    font-family: 'Inter', system-ui, sans-serif;
    overflow: hidden;
  }
  .vf-pdp-est__container {
    max-width: 1280px;
    margin: 0 auto;
  }
  .vf-pdp-est__split {
    display: grid;
    grid-template-columns: 1fr;
  }
  .vf-pdp-est__media {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #0D3E12;
  }
  .vf-pdp-est__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .vf-pdp-est__content {
    padding: 56px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
  }
  .vf-pdp-est__eyebrow {
    display: inline-block;
    align-self: flex-start;
    font-size: 12px;
    font-weight: 700;
    color: #C0DE96;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  .vf-pdp-est__stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .vf-pdp-est__stat-number {
    font-family: 'Caprasimo', Georgia, serif;
    font-size: clamp(56px, 9vw, 110px);
    line-height: 0.95;
    color: #fff;
    letter-spacing: -0.03em;
    font-weight: 400;
  }
  .vf-pdp-est__stat-label {
    font-family: 'Caprasimo', Georgia, serif;
    font-size: clamp(20px, 2.6vw, 28px);
    line-height: 1.2;
    color: #fff;
    margin: 0;
    letter-spacing: -0.01em;
    font-weight: 400;
    max-width: 480px;
  }
  .vf-pdp-est__body {
    margin: 0;
    font-size: 15.5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    max-width: 480px;
  }
  .vf-pdp-est__source {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 8px 0 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
    font-style: italic;
  }
  .vf-pdp-est__source svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
  }

  @media (min-width: 750px) {
    .vf-pdp-est__split {
      grid-template-columns: 1fr 1fr;
    }
    .vf-pdp-est__media {
      aspect-ratio: auto;
    }
    .vf-pdp-est__content {
      padding: 72px 56px;
    }
  }

  @media (min-width: 990px) {
    .vf-pdp-est__content {
      padding: 96px 80px;
    }
  }
/* END_SECTION:vf-pdp-estatistica */

/* START_SECTION:vf-pdp-familia-juntos (INDEX:28) */
.vf-fam {
    background: #FAFAFA;
    padding: 72px 0;
    font-family: 'Inter', system-ui, sans-serif;
  }
  .vf-fam__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
  }
  .vf-fam__header {
    text-align: center;
    margin-bottom: 48px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }
  .vf-fam__eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #1B5E20;
    background: #E8F3DA;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 14px;
  }
  .vf-fam__heading {
    font-family: 'Caprasimo', Georgia, serif;
    font-size: clamp(28px, 4vw, 40px);
    color: #1B5E20;
    font-weight: 400;
    letter-spacing: -0.015em;
    line-height: 1.15;
    margin: 0 0 12px;
  }
  .vf-fam__sub {
    font-size: 16px;
    line-height: 1.55;
    color: #555;
    margin: 0;
  }
  .vf-fam__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .vf-fam__card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 28px 24px;
    border: 2px solid #ECECEC;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .vf-fam__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(27, 94, 32, 0.1);
  }
  .vf-fam__card--adulto { border-color: #5EBC43; }
  .vf-fam__card--kids24,
  .vf-fam__card--kids59 { border-color: #FCD34D; }
  .vf-fam__icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #FFF8E1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .vf-fam__card--adulto .vf-fam__icon { background: #E8F3DA; }
  .vf-fam__icon svg { width: 30px; height: 30px; color: #1B5E20; }
  .vf-fam__badge {
    display: inline-block;
    align-self: flex-start;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #FFFFFF;
    background: #5EBC43;
    padding: 4px 10px;
    border-radius: 999px;
  }
  .vf-fam__badge--kids {
    background: #FBBF24;
    color: #1B5E20;
  }
  .vf-fam__card-title {
    font-family: 'Caprasimo', Georgia, serif;
    font-size: 20px;
    color: #1B5E20;
    font-weight: 400;
    letter-spacing: -0.01em;
    margin: 0;
  }
  .vf-fam__card-age {
    font-size: 12.5px;
    color: #777;
    margin: 0;
  }
  .vf-fam__card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
  }
  .vf-fam__card-list li {
    font-size: 13.5px;
    color: #333;
    padding-left: 18px;
    position: relative;
    line-height: 1.4;
  }
  .vf-fam__card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #FCD34D;
  }
  .vf-fam__card--adulto .vf-fam__card-list li::before { background: #5EBC43; }
  .vf-fam__card-cycle {
    margin-top: 6px;
    padding-top: 12px;
    border-top: 1px dashed rgba(27, 94, 32, 0.2);
    font-size: 12.5px;
    font-weight: 700;
    color: #1B5E20;
  }
  .vf-fam__footnote {
    text-align: center;
    margin: 32px 0 0;
    font-size: 13.5px;
    color: #777;
    font-style: italic;
  }
  @media (min-width: 700px) {
    .vf-fam__grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  }
  @media (min-width: 1024px) {
    .vf-fam__grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
  }
/* END_SECTION:vf-pdp-familia-juntos */

/* START_SECTION:vf-pdp-faq (INDEX:29) */
.vf-pdp-faq {
    background: #FFFFFF;
    padding: 64px 0;
    font-family: 'Inter', system-ui, sans-serif;
  }
  .vf-pdp-faq__container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .vf-pdp-faq__intro {
    max-width: 480px;
  }
  .vf-pdp-faq__eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: #5EBC43;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
  }
  .vf-pdp-faq__heading {
    font-family: 'Caprasimo', Georgia, serif;
    font-size: clamp(28px, 3.6vw, 40px);
    line-height: 1.1;
    color: #1B5E20;
    margin: 0 0 14px;
    letter-spacing: -0.015em;
    font-weight: 400;
  }
  .vf-pdp-faq__sub {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin: 0 0 24px;
  }

  .vf-pdp-faq__support {
    background: #F5EDE0;
    border-radius: 14px;
    padding: 18px 20px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
  }
  .vf-pdp-faq__support-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1B5E20;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .vf-pdp-faq__support-icon svg { width: 20px; height: 20px; }
  .vf-pdp-faq__support strong {
    display: block;
    font-family: 'Caprasimo', Georgia, serif;
    font-weight: 400;
    color: #1B5E20;
    font-size: 16px;
    margin-bottom: 4px;
    letter-spacing: -0.005em;
  }
  .vf-pdp-faq__support p {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.55;
    color: #1A1A1A;
  }

  /* Coluna da direita (lista + cta) */
  .vf-pdp-faq__column {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  /* CTA Fale conosco */
  .vf-pdp-faq__cta {
    background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 100%);
    color: #fff;
    border-radius: 18px;
    padding: 28px 26px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
  }
  .vf-pdp-faq__cta-text {
    font-family: 'Caprasimo', Georgia, serif;
    font-size: clamp(18px, 2.2vw, 22px);
    line-height: 1.25;
    color: #fff;
    margin: 0;
    letter-spacing: -0.005em;
    font-weight: 400;
  }
  .vf-pdp-faq__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  }
  .vf-pdp-faq__cta-btn:hover {
    background: #20BD5A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  }
  .vf-pdp-faq__cta-btn svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
  }

  /* Lista de perguntas */
  .vf-pdp-faq__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .vf-pdp-faq__item {
    background: #FAFAFA;
    border: 1px solid #ECECEC;
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  }
  .vf-pdp-faq__item[open] {
    background: #FFFFFF;
    border-color: #C0DE96;
    box-shadow: 0 4px 14px rgba(27, 94, 32, 0.06);
  }
  .vf-pdp-faq__q {
    list-style: none;
    padding: 20px 22px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #1A1A1A;
    line-height: 1.4;
  }
  .vf-pdp-faq__q::-webkit-details-marker { display: none; }
  .vf-pdp-faq__item[open] .vf-pdp-faq__q-text {
    color: #1B5E20;
  }

  .vf-pdp-faq__caret {
    position: relative;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #E8F3DA;
    transition: background 0.2s ease, transform 0.2s ease;
  }
  .vf-pdp-faq__caret::before,
  .vf-pdp-faq__caret::after {
    content: '';
    position: absolute;
    background: #1B5E20;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.2s ease;
  }
  .vf-pdp-faq__caret::before { width: 12px; height: 2px; }
  .vf-pdp-faq__caret::after { width: 2px; height: 12px; }
  .vf-pdp-faq__item[open] .vf-pdp-faq__caret {
    background: #1B5E20;
    transform: rotate(45deg);
  }
  .vf-pdp-faq__item[open] .vf-pdp-faq__caret::before,
  .vf-pdp-faq__item[open] .vf-pdp-faq__caret::after {
    background: #fff;
  }

  .vf-pdp-faq__a {
    padding: 0 22px 22px;
    font-size: 14.5px;
    line-height: 1.7;
    color: #1A1A1A;
  }
  .vf-pdp-faq__a p { margin: 0 0 10px; }
  .vf-pdp-faq__a p:last-child { margin-bottom: 0; }
  .vf-pdp-faq__a strong { color: #1B5E20; font-weight: 600; }
  .vf-pdp-faq__a a {
    color: #1B5E20;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 600;
  }
  .vf-pdp-faq__a a:hover { color: #5EBC43; }

  /* Desktop: split layout (intro sticky + lista) */
  @media (min-width: 990px) {
    .vf-pdp-faq { padding: 96px 0; }
    .vf-pdp-faq__container {
      grid-template-columns: 0.85fr 1fr;
      gap: 64px;
    }
    .vf-pdp-faq__intro {
      position: sticky;
      top: 100px;
      align-self: start;
    }
  }
/* END_SECTION:vf-pdp-faq */

/* START_SECTION:vf-pdp-ingredientes-detalhe (INDEX:30) */
.vf-pdp-ing {
    background: #E8F3DA;
    padding: 64px 0;
    font-family: 'Inter', system-ui, sans-serif;
  }
  .vf-pdp-ing__container {
    max-width: 1280px;
    margin: 0 auto;
  }
  .vf-pdp-ing__header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 24px;
  }
  .vf-pdp-ing__eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: #1B5E20;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
  }
  .vf-pdp-ing__heading {
    font-family: 'Caprasimo', Georgia, serif;
    font-size: clamp(28px, 3.6vw, 38px);
    line-height: 1.15;
    color: #1B5E20;
    margin: 0 0 12px;
    letter-spacing: -0.01em;
    font-weight: 400;
  }
  .vf-pdp-ing__sub {
    font-size: 15px;
    line-height: 1.55;
    color: #1A1A1A;
    max-width: 620px;
    margin: 0 auto;
  }

  /* Scroller horizontal (mobile padrão) */
  .vf-pdp-ing__scroller {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 4px 24px 16px;
    scrollbar-width: none;
  }
  .vf-pdp-ing__scroller::-webkit-scrollbar { display: none; }

  .vf-pdp-ing__card {
    flex: 0 0 75%;
    max-width: 280px;
    scroll-snap-align: start;
    background: #FFFFFF;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .vf-pdp-ing__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .vf-pdp-ing__image {
    aspect-ratio: 1 / 1;
    background: #C0DE96;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .vf-pdp-ing__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .vf-pdp-ing__leaf {
    color: #1B5E20;
    opacity: 0.4;
  }
  .vf-pdp-ing__leaf svg { width: 64px; height: 64px; }

  .vf-pdp-ing__body {
    padding: 20px 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
  }
  .vf-pdp-ing__name {
    font-family: 'Caprasimo', Georgia, serif;
    font-size: 19px;
    color: #1B5E20;
    margin: 0;
    letter-spacing: -0.005em;
    line-height: 1.2;
    font-weight: 400;
  }
  .vf-pdp-ing__latin {
    font-style: italic;
    font-size: 12px;
    color: #777;
    margin-bottom: 2px;
  }
  .vf-pdp-ing__desc {
    margin: 4px 0 0;
    font-size: 13.5px;
    color: #1A1A1A;
    line-height: 1.55;
    flex: 1;
  }
  .vf-pdp-ing__tag {
    align-self: flex-start;
    margin-top: 10px;
    background: #E8F3DA;
    color: #1B5E20;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 999px;
  }

  /* Tablet: 3 colunas */
  @media (min-width: 750px) {
    .vf-pdp-ing { padding: 88px 0; }
    .vf-pdp-ing__card { flex: 0 0 calc(33.333% - 12px); max-width: none; }
  }

  /* Desktop: grid 5 colunas (sem scroll horizontal) */
  @media (min-width: 1100px) {
    .vf-pdp-ing__scroller {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      overflow: visible;
      padding: 4px 24px 0;
    }
    .vf-pdp-ing__card { flex: 1; max-width: none; }
  }
/* END_SECTION:vf-pdp-ingredientes-detalhe */

/* START_SECTION:vf-pdp-main (INDEX:31) */
.vf-pdp {
    background: #FFFFFF;
    padding: 32px 0 64px;
    font-family: 'Inter', system-ui, sans-serif;
  }
  .vf-pdp__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .vf-pdp__gallery { display: flex; flex-direction: column; gap: 12px; }
  .vf-pdp__main-image {
    aspect-ratio: 1 / 1;
    background: #F5EDE0;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .vf-pdp__img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .vf-pdp__img--placeholder { color: #5EBC43; opacity: 0.4; padding: 60px; }
  .vf-pdp__img--placeholder svg { width: 100%; height: 100%; }

  .vf-pdp__thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
  .vf-pdp__thumb {
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid transparent;
    background: #F5EDE0;
    cursor: pointer;
    padding: 0;
    transition: border-color 0.2s ease;
  }
  .vf-pdp__thumb:hover { border-color: #C0DE96; }
  .vf-pdp__thumb.is-active { border-color: var(--vf-green-dark, #1B5E20); }
  .vf-pdp__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .vf-pdp__thumb--placeholder { background: #F5EDE0; }

  .vf-pdp__buy-inner { display: flex; flex-direction: column; gap: 16px; }

  .vf-pdp__vendor {
    font-size: 12px;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0;
    font-weight: 600;
  }

  .vf-pdp__title {
    font-family: 'Caprasimo', Georgia, serif;
    font-size: clamp(28px, 3.6vw, 40px);
    line-height: 1.15;
    margin: 0;
    color: var(--vf-green-dark, #1B5E20);
    letter-spacing: -0.01em;
    font-weight: 400;
  }
  .vf-pdp__age-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #1B5E20;
    background: #E8F3DA;
    padding: 5px 12px;
    border-radius: 999px;
    letter-spacing: 0.4px;
    margin-top: 4px;
  }
  .vf-pdp__age-badge svg { width: 14px; height: 14px; }
  .vf-pdp__protocol-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    padding: 10px 16px;
    background: #E8F3DA;
    border: 1px solid rgba(27, 94, 32, 0.2);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    color: #1B5E20;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
    align-self: flex-start;
    max-width: 100%;
    flex-wrap: wrap;
    line-height: 1.3;
  }
  .vf-pdp__protocol-link:hover {
    background: #1B5E20;
    color: #fff;
    transform: translateY(-1px);
  }
  .vf-pdp__protocol-link svg { width: 16px; height: 16px; flex-shrink: 0; }
  .vf-pdp__protocol-link span { transition: transform 0.2s ease; }
  .vf-pdp__protocol-link:hover span { transform: translateX(3px); }

  .vf-pdp__rating { display: flex; align-items: center; gap: 8px; }
  .vf-pdp__stars { display: inline-flex; color: #FBBF24; }
  .vf-pdp__stars svg { width: 16px; height: 16px; }
  .vf-pdp__rating-text { font-size: 13px; color: #555; }
  .vf-pdp__rating-text strong { color: #1A1A1A; margin-right: 2px; }

  .vf-pdp__short {
    font-size: 16px;
    line-height: 1.55;
    color: #1A1A1A;
    margin: 0;
    font-weight: 500;
  }

  .vf-pdp__price-box {
    background: #F0FDF4;
    border: 1px solid #DCFCE7;
    border-radius: 14px;
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .vf-pdp__compare {
    font-size: 13px;
    color: #777;
    text-decoration: line-through;
  }
  .vf-pdp__installment {
    font-family: 'Caprasimo', Georgia, serif;
    font-size: clamp(22px, 2.8vw, 28px);
    color: var(--vf-green-dark, #1B5E20);
    line-height: 1.15;
    margin: 0;
    font-weight: 400;
    letter-spacing: -0.005em;
  }
  .vf-pdp__price-cash { font-size: 14px; color: #555; margin: 0; font-weight: 500; }

  /* Promo frete grátis — preço em vermelho, igual campanhas anteriores */
  .vf-pdp__price-box--promo {
    background: #FFF1F1;
    border-color: #FFD4D4;
    animation: vf-pdp-price-pulse 1.8s ease-in-out infinite;
  }
  .vf-pdp__price-box--promo .vf-pdp__installment { color: #E11D2E; }
  .vf-pdp__price-box--promo .vf-pdp__price-cash { color: #C11524; font-weight: 700; }
  @keyframes vf-pdp-price-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(225, 29, 46, 0.18); }
    50% { box-shadow: 0 0 0 6px rgba(225, 29, 46, 0); }
  }
  .vf-pdp__pix {
    font-size: 13px;
    color: #1A1A1A;
    margin: 6px 0 0;
    padding-top: 8px;
    border-top: 1px dashed #DCFCE7;
  }
  .vf-pdp__pix strong { color: var(--vf-green-dark, #1B5E20); }

  .vf-pdp__volume-badge {
    margin-top: 10px;
    padding: 10px 14px;
    background: linear-gradient(135deg, #FCD34D 0%, #FBBF24 100%);
    color: #1B5E20;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
    box-shadow: 0 4px 12px rgba(252, 211, 77, 0.25);
  }
  .vf-pdp__volume-badge[hidden] { display: none; }
  .vf-pdp__volume-badge-icon { font-size: 16px; flex-shrink: 0; }
  .vf-pdp__volume-badge-text { flex: 1; }

  .vf-pdp__components {
    border: 1px solid #EFEFEF;
    border-radius: 14px;
    padding: 16px 18px;
    background: #FAFAFA;
  }
  .vf-pdp__components-label {
    font-family: 'Caprasimo', Georgia, serif;
    font-size: 15px;
    color: var(--vf-green-dark, #1B5E20);
    margin: 0 0 12px;
    font-weight: 400;
  }
  .vf-pdp__components-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .vf-pdp__component {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.4;
    color: #1A1A1A;
  }
  .vf-pdp__component-check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--vf-green, #5EBC43);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
  }
  .vf-pdp__component-check svg { width: 12px; height: 12px; }
  .vf-pdp__component-text { display: flex; flex-direction: column; }
  .vf-pdp__component-text strong { font-weight: 600; }
  .vf-pdp__component-spec { font-size: 12px; color: #777; margin-top: 2px; }

  .vf-pdp__form { display: flex; flex-direction: column; gap: 12px; margin-top: 4px; }

  .vf-pdp__variants { display: flex; flex-direction: column; gap: 8px; }
  .vf-pdp__variant-label { font-size: 13px; font-weight: 600; color: #1A1A1A; }
  .vf-pdp__variant-options { display: flex; gap: 8px; flex-wrap: wrap; }
  .vf-pdp__pill {
    cursor: pointer;
    padding: 8px 16px;
    border: 1px solid #E8E8E8;
    border-radius: 999px;
    font-size: 13px;
    color: #1A1A1A;
    transition: all 0.2s ease;
  }
  .vf-pdp__pill input { position: absolute; opacity: 0; }
  .vf-pdp__pill:has(input:checked) {
    background: var(--vf-green-dark, #1B5E20);
    color: #fff;
    border-color: var(--vf-green-dark, #1B5E20);
  }

  /* ==================== SELETOR DE KITS (estilo Botanika) ==================== */
  .vf-pdp__kits { border: 0; padding: 0; margin: 4px 0 0; }

  .vf-pdp__kits-social {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0 0 10px;
    font-size: 13px;
    color: #555;
  }
  .vf-pdp__kits-stars { color: #FBBF24; letter-spacing: 1px; font-size: 14px; line-height: 1; }
  .vf-pdp__kits-social-text { font-weight: 600; color: #1A1A1A; }

  .vf-pdp__kits-legend {
    font-size: 13px;
    font-weight: 600;
    color: #1A1A1A;
    margin: 0 0 10px;
    padding: 0;
  }
  .vf-pdp__kits-legend #vf-pdp-kits-legend-value { color: var(--vf-green-dark, #1B5E20); font-weight: 700; }

  .vf-pdp__kits-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .vf-pdp__kit-card {
    position: relative;
    background: #fff;
    border: 2px solid #E8E8E8;
    border-radius: 16px;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }
  .vf-pdp__kit-card:hover { border-color: #C0DE96; }
  .vf-pdp__kit-card.is-active {
    border-color: var(--vf-green, #5EBC43);
    box-shadow: 0 0 0 1px var(--vf-green, #5EBC43), 0 8px 20px rgba(94, 188, 67, 0.12);
  }

  .vf-pdp__kit-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }
  .vf-pdp__kit-badge {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 6px;
    color: #fff;
    white-space: nowrap;
  }
  .vf-pdp__kit-badge--1 { background: var(--vf-green-dark, #1B5E20); }
  .vf-pdp__kit-badge--2 { background: #FBBF24; color: #1A1A1A; }

  .vf-pdp__kit-row {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .vf-pdp__kit-radio {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 2px solid #cacaca;
    border-radius: 50%;
    position: relative;
    transition: border-color 0.2s ease;
  }
  .vf-pdp__kit-radio::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: transparent;
    transition: background 0.2s ease;
  }
  .vf-pdp__kit-card.is-active .vf-pdp__kit-radio { border-color: var(--vf-green, #5EBC43); }
  .vf-pdp__kit-card.is-active .vf-pdp__kit-radio::after { background: var(--vf-green, #5EBC43); }

  .vf-pdp__kit-image {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 10px;
    background: #F5EDE0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .vf-pdp__kit-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .vf-pdp__kit-image-ph { width: 70%; height: 70%; border-radius: 8px; background: linear-gradient(135deg, #C0DE96, #5ebc43); }

  .vf-pdp__kit-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .vf-pdp__kit-title {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
    color: #1A1A1A;
  }
  .vf-pdp__kit-regular {
    display: block;
    font-size: 11.5px;
    color: #888;
  }

  .vf-pdp__kit-pricing { display: flex; align-items: baseline; gap: 6px; line-height: 1.15; margin-top: 2px; }
  .vf-pdp__kit-installments-label { font-size: 12.5px; color: #777; }
  .vf-pdp__kit-installment-value {
    font-weight: 800;
    font-size: 19px;
    color: var(--vf-green-dark, #1B5E20);
    line-height: 1.15;
  }

  .vf-pdp__kit-cash { display: flex; align-items: baseline; flex-wrap: wrap; gap: 6px; font-size: 12.5px; color: #666; }
  .vf-pdp__kit-cash-value { font-weight: 700; color: #1A1A1A; }
  .vf-pdp__kit-compare {
    font-size: 11.5px;
    color: #999;
    text-decoration: line-through;
  }

  .vf-pdp__kit-discount {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--vf-green-dark, #1B5E20);
    margin-top: 2px;
  }
  .vf-pdp__kit-discount span { text-decoration: none; }

  .vf-pdp__kit-message {
    background: var(--vf-green, #5EBC43);
    color: #fff;
    font-size: 11.5px;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 8px;
    line-height: 1.25;
  }

  /* ==================== KIT CARD — promo frete grátis (vermelho) ==================== */
  .vf-pdp__kit-card--promo {
    border-color: #E11D2E;
    overflow: visible;
  }
  .vf-pdp__kit-card--promo.is-active {
    border-color: #E11D2E;
    box-shadow: 0 0 0 1px #E11D2E, 0 8px 20px rgba(225, 29, 46, 0.18);
  }
  .vf-pdp__kit-card--promo.is-active .vf-pdp__kit-radio { border-color: #E11D2E; }
  .vf-pdp__kit-card--promo.is-active .vf-pdp__kit-radio::after { background: #E11D2E; }
  .vf-pdp__kit-card--promo .vf-pdp__kit-installment-value,
  .vf-pdp__kit-card--promo .vf-pdp__kit-discount {
    color: #E11D2E;
  }
  .vf-pdp__kit-card--promo .vf-pdp__kit-cash-value { color: #C11524; }

  .vf-pdp__kit-promo-ribbon {
    position: absolute;
    top: -12px;
    left: 14px;
    background: #E11D2E;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 999px;
    box-shadow: 0 3px 10px rgba(225, 29, 46, 0.4);
    z-index: 2;
    animation: vf-kit-ribbon-bounce 1.4s ease-in-out infinite;
  }
  @keyframes vf-kit-ribbon-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
  }

  @media (max-width: 640px) {
    .vf-pdp__kit-card { padding: 12px 12px; }
    .vf-pdp__kit-image { width: 52px; height: 52px; }
    .vf-pdp__kit-title { font-size: 15px; }
    .vf-pdp__kit-installment-value { font-size: 18px; }
  }

  /* ==================== CHAMADA DE FRETE GRÁTIS (promo) ==================== */
  .vf-pdp__frete-promo {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #E11D2E;
    color: #fff;
    border-radius: 14px;
    padding: 14px 16px;
    margin: 4px 0 8px;
    animation: vf-pdp-frete-pulse 1.6s ease-in-out infinite;
  }
  @keyframes vf-pdp-frete-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(225, 29, 46, 0.35); }
    50% { box-shadow: 0 0 0 8px rgba(225, 29, 46, 0); }
  }
  .vf-pdp__frete-promo-icon { font-size: 26px; flex-shrink: 0; line-height: 1; }
  .vf-pdp__frete-promo-copy { display: flex; flex-direction: column; gap: 2px; }
  .vf-pdp__frete-promo-copy strong:first-child {
    font-size: 15px;
    letter-spacing: 0.3px;
  }
  .vf-pdp__frete-promo-copy span {
    font-size: 13px;
    opacity: 0.95;
  }
  .vf-pdp__frete-promo-copy .vf-ann-countdown {
    display: inline-block;
    background: rgba(255,255,255,0.22);
    padding: 1px 8px;
    border-radius: 6px;
    font-variant-numeric: tabular-nums;
    font-weight: 700;
  }

  /* ==================== DEPOIMENTOS (carrossel de fotos) ==================== */
  .vf-pdp__dep { margin: 4px 0 8px; }
  .vf-pdp__dep-title {
    font-family: 'Caprasimo', Georgia, serif;
    font-weight: 400;
    font-size: 18px;
    color: var(--vf-green-dark, #1B5E20);
    margin: 0 0 4px;
  }
  .vf-pdp__dep-sub { font-size: 13px; color: #666; margin: 0 0 14px; }
  .vf-pdp__dep-row {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 2px 0 10px;
    -webkit-overflow-scrolling: touch;
  }
  .vf-pdp__dep-row::-webkit-scrollbar { height: 6px; }
  .vf-pdp__dep-row::-webkit-scrollbar-thumb { background: rgba(0,0,0,.15); border-radius: 999px; }
  .vf-pdp__dep-card {
    flex: 0 0 68%;
    width: 68%;
    scroll-snap-align: start;
    background: #fff;
    border: 1px solid #EFEFEF;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  }
  .vf-pdp__dep-media { aspect-ratio: 4 / 5; background: #F5EDE0; }
  .vf-pdp__dep-img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .vf-pdp__dep-ph { width: 100%; height: 100%; background: linear-gradient(135deg, #C0DE96, #5ebc43); opacity: 0.35; }
  .vf-pdp__dep-info { padding: 9px 10px 11px; display: flex; flex-direction: column; gap: 3px; }
  .vf-pdp__dep-stars { color: #FBBF24; font-size: 12px; letter-spacing: 1px; }
  .vf-pdp__dep-quote { font-size: 12px; line-height: 1.35; color: #333; }
  .vf-pdp__dep-name { font-weight: 700; font-size: 11.5px; color: #1A1A1A; }

  /* Cards de repost (prints de Stories) — imagem inteira visivel, sem cortar, tamanho controlado */
  .vf-pdp__dep-media--repost {
    aspect-ratio: auto;
    height: 260px;
    background: #F0EEE9;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .vf-pdp__dep-media--repost .vf-pdp__dep-img {
    width: auto;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
  }

  @media (min-width: 750px) {
    .vf-pdp__dep-card { flex-basis: 46%; width: 46%; }
    .vf-pdp__dep-media--repost { height: 320px; }
  }

  /* ===== Faixa cupom 5OFF (discreta, elegante) ===== */
  .vf-pdp__cupom-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: linear-gradient(90deg, #E8F3DA 0%, #F0FDF4 100%);
    border: 1px dashed var(--vf-green-dark, #1B5E20);
    border-radius: 10px;
    margin-bottom: 4px;
    line-height: 1.35;
  }
  /* Faixa cupom — Semana do Cliente (destaque) */
  .vf-pdp__cupom-badge--sc {
    align-items: flex-start;
    background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 100%);
    border: 0;
    padding: 14px 16px;
    box-shadow: 0 6px 18px rgba(27,94,32,0.22);
    animation: vf-pdp-sc-pulse 1.8s ease-in-out infinite;
  }
  @keyframes vf-pdp-sc-pulse {
    0%, 100% { box-shadow: 0 6px 18px rgba(27,94,32,0.22); }
    50% { box-shadow: 0 6px 26px rgba(27,94,32,0.40); }
  }
  .vf-pdp__cupom-badge--sc .vf-pdp__cupom-badge-icon { font-size: 20px; }
  .vf-pdp__cupom-badge--sc .vf-pdp__cupom-badge-text { color: #ffffff; font-weight: 600; }
  .vf-pdp__cupom-badge--sc .vf-pdp__cupom-badge-text strong { color: #ffffff; background: transparent; }
  .vf-pdp__cupom-badge-tag {
    display: block;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #A8D84A !important;
    margin-bottom: 3px;
    font-weight: 800 !important;
  }
  .vf-pdp__cupom-badge-icon {
    font-size: 18px;
    flex-shrink: 0;
  }
  .vf-pdp__cupom-badge-text {
    font-size: 13.5px;
    color: #1A1A1A;
    font-weight: 500;
    letter-spacing: 0.1px;
  }
  .vf-pdp__cupom-badge-text strong {
    color: var(--vf-green-dark, #1B5E20);
    font-weight: 800;
    background: #FFFFFF;
    padding: 1px 6px;
    border-radius: 4px;
    letter-spacing: 0.4px;
  }

  .vf-pdp__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 24px;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    text-decoration: none;
  }
  .vf-pdp__cta--primary {
    background: var(--vf-green, #5EBC43);
    color: #fff;
    box-shadow: 0 2px 0 var(--vf-green-dark, #1B5E20);
  }
  .vf-pdp__cta--primary:hover {
    background: var(--vf-green-dark, #1B5E20);
    transform: translateY(1px);
    box-shadow: 0 1px 0 var(--vf-green-dark, #1B5E20);
  }
  .vf-pdp__cta--secondary {
    background: transparent;
    color: var(--vf-green-dark, #1B5E20);
    border-color: var(--vf-green-dark, #1B5E20);
  }
  .vf-pdp__cta--secondary:hover {
    background: var(--vf-green-dark, #1B5E20);
    color: #fff;
  }
  .vf-pdp__cta[disabled] { opacity: 0.5; cursor: not-allowed; }
  .vf-pdp__cta span { transition: transform 0.2s ease; }
  .vf-pdp__cta:hover span { transform: translateX(3px); }

  /* Promo frete grátis — botões vermelhos com brilho passando */
  .vf-pdp__cta--promo {
    background: #E11D2E;
    box-shadow: 0 2px 0 #A0121F;
    position: relative;
    overflow: hidden;
  }
  .vf-pdp__cta--promo:hover {
    background: #C11524;
    box-shadow: 0 1px 0 #A0121F;
  }
  .vf-pdp__cta--promo::after {
    content: '';
    position: absolute;
    top: 0;
    left: -60%;
    width: 40%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.45), transparent);
    animation: vf-cta-shimmer 2.4s ease-in-out infinite;
  }
  @keyframes vf-cta-shimmer {
    0% { left: -60%; }
    50% { left: 130%; }
    100% { left: 130%; }
  }
  .vf-pdp__cta--promo-outline {
    color: #E11D2E;
    border-color: #E11D2E;
  }
  .vf-pdp__cta--promo-outline:hover {
    background: #E11D2E;
    color: #fff;
  }

  .vf-pdp__badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    list-style: none;
    margin: 8px 0 0;
    padding: 16px 12px;
    background: #FAFAFA;
    border-radius: 12px;
  }
  .vf-pdp__badges li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
    font-size: 11px;
    color: #555;
    font-weight: 600;
  }
  .vf-pdp__badges svg {
    width: 24px;
    height: 24px;
    color: var(--vf-green-dark, #1B5E20);
  }

  .vf-pdp__frete-mini {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #FFF1F1;
    border: 1px dashed #E11D2E;
    border-radius: 10px;
    padding: 10px 14px;
    margin-top: 4px;
  }
  .vf-pdp__frete-mini-icon {
    font-size: 18px;
    flex-shrink: 0;
    animation: vf-truck-wiggle 1.6s ease-in-out infinite;
  }
  @keyframes vf-truck-wiggle {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(3px); }
  }
  .vf-pdp__frete-mini-text {
    font-size: 13px;
    color: #C11524;
    line-height: 1.4;
  }
  .vf-pdp__frete-mini-text strong { color: #E11D2E; }

  .vf-pdp__accordions {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 8px;
  }
  .vf-pdp__accordion {
    border: 1px solid #EFEFEF;
    border-radius: 12px;
    overflow: hidden;
    background: #FAFAFA;
  }
  .vf-pdp__accordion[open] {
    background: #FFFFFF;
    border-color: #C0DE96;
  }
  .vf-pdp__accordion summary {
    list-style: none;
    cursor: pointer;
    padding: 16px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Caprasimo', Georgia, serif;
    font-size: 15px;
    color: #1A1A1A;
  }
  .vf-pdp__accordion summary::-webkit-details-marker { display: none; }
  .vf-pdp__acc-icon {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
  }
  .vf-pdp__acc-icon::before,
  .vf-pdp__acc-icon::after {
    content: '';
    position: absolute;
    background: var(--vf-green-dark, #1B5E20);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .vf-pdp__acc-icon::before { width: 12px; height: 2px; }
  .vf-pdp__acc-icon::after { width: 2px; height: 12px; transition: opacity 0.2s ease; }
  .vf-pdp__accordion[open] .vf-pdp__acc-icon::after { opacity: 0; }
  .vf-pdp__acc-content {
    padding: 0 18px 18px;
    font-size: 14px;
    line-height: 1.6;
    color: #1A1A1A;
  }
  .vf-pdp__acc-content p { margin: 0 0 8px; }
  .vf-pdp__acc-content strong { color: var(--vf-green-dark, #1B5E20); }

  @media (min-width: 990px) {
    .vf-pdp { padding: 48px 0 80px; }
    .vf-pdp__container {
      grid-template-columns: 1.05fr 1fr;
      gap: 56px;
    }
    .vf-pdp__gallery {
      position: sticky;
      top: 100px;
      align-self: start;
    }
  }

  /* ==================== STICKY CTA BAR ==================== */
  .vf-pdp-sticky {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: #FFFFFF;
    border-top: 1px solid #ECECEC;
    box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.08);
    z-index: 100;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    padding-bottom: env(safe-area-inset-bottom, 0);
  }
  .vf-pdp-sticky.is-visible {
    transform: translateY(0);
    pointer-events: auto;
  }
  /* Espaço extra no final do body pra não cobrir o último conteúdo no mobile quando sticky está visível */
  body:has(.vf-pdp-sticky.is-visible) {
    padding-bottom: 168px;
  }
  @media (min-width: 750px) {
    body:has(.vf-pdp-sticky.is-visible) {
      padding-bottom: 96px;
    }
  }
  .vf-pdp-sticky__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .vf-pdp-sticky__product {
    display: flex;
    gap: 12px;
    align-items: center;
  }
  .vf-pdp-sticky__thumb {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
    background: #F5EDE0;
  }
  .vf-pdp-sticky__info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .vf-pdp-sticky__name {
    font-size: 13px;
    font-weight: 600;
    color: #1A1A1A;
    line-height: 1.25;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .vf-pdp-sticky__price {
    font-size: 13px;
    color: #555;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: baseline;
  }
  .vf-pdp-sticky__price strong {
    font-family: 'Caprasimo', Georgia, serif;
    font-weight: 400;
    font-size: 16px;
    color: #1B5E20;
    letter-spacing: -0.005em;
  }
  .vf-pdp-sticky__price span {
    font-size: 11.5px;
    color: #777;
  }

  .vf-pdp-sticky__actions {
    display: flex;
    gap: 10px;
    align-items: stretch;
  }
  .vf-pdp-sticky__qty {
    display: inline-flex;
    align-items: center;
    border: 1px solid #E0E0E0;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
  }
  .vf-pdp-sticky__qty-btn {
    background: transparent;
    border: none;
    width: 34px;
    height: 44px;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    color: #1A1A1A;
    padding: 0;
    transition: background 0.15s ease;
  }
  .vf-pdp-sticky__qty-btn:hover { background: #F5F5F5; }
  .vf-pdp-sticky__qty-input {
    border: none;
    width: 40px;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: #1A1A1A;
    background: transparent;
    -moz-appearance: textfield;
  }
  .vf-pdp-sticky__qty-input::-webkit-inner-spin-button,
  .vf-pdp-sticky__qty-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  .vf-pdp-sticky__form { flex: 1; display: flex; }
  .vf-pdp-sticky__cta {
    flex: 1;
    background: #5EBC43;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 0 18px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 13.5px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 0 #1B5E20;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 44px;
  }
  .vf-pdp-sticky__cta:hover {
    background: #1B5E20;
    transform: translateY(1px);
    box-shadow: 0 1px 0 #1B5E20;
  }
  .vf-pdp-sticky__cta:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: #999;
    box-shadow: none;
  }
  .vf-pdp-sticky__cta span {
    transition: transform 0.2s ease;
  }
  .vf-pdp-sticky__cta:hover span:not([aria-hidden]) {
    transform: translateX(3px);
  }
  .vf-pdp-sticky__cta--promo {
    background: #E11D2E;
    box-shadow: 0 2px 0 #A0121F;
  }
  .vf-pdp-sticky__cta--promo:hover {
    background: #C11524;
    box-shadow: 0 1px 0 #A0121F;
  }

  @media (min-width: 750px) {
    .vf-pdp-sticky__inner {
      flex-direction: row;
      align-items: center;
      padding: 14px 24px;
      gap: 24px;
    }
    .vf-pdp-sticky__product {
      flex: 1;
    }
    .vf-pdp-sticky__thumb { width: 56px; height: 56px; }
    .vf-pdp-sticky__name { font-size: 14px; }
    .vf-pdp-sticky__price strong { font-size: 17px; }
    .vf-pdp-sticky__actions { flex-shrink: 0; }
    .vf-pdp-sticky__cta { font-size: 14px; padding: 0 28px; }
  }
  /* ===== Barra de evolucao (selecao invertida) ===== */
  .vf-pdp__kitbar { margin: 2px 0 14px; }
  .vf-pdp__kitbar-track { position: relative; height: 8px; border-radius: 999px; background: var(--vf-border, #E3E3DD); overflow: hidden; }
  .vf-pdp__kitbar-fill { position: absolute; top: 0; bottom: 0; left: 0; width: 0; border-radius: 999px; background: linear-gradient(90deg, #5EBC43, #1B5E20); transition: width .35s ease; }
  .vf-pdp__kitbar-msg { margin: 8px 0 0; font-size: 12.5px; font-weight: 700; line-height: 1.35; color: var(--vf-green-dark, #15803D); }
  .vf-pdp__kitbar--mid .vf-pdp__kitbar-fill { background: linear-gradient(90deg, #5EBC43, #7FC96A); }
  .vf-pdp__kitbar--low .vf-pdp__kitbar-fill { background: #C2410C; }
  .vf-pdp__kitbar--low .vf-pdp__kitbar-msg { color: #C2410C; }
/* END_SECTION:vf-pdp-main */

/* START_SECTION:vf-pdp-personagens-kids (INDEX:32) */
.vf-kids-pers {
    background: #FFF8E1;
    padding: 72px 0;
    font-family: 'Inter', system-ui, sans-serif;
  }
  .vf-kids-pers__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
  }
  .vf-kids-pers__header {
    text-align: center;
    margin-bottom: 48px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }
  .vf-kids-pers__eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: #FCD34D;
    background: #1B5E20;
    padding: 5px 14px;
    border-radius: 999px;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
  }
  .vf-kids-pers__heading {
    font-family: 'Caprasimo', Georgia, serif;
    font-size: clamp(28px, 3.8vw, 42px);
    line-height: 1.1;
    color: #1B5E20;
    margin: 0 0 14px;
    letter-spacing: -0.015em;
    font-weight: 400;
  }
  .vf-kids-pers__sub {
    font-size: 16px;
    line-height: 1.55;
    color: #1A1A1A;
    margin: 0;
  }

  .vf-kids-pers__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .vf-kids-pers__card {
    background: #FFFFFF;
    border: 2px solid #FCD34D;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .vf-kids-pers__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(252, 211, 77, 0.25);
  }
  .vf-kids-pers__media {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #FCD34D;
  }
  .vf-kids-pers__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  @media (min-width: 750px) {
    .vf-kids-pers { padding: 96px 0; }
    .vf-kids-pers__grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  }
/* END_SECTION:vf-pdp-personagens-kids */

/* START_SECTION:vf-pdp-personagens (INDEX:33) */
.vf-pdp-pers {
    background: #F5EDE0;
    padding: 72px 0;
    font-family: 'Inter', system-ui, sans-serif;
  }
  .vf-pdp-pers__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
  }
  .vf-pdp-pers__header {
    text-align: center;
    margin-bottom: 48px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }
  .vf-pdp-pers__eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: #5EBC43;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
  }
  .vf-pdp-pers__heading {
    font-family: 'Caprasimo', Georgia, serif;
    font-size: clamp(28px, 3.8vw, 42px);
    line-height: 1.1;
    color: #1B5E20;
    margin: 0 0 14px;
    letter-spacing: -0.015em;
    font-weight: 400;
  }
  .vf-pdp-pers__sub {
    font-size: 16px;
    line-height: 1.55;
    color: #1A1A1A;
    margin: 0;
  }
  .vf-pdp-pers__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .vf-pdp-pers__card {
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid rgba(27, 94, 32, 0.08);
  }
  .vf-pdp-pers__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  }
  .vf-pdp-pers__media {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #E8F3DA;
  }
  .vf-pdp-pers__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  @media (min-width: 750px) {
    .vf-pdp-pers { padding: 96px 0; }
    .vf-pdp-pers__grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  }
/* END_SECTION:vf-pdp-personagens */

/* START_SECTION:vf-pdp-stats (INDEX:34) */
.vf-pdp-stats {
    background: #FFFFFF;
    padding: 64px 0;
    font-family: 'Inter', system-ui, sans-serif;
  }
  .vf-pdp-stats__container {
    max-width: 880px;
    margin: 0 auto;
    padding: 0 24px;
  }
  .vf-pdp-stats__header {
    text-align: center;
    margin-bottom: 40px;
  }
  .vf-pdp-stats__eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: #5EBC43;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
  }
  .vf-pdp-stats__heading {
    font-family: 'Caprasimo', Georgia, serif;
    font-size: clamp(28px, 3.6vw, 38px);
    line-height: 1.15;
    color: #1B5E20;
    margin: 0 0 12px;
    letter-spacing: -0.01em;
    font-weight: 400;
  }
  .vf-pdp-stats__sub {
    font-size: 15px;
    line-height: 1.55;
    color: #555;
    max-width: 580px;
    margin: 0 auto;
  }
  .vf-pdp-stats__card {
    background: #F5EDE0;
    border-radius: 18px;
    padding: 8px 28px 24px;
    border: 1px solid rgba(27, 94, 32, 0.08);
  }
  .vf-pdp-stats__list {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .vf-pdp-stats__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px dashed rgba(27, 94, 32, 0.18);
    gap: 16px;
  }
  .vf-pdp-stats__row:last-child {
    border-bottom: none;
  }
  .vf-pdp-stats__label {
    font-size: 14px;
    color: #1A1A1A;
    font-weight: 500;
    line-height: 1.4;
  }
  .vf-pdp-stats__value {
    font-size: 15px;
    color: #1B5E20;
    font-weight: 600;
    text-align: right;
    line-height: 1.4;
  }
  .vf-pdp-stats__value strong {
    font-family: 'Caprasimo', Georgia, serif;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: -0.01em;
  }
  .vf-pdp-stats__footnote {
    margin: 20px 0 0;
    font-size: 12px;
    color: #777;
    line-height: 1.5;
    text-align: center;
    font-style: italic;
  }

  @media (min-width: 750px) {
    .vf-pdp-stats { padding: 88px 0; }
    .vf-pdp-stats__card { padding: 12px 40px 28px; }
    .vf-pdp-stats__row { padding: 20px 0; }
    .vf-pdp-stats__label { font-size: 15px; }
    .vf-pdp-stats__value strong { font-size: 20px; }
  }
/* END_SECTION:vf-pdp-stats */

/* START_SECTION:vf-pdp-volta-kids (INDEX:35) */
.vf-kids-volta {
    background: linear-gradient(180deg, #FFFFFF 0%, #FFF8E1 100%);
    padding: 80px 0 96px;
    font-family: 'Inter', system-ui, sans-serif;
  }
  .vf-kids-volta__container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
  }
  .vf-kids-volta__header {
    text-align: center;
    margin-bottom: 56px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }
  .vf-kids-volta__eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: #FCD34D;
    background: #1B5E20;
    padding: 5px 14px;
    border-radius: 999px;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
  }
  .vf-kids-volta__heading {
    font-family: 'Caprasimo', Georgia, serif;
    font-size: clamp(30px, 4.4vw, 48px);
    line-height: 1.05;
    color: #1B5E20;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
    font-weight: 400;
  }
  .vf-kids-volta__sub {
    font-size: 17px;
    line-height: 1.55;
    color: #555;
    margin: 0;
  }

  .vf-kids-volta__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 48px;
  }
  .vf-kids-volta__card {
    background: #FFFFFF;
    border: 2px solid #FCD34D;
    border-radius: 24px;
    padding: 32px 28px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  }
  .vf-kids-volta__card:hover {
    transform: translateY(-6px) rotate(-0.5deg);
    box-shadow: 0 16px 40px rgba(252, 211, 77, 0.3);
    border-color: #FBBF24;
  }
  .vf-kids-volta__illustration {
    width: 96px;
    height: 96px;
    margin: 0 auto 24px;
    color: #1B5E20;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .vf-kids-volta__illustration svg {
    width: 100%;
    height: 100%;
  }
  .vf-kids-volta__title {
    font-family: 'Caprasimo', Georgia, serif;
    font-size: 22px;
    color: #1B5E20;
    margin: 0 0 12px;
    letter-spacing: -0.01em;
    line-height: 1.15;
    font-weight: 400;
  }
  .vf-kids-volta__text {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    color: #1A1A1A;
  }

  .vf-kids-volta__quote {
    position: relative;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    padding: 32px 24px 0;
  }
  .vf-kids-volta__quote-mark {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Caprasimo', Georgia, serif;
    font-size: clamp(56px, 9vw, 80px);
    line-height: 1;
    color: #FCD34D;
    opacity: 0.65;
  }
  .vf-kids-volta__quote p {
    font-family: 'Caprasimo', Georgia, serif;
    font-size: clamp(20px, 2.6vw, 26px);
    line-height: 1.3;
    color: #1B5E20;
    margin: 0;
    letter-spacing: -0.01em;
    font-weight: 400;
  }

  @media (min-width: 750px) {
    .vf-kids-volta { padding: 96px 0 120px; }
    .vf-kids-volta__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  }
  @media (min-width: 990px) {
    .vf-kids-volta__grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
    .vf-kids-volta__card { padding: 36px 24px; }
  }
/* END_SECTION:vf-pdp-volta-kids */

/* START_SECTION:vf-pdp-volta-pra-voce (INDEX:36) */
.vf-pdp-volta {
    background: linear-gradient(180deg, #FFFFFF 0%, #F5EDE0 100%);
    padding: 80px 0 96px;
    font-family: 'Inter', system-ui, sans-serif;
  }
  .vf-pdp-volta__container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
  }
  .vf-pdp-volta__header {
    text-align: center;
    margin-bottom: 56px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }
  .vf-pdp-volta__eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: #5EBC43;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
  }
  .vf-pdp-volta__heading {
    font-family: 'Caprasimo', Georgia, serif;
    font-size: clamp(30px, 4.4vw, 48px);
    line-height: 1.05;
    color: #1B5E20;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
    font-weight: 400;
  }
  .vf-pdp-volta__sub {
    font-size: 17px;
    line-height: 1.55;
    color: #555;
    margin: 0;
  }

  .vf-pdp-volta__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 48px;
  }
  .vf-pdp-volta__card {
    background: #FFFFFF;
    border: 1px solid rgba(27, 94, 32, 0.1);
    border-radius: 20px;
    padding: 32px 28px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  }
  .vf-pdp-volta__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(27, 94, 32, 0.1);
    border-color: rgba(94, 188, 67, 0.4);
  }
  .vf-pdp-volta__illustration {
    width: 96px;
    height: 96px;
    margin: 0 auto 24px;
    color: #1B5E20;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .vf-pdp-volta__illustration svg {
    width: 100%;
    height: 100%;
  }
  .vf-pdp-volta__title {
    font-family: 'Caprasimo', Georgia, serif;
    font-size: 22px;
    color: #1B5E20;
    margin: 0 0 12px;
    letter-spacing: -0.01em;
    line-height: 1.15;
    font-weight: 400;
  }
  .vf-pdp-volta__text {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    color: #1A1A1A;
  }

  .vf-pdp-volta__quote {
    position: relative;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    padding: 32px 24px 0;
  }
  .vf-pdp-volta__quote-mark {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Caprasimo', Georgia, serif;
    font-size: clamp(56px, 9vw, 80px);
    line-height: 1;
    color: #5EBC43;
    opacity: 0.35;
  }
  .vf-pdp-volta__quote p {
    font-family: 'Caprasimo', Georgia, serif;
    font-size: clamp(20px, 2.6vw, 26px);
    line-height: 1.3;
    color: #1B5E20;
    margin: 0;
    letter-spacing: -0.01em;
    font-weight: 400;
  }

  @media (min-width: 750px) {
    .vf-pdp-volta { padding: 96px 0 120px; }
    .vf-pdp-volta__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  }

  @media (min-width: 990px) {
    .vf-pdp-volta__grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
    .vf-pdp-volta__card { padding: 36px 24px; }
  }
/* END_SECTION:vf-pdp-volta-pra-voce */

/* START_SECTION:vf-prescritores (INDEX:37) */
.vf-presc {
    background: #FAFAFA;
    padding: clamp(48px, 7vw, 80px) 0;
    font-family: 'Inter', system-ui, sans-serif;
  }
  .vf-presc__container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
  }
  .vf-presc__eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: #5EBC43;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
  }
  .vf-presc__heading {
    font-family: 'Caprasimo', Georgia, serif;
    font-size: clamp(26px, 3.6vw, 38px);
    line-height: 1.15;
    color: #1B5E20;
    margin: 0 0 12px;
    letter-spacing: -0.015em;
    font-weight: 400;
  }
  .vf-presc__subheading {
    font-size: 16px;
    line-height: 1.55;
    color: #555;
    max-width: 620px;
    margin: 0 auto 44px;
  }

  .vf-presc__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    text-align: left;
  }

  .vf-presc__card {
    background: #FFFFFF;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #ECECEC;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .vf-presc__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.07);
  }

  .vf-presc__media {
    width: 100%;
    aspect-ratio: 4 / 5;
    background: #F5EDE0;
    overflow: hidden;
  }
  .vf-presc__img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .vf-presc__img--placeholder { background: linear-gradient(135deg, #C0DE96, #5ebc43); }

  .vf-presc__body {
    padding: 18px 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .vf-presc__name {
    font-family: 'Caprasimo', Georgia, serif;
    font-size: 19px;
    color: #1A1A1A;
    margin: 0;
    font-weight: 400;
    letter-spacing: -0.005em;
    line-height: 1.2;
  }
  .vf-presc__credential {
    font-size: 12px;
    color: #888;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 600;
  }
  .vf-presc__specialty {
    font-size: 14px;
    color: #1B5E20;
    font-weight: 700;
    margin: 6px 0 10px;
    line-height: 1.4;
  }
  .vf-presc__ig {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    align-self: flex-start;
    background: #1B5E20;
    color: #fff;
    text-decoration: none;
    font-size: 12.5px;
    font-weight: 700;
    padding: 7px 14px;
    border-radius: 999px;
    transition: background 0.2s ease, transform 0.2s ease;
  }
  .vf-presc__ig:hover { background: #5EBC43; transform: translateY(-1px); }
  .vf-presc__ig svg { width: 15px; height: 15px; flex-shrink: 0; }

  @media (min-width: 750px) {
    .vf-presc__grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
  }
  @media (max-width: 540px) {
    .vf-presc__grid { grid-template-columns: 1fr; }
    .vf-presc__card { flex-direction: row; }
    .vf-presc__media { width: 118px; aspect-ratio: 1 / 1; flex-shrink: 0; }
    .vf-presc__body { padding: 12px 14px; justify-content: center; }
  }
/* END_SECTION:vf-prescritores */

/* START_SECTION:vf-selos-ticker (INDEX:38) */
.vf-ticker{background:#fff;padding:16px 0;overflow:hidden;border-block:1px solid #eee}.vf-ticker--sc{background:#EAF4DF;border-color:#CDE3B4}.vf-ticker__track{display:flex;width:max-content;animation:vfticker var(--dur,30s) linear infinite}.vf-ticker__group{display:flex;align-items:center;flex-shrink:0}.vf-ticker__item{display:inline-flex;align-items:center;margin:0 9px;padding:8px 16px;border-radius:999px;background:#ECFFE5;color:#087c2d;font:700 13px/1 Inter,system-ui,sans-serif;white-space:nowrap}.vf-ticker--sc .vf-ticker__item,.vf-ticker--sc .vf-ticker__item *{background:#1B5E20;color:#fff!important}.vf-ticker--sc strong{color:#fff!important}@keyframes vfticker{to{transform:translateX(-50%)}}@media(prefers-reduced-motion:reduce){.vf-ticker__track{animation:none}.vf-ticker__group:nth-child(2){display:none}}
/* END_SECTION:vf-selos-ticker */

/* START_SECTION:vf-semana-cliente-aviso (INDEX:39) */
.vf-sc-aviso{background:#1B5E20;border-bottom:1px solid #174d1b;color:#fff}.vf-sc-aviso__in{max-width:1100px;margin:auto;padding:11px 16px;display:flex;align-items:center;justify-content:center;gap:10px;flex-wrap:wrap;text-align:center;font:600 13.5px/1.4 Inter,system-ui,sans-serif;color:#fff}.vf-sc-aviso__in *{color:#fff!important}.vf-sc-aviso__tag{background:rgba(255,255,255,.14);border:1px solid rgba(255,255,255,.25);color:#fff;border-radius:999px;padding:5px 11px;font-weight:800;letter-spacing:.05em;font-size:12px}.vf-sc-aviso strong{color:#fff!important;font-weight:800}@media(max-width:540px){.vf-sc-aviso__in{font-size:12px;padding:9px 10px}}
/* END_SECTION:vf-semana-cliente-aviso */

/* START_SECTION:vf-semana-cliente-banner (INDEX:40) */
.vf-sc-banner{background:var(--bg);color:#fff;padding:34px 18px;text-align:center;font-family:Inter,system-ui,sans-serif}.vf-sc-banner__in{max-width:740px;margin:auto}.vf-sc-banner,.vf-sc-banner h2,.vf-sc-banner p,.vf-sc-banner li,.vf-sc-banner strong,.vf-sc-banner small,.vf-sc-banner span{color:#fff!important}.vf-sc-banner__ey{display:inline-block;background:rgba(255,255,255,.13);padding:6px 14px;border-radius:999px;font-weight:800;letter-spacing:.12em;font-size:12px}.vf-sc-banner h2{font-size:30px;margin:14px 0 6px}.vf-sc-banner p{margin:0 auto 16px;max-width:600px}.vf-sc-banner__tiers{display:flex;gap:10px;justify-content:center;flex-wrap:wrap}.vf-sc-banner__tiers span{background:rgba(255,255,255,.14);border:1px solid rgba(255,255,255,.26);border-radius:10px;padding:8px 16px;min-width:90px;display:flex;flex-direction:column}.vf-sc-banner__tiers strong{font-size:24px}.vf-sc-banner__tiers small{font-size:11px}.vf-sc-banner ul{list-style:none;padding:0;margin:18px auto;display:grid;gap:8px}.vf-sc-banner li{background:rgba(255,255,255,.09);padding:10px 12px;border-radius:10px}.vf-sc-banner__timer strong{background:rgba(255,255,255,.15);padding:4px 10px;border-radius:7px}.vf-sc-banner a{display:inline-block;background:#fff;color:#1B5E20!important;text-decoration:none;font-weight:800;padding:13px 28px;border-radius:999px}@media(max-width:540px){.vf-sc-banner h2{font-size:23px}.vf-sc-banner{padding:26px 14px}}
/* END_SECTION:vf-semana-cliente-banner */

/* START_SECTION:vf-stats (INDEX:41) */
.vf-stats {
    background: var(--vf-stats-bg, #FFFFFF);
    padding: clamp(56px, 7vw, 96px) 0;
    font-family: 'Inter', system-ui, sans-serif;
  }

  .vf-stats__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
  }

  .vf-stats__eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--vf-green-dark, #1B5E20);
    background: #ECFFE5;
    padding: 6px 14px;
    border-radius: 999px;
    margin: 0 0 16px;
  }

  .vf-stats__heading {
    font-family: 'Caprasimo', Georgia, serif;
    font-size: clamp(28px, 3.8vw, 44px);
    line-height: 1.15;
    margin: 0 0 14px 0;
    letter-spacing: -0.01em;
    color: var(--vf-green-dark, #1B5E20);
    font-weight: 400;
  }

  .vf-stats__sub {
    font-size: 17px;
    line-height: 1.5;
    color: #1A1A1A;
    max-width: 640px;
    margin: 0 auto 56px;
    font-weight: 500;
  }

  .vf-stats__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
  }

  .vf-stats__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #F0FDF4;
    border: 1px solid #DCFCE7;
    border-radius: 20px;
    padding: 36px 24px;
    gap: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .vf-stats__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(27, 94, 32, 0.12);
  }

  .vf-stats__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vf-green-dark, #1B5E20);
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(27, 94, 32, 0.08);
  }
  .vf-stats__icon svg {
    width: 30px;
    height: 30px;
  }

  .vf-stats__num {
    font-family: 'Caprasimo', Georgia, serif;
    font-size: clamp(40px, 6vw, 60px);
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--vf-green-dark, #1B5E20);
    font-weight: 400;
  }

  .vf-stats__label {
    font-family: 'Caprasimo', Georgia, serif;
    font-size: 18px;
    line-height: 1.25;
    color: #1A1A1A;
    margin-top: 4px;
    max-width: 240px;
    font-weight: 400;
  }

  .vf-stats__micro {
    font-size: 14px;
    line-height: 1.5;
    color: #555;
    margin: 8px 0 0;
    max-width: 240px;
    font-weight: 400;
  }

  .vf-stats__footnote {
    font-size: 13px;
    color: #777;
    margin: 40px auto 0;
    max-width: 580px;
    line-height: 1.55;
    font-style: italic;
  }

  @media (max-width: 989px) {
    .vf-stats__grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 640px) {
    .vf-stats__grid { grid-template-columns: 1fr; gap: 16px; }
    .vf-stats__card { padding: 28px 20px; }
  }
/* END_SECTION:vf-stats */

/* START_SECTION:vf-ugc-carrossel (INDEX:42) */
.vf-ugc { padding: 40px 0 48px; background: var(--vf-bg, #FAF7F0); overflow: hidden; }
  .vf-ugc__head { text-align: center; margin-bottom: 24px; }
  .vf-ugc__title {
    margin: 0 0 6px; font-family: var(--font-heading, inherit);
    font-size: clamp(24px, 3.4vw, 34px); color: var(--vf-text, #1A1A1A);
  }
  .vf-ugc__sub { margin: 0; color: var(--vf-muted, #666); font-size: 15px; }

  .vf-ugc__wrap { position: relative; }
  .vf-ugc__track {
    display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; scroll-behavior: smooth;
    padding: 4px 16px; scrollbar-width: none;
  }
  .vf-ugc__track::-webkit-scrollbar { display: none; }
  @media (min-width: 990px) {
    .vf-ugc__track { padding: 4px max(16px, calc((100vw - 1200px) / 2)); }
  }

  .vf-ugc__slide {
    position: relative; flex: 0 0 auto;
    /* mobile: 2 fotos por vez (metade da largura menos o gap e o padding) */
    width: calc((100vw - 32px - 14px) / 2); aspect-ratio: 4 / 5;
    border-radius: 16px; overflow: hidden; scroll-snap-align: start;
    background: var(--vf-beige, #F0EADD); box-shadow: 0 4px 16px rgba(0,0,0,.08);
  }
  @media (min-width: 750px) { .vf-ugc__slide { width: 300px; scroll-snap-align: center; } }
  .vf-ugc__slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .vf-ugc__placeholder {
    width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
    color: var(--vf-muted, #999); font-size: 13px;
  }
  .vf-ugc__caption {
    position: absolute; left: 0; right: 0; bottom: 0;
    padding: 20px 14px 12px; color: #fff; font-size: 13px; font-weight: 600;
    background: linear-gradient(transparent, rgba(0,0,0,.55));
  }

  .vf-ugc__arrow {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
    width: 42px; height: 42px; border-radius: 50%; border: 0; cursor: pointer;
    background: #fff; color: var(--vf-text, #1A1A1A); box-shadow: 0 2px 10px rgba(0,0,0,.15);
    display: none; align-items: center; justify-content: center; transition: background .15s;
  }
  .vf-ugc__arrow:hover { background: var(--vf-green, #16A34A); color: #fff; }
  .vf-ugc__arrow svg { width: 20px; height: 20px; }
  .vf-ugc__arrow--prev { left: 12px; }
  .vf-ugc__arrow--next { right: 12px; }
  @media (min-width: 990px) { .vf-ugc__arrow { display: flex; } }
/* END_SECTION:vf-ugc-carrossel */

/* CSS from snippet stylesheet tags */
/* START_SNIPPET:vf-bump-protocolo (INDEX:51) */
.vf-bump--prot{ background:linear-gradient(135deg,#EAF5EE 0%,#FFFFFF 100%); border-color:var(--vf-green,#5EBC43); }
  .vf-bump__flag--prot{ background:var(--vf-green-dark,#1B5E20); }
/* END_SNIPPET:vf-bump-protocolo */

/* START_SNIPPET:vf-cart-recomendados (INDEX:53) */
.vf-crec { margin: 28px 0 4px; padding: 22px 20px; background: var(--vf-surface, #fff); border: 1px solid var(--vf-border, #E3E3DD); border-radius: 14px; }
  .vf-crec__title { font-family: var(--font-heading, inherit); font-size: 20px; text-align: center; margin: 0 0 18px; color: var(--vf-text, #1A1A1A); }
  .vf-crec__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px; max-width: 720px; margin: 0 auto; }
  .vf-crec__card { border: 1px solid var(--vf-border, #E3E3DD); border-radius: 12px; padding: 14px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px; background: var(--vf-bg, #FAF8F2); }
  .vf-crec__img { width: 88px; height: 88px; background: var(--vf-beige, #F5F1E8); border-radius: 10px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
  .vf-crec__img img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
  .vf-crec__name { font-family: var(--font-heading, inherit); font-size: 13.5px; color: var(--vf-text, #1A1A1A); line-height: 1.25; }
  .vf-crec__name:hover { color: var(--vf-green-dark, #1B5E20); }
  .vf-crec__price { font-weight: 800; color: var(--vf-green-dark, #1B5E20); font-size: 15px; }
  .vf-crec__add { margin-top: auto; width: 100%; border: 0; cursor: pointer; background: var(--vf-green, #5EBC43); color: #08210f; font-weight: 800; font-size: 12.5px; padding: 10px 12px; border-radius: 8px; transition: background .15s, color .15s; }
  .vf-crec__add:hover { background: var(--vf-green-dark, #1B5E20); color: #fff; }
  .vf-crec__add:disabled { opacity: .55; cursor: default; }
  .vf-crec__price-old { color: var(--vf-muted, #999); font-weight: 600; font-size: 12.5px; margin-right: 4px; }
  .vf-crec__tag { display: inline-block; background: #E11D2E; color: #fff; font-weight: 800; font-size: 10.5px; padding: 3px 8px; border-radius: 999px; }
  .vf-crec__card--promo { border-color: #E11D2E; box-shadow: 0 0 0 2px rgba(225,29,46,0.12); }
  .vf-crec__card--promo .vf-crec__price { color: #E11D2E; }
/* END_SNIPPET:vf-cart-recomendados */

/* START_SNIPPET:vf-diagnostico-popup (INDEX:54) */
.vf-diag { position: fixed; inset: 0; z-index: 9998; display: flex; align-items: center; justify-content: center; padding: 16px; }
  .vf-diag[hidden] { display: none; }
  .vf-diag__overlay { position: absolute; inset: 0; background: rgba(20, 32, 20, 0.55); backdrop-filter: blur(2px); animation: vf-diag-fade .25s ease; }
  .vf-diag__card { position: relative; width: 100%; max-width: 440px; max-height: 92vh; overflow-y: auto; background: #FDFDF9; border-radius: 20px; padding: 26px 22px 20px; box-shadow: 0 24px 60px rgba(0,0,0,0.28); animation: vf-diag-pop .3s cubic-bezier(.2,.8,.3,1); }
  @keyframes vf-diag-fade { from { opacity: 0; } to { opacity: 1; } }
  @keyframes vf-diag-pop { from { opacity: 0; transform: translateY(16px) scale(.97); } to { opacity: 1; transform: none; } }
  .vf-diag__x { position: absolute; top: 10px; right: 12px; border: 0; background: transparent; font-size: 26px; line-height: 1; color: #9AA69A; cursor: pointer; padding: 4px 8px; }
  .vf-diag__x:hover { color: #444; }
  .vf-diag__dots { display: flex; gap: 6px; justify-content: center; margin: 2px 0 16px; }
  .vf-diag__dot { width: 7px; height: 7px; border-radius: 999px; background: #DDE4D6; transition: all .25s ease; }
  .vf-diag__dot.is-on { background: #1B5E20; width: 20px; }
  .vf-diag__eyebrow { margin: 0 0 6px; font-size: 12.5px; font-weight: 700; color: #5EBC43; text-align: center; }
  .vf-diag__title { margin: 0 0 8px; font-size: 21px; line-height: 1.25; font-weight: 800; color: #16301A; text-align: center; }
  .vf-diag__sub { margin: 0 0 18px; font-size: 14px; line-height: 1.45; color: #5B6B5B; text-align: center; }
  .vf-diag__opts { display: flex; flex-direction: column; gap: 10px; }
  .vf-diag__opt { display: flex; align-items: center; gap: 12px; width: 100%; text-align: left; padding: 13px 14px; border: 1.5px solid #E3E7DD; border-radius: 14px; background: #fff; cursor: pointer; transition: border-color .18s ease, transform .12s ease, box-shadow .18s ease; }
  .vf-diag__opt:hover { border-color: #5EBC43; transform: translateY(-1px); box-shadow: 0 6px 16px rgba(94,188,67,.14); }
  .vf-diag__opt-emoji { font-size: 26px; flex: 0 0 auto; }
  .vf-diag__opt-txt { display: flex; flex-direction: column; gap: 1px; }
  .vf-diag__opt-txt strong { font-size: 15px; color: #16301A; font-weight: 700; }
  .vf-diag__opt-txt span { font-size: 12.5px; color: #7A867A; }
  .vf-diag__back { border: 0; background: transparent; color: #7A867A; font-size: 13px; cursor: pointer; padding: 0 0 12px; }
  .vf-diag__back:hover { color: #1B5E20; }
  .vf-diag__form { margin: 4px 0 12px; text-align: left; }
  .vf-diag__form-label { display: block; font-size: 13.5px; color: #3D4A3D; margin: 0 0 8px; line-height: 1.4; }
  .vf-diag__form-row { display: flex; gap: 8px; }
  .vf-diag__form-row input { flex: 1 1 auto; min-width: 0; padding: 12px 14px; border: 1.5px solid #D8DED0; border-radius: 12px; font-size: 14px; }
  .vf-diag__form-row input:focus { outline: none; border-color: #5EBC43; }
  .vf-diag__form-btn { flex: 0 0 auto; border: 0; border-radius: 12px; background: #1B5E20; color: #fff; font-weight: 700; font-size: 14px; padding: 0 16px; cursor: pointer; }
  .vf-diag__form-btn:hover { background: #164a1a; }
  .vf-diag__form-mini { margin: 8px 0 0; font-size: 11.5px; color: #9AA69A; text-align: center; }
  .vf-diag__success { margin: 4px 0 12px; }
  .vf-diag__success-msg { margin: 0; background: #EAF7E4; border: 1px solid #C7E7B8; border-radius: 12px; padding: 12px 14px; font-size: 13.5px; font-weight: 600; color: #1B5E20; text-align: center; }
  .vf-diag__code { display: inline-block; background: #1B5E20; color: #fff; font-weight: 800; letter-spacing: .04em; padding: 2px 8px; border-radius: 6px; margin: 0 2px; }
  .vf-diag__cta { display: block; text-align: center; text-decoration: none; background: #5EBC43; color: #fff; font-weight: 800; font-size: 15.5px; padding: 14px; border-radius: 14px; box-shadow: 0 4px 0 #1B5E20; transition: transform .12s ease; }
  .vf-diag__cta:hover { transform: translateY(-1px); }
  .vf-diag__cta:active { transform: translateY(2px); box-shadow: 0 2px 0 #1B5E20; }
  .vf-diag__skip { display: block; width: 100%; border: 0; background: transparent; color: #9AA69A; font-size: 12.5px; margin-top: 10px; cursor: pointer; }
  .vf-diag__skip:hover { color: #5B6B5B; }
  @media (max-width: 480px) {
    .vf-diag__card { padding: 22px 16px 16px; border-radius: 18px; }
    .vf-diag__title { font-size: 19px; }
    .vf-diag__form-row { flex-direction: column; }
    .vf-diag__form-btn { padding: 12px; }
  }
/* END_SNIPPET:vf-diagnostico-popup */

/* START_SNIPPET:vf-frete-progress (INDEX:55) */
.vf-frete{background:#F5F1E8;border-radius:10px;padding:12px 14px;display:flex;flex-direction:column;gap:8px;font:500 13px/1.4 Inter,system-ui,sans-serif}.vf-frete--sc{background:#1B5E20;border:1px solid #174d1b;color:#fff}.vf-frete--sc,.vf-frete--sc *{color:#fff!important}.vf-frete strong{font-weight:800}.vf-frete small{font-size:11px;opacity:.9}.vf-frete__track{height:8px;border-radius:999px;background:rgba(255,255,255,.2);overflow:hidden}.vf-frete__track span{display:block;height:100%;background:#fff;border-radius:999px}
/* END_SNIPPET:vf-frete-progress */

/* START_SNIPPET:vf-kits-desconto-aviso (INDEX:56) */
.vf-kits-aviso{display:flex;align-items:flex-start;gap:10px;padding:12px 13px;border-radius:10px;margin:2px 0;background:#F5F1E8;color:#1A1A1A;font:500 12.5px/1.4 Inter,system-ui,sans-serif}.vf-kits-aviso--sc{background:#EAF4DF;color:#1B5E20;border:1px solid #CDE3B4}.vf-kits-aviso__check{flex:0 0 24px;height:24px;border-radius:50%;background:#1B5E20;color:#fff!important;display:inline-flex;align-items:center;justify-content:center;font-weight:900}.vf-kits-aviso div{display:flex;flex-direction:column;gap:2px}.vf-kits-aviso strong{font-weight:800}.vf-kits-aviso span{font-size:12px}.vf-kits-aviso small{font-size:11px;opacity:.85}
/* END_SNIPPET:vf-kits-desconto-aviso */

/* START_SNIPPET:vf-oleo-desconto-aviso (INDEX:57) */
.vf-oleo-aviso {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 11px 13px; border-radius: 10px; margin: 2px 0 2px;
    font-size: 12.5px; line-height: 1.35;
  }
  .vf-oleo-aviso__ic {
    flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center; color: #fff; margin-top: 1px;
  }
  .vf-oleo-aviso__ic svg { width: 13px; height: 13px; }
  .vf-oleo-aviso__txt { display: flex; flex-direction: column; gap: 2px; }
  .vf-oleo-aviso__txt strong { font-weight: 800; }
  .vf-oleo-aviso__txt b { font-weight: 900; }
  /* verde: desconto ativo */
  .vf-oleo-aviso--ok {
    background: var(--vf-green-light, #E7F6EC);
    color: var(--vf-green-dark, #15803D);
  }
  .vf-oleo-aviso--ok .vf-oleo-aviso__ic { background: var(--vf-green, #16A34A); }
  .vf-oleo-aviso--ok .vf-oleo-aviso__txt span { color: #256b3a; }
  /* laranja: incentivo (ainda não destravou) */
  .vf-oleo-aviso--nudge {
    background: #FEF3E7; color: #9A3412;
    border: 1px dashed #F59E0B;
  }
  .vf-oleo-aviso--nudge .vf-oleo-aviso__ic { background: #EA580C; }
  .vf-oleo-aviso--nudge .vf-oleo-aviso__txt span { color: #B45309; }
/* END_SNIPPET:vf-oleo-desconto-aviso */

/* START_SNIPPET:vf-sc-brinde-kids (INDEX:61) */
.vf-brinde-kids-tag{display:inline-block;margin:4px 0 0;padding:3px 10px;border-radius:999px;background:#1B5E20;color:#fff;font-size:11.5px;font-weight:800;line-height:1.5}.vf-brinde-kids-nota{display:block;margin:3px 0 0;font-size:11.5px;color:#6B6B6B}.vf-brinde-kids-linha .vf-cart-item__price,.vf-brinde-kids-linha .vf-cart-item__price-mobile{color:#1B5E20;font-weight:800}.vf-brinde-kids-linha .vf-cart-item__qty-btn{display:none}.vf-brinde-kids-linha .vf-cart-item__qty-control{border-color:transparent;background:#F2F2F2}.vf-brinde-kids-linha .vf-cart-item__qty-input{pointer-events:none;color:#6B6B6B}
/* END_SNIPPET:vf-sc-brinde-kids */

/* START_SNIPPET:vf-sc-brinde (INDEX:62) */
.vf-brinde-tag {
    display: inline-block;
    margin: 4px 0 0;
    padding: 3px 10px;
    border-radius: 999px;
    background: #1B5E20;
    color: #ffffff;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1.5;
    white-space: nowrap;
  }
  .vf-brinde-nota {
    display: block;
    margin: 3px 0 0;
    font-size: 11.5px;
    color: #6B6B6B;
    line-height: 1.4;
  }
  .vf-brinde-linha .vf-cart-item__price,
  .vf-brinde-linha .vf-cart-item__price-mobile {
    color: #1B5E20;
    font-weight: 800;
  }
  .vf-brinde-linha .vf-cart-item__qty-btn { display: none; }
  .vf-brinde-linha .vf-cart-item__qty-control {
    border-color: transparent;
    background: #F2F2F2;
  }
  .vf-brinde-linha .vf-cart-item__qty-input {
    pointer-events: none;
    color: #6B6B6B;
  }
/* END_SNIPPET:vf-sc-brinde */

/* START_SNIPPET:vf-upsell-oleo-popup (INDEX:64) */
.vf-oleopop[hidden] { display: none !important; }
  .vf-oleopop {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
  }
  .vf-oleopop__overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 30, 20, 0.55);
    backdrop-filter: blur(2px);
  }
  .vf-oleopop__card {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px 24px;
    max-width: 360px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,.25);
    animation: vf-oleopop-in .25s ease-out;
  }
  @keyframes vf-oleopop-in {
    from { opacity: 0; transform: translateY(12px) scale(.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
  }
  .vf-oleopop__x {
    position: absolute;
    top: 12px; right: 12px;
    width: 30px; height: 30px;
    border: 0;
    background: var(--vf-bg, #F5F5F5);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--vf-muted, #777);
    cursor: pointer;
  }
  .vf-oleopop__x:hover { background: var(--vf-border, #E3E3DD); color: #1A1A1A; }
  .vf-oleopop__x svg { width: 15px; height: 15px; }

  .vf-oleopop__img {
    width: 96px; height: 96px;
    border-radius: 14px;
    background: var(--vf-beige, #F5F1E8);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    margin-top: 4px;
  }
  .vf-oleopop__img img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }

  .vf-oleopop__headline {
    font-family: var(--font-heading, inherit);
    font-weight: 700;
    font-size: 19px;
    color: var(--vf-green-dark, #15803D);
    line-height: 1.3;
    margin: 4px 0 0;
  }
  .vf-oleopop__text {
    font-size: 13px;
    color: var(--vf-muted, #555);
    line-height: 1.5;
    margin: 0;
  }

  .vf-oleopop__price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 4px 0 2px;
  }
  .vf-oleopop__price-full {
    font-size: 13px;
    color: var(--vf-muted, #999);
    text-decoration: line-through;
  }
  .vf-oleopop__price-off {
    font-family: var(--font-heading, inherit);
    font-size: 24px;
    font-weight: 900;
    color: var(--vf-green-dark, #15803D);
  }

  .vf-oleopop__cta {
    width: 100%;
    border: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--vf-green, #16A34A);
    color: #fff;
    font-family: var(--font-heading, inherit);
    font-weight: 800;
    font-size: 14.5px;
    padding: 13px 16px;
    border-radius: 10px;
    text-decoration: none;
    margin-top: 6px;
    transition: background .15s ease;
  }
  .vf-oleopop__cta:hover { background: var(--vf-green-dark, #15803D); }
  .vf-oleopop__cta:disabled { opacity: .6; cursor: default; }

  .vf-oleopop__decline {
    background: transparent;
    border: 0;
    color: var(--vf-muted, #888);
    font-size: 12.5px;
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
    padding: 4px;
  }
  .vf-oleopop__decline:hover { color: #1A1A1A; }
/* END_SNIPPET:vf-upsell-oleo-popup */

/* START_SNIPPET:vf-whatsapp-float (INDEX:65) */
.vf-wafloat{ position:fixed; right:18px; bottom:18px; z-index:9998; display:flex; align-items:center; gap:10px; text-decoration:none; }
  .vf-wafloat__btn{ position:relative; width:56px; height:56px; border-radius:50%; background:#25D366; color:#fff; display:flex; align-items:center; justify-content:center; box-shadow:0 6px 18px rgba(0,0,0,.22); transition:transform .15s ease; }
  .vf-wafloat:hover .vf-wafloat__btn{ transform:scale(1.06); }
  .vf-wafloat__pill{ background:#fff; color:#1A1A1A; font-family:inherit; font-size:13px; font-weight:700; padding:8px 13px; border-radius:999px; box-shadow:0 4px 14px rgba(0,0,0,.14); white-space:nowrap; opacity:0; transform:translateX(8px); pointer-events:none; transition:opacity .2s ease, transform .2s ease; }
  .vf-wafloat:hover .vf-wafloat__pill, .vf-wafloat:focus-visible .vf-wafloat__pill{ opacity:1; transform:translateX(0); }
  .vf-wafloat__btn::after{ content:""; position:absolute; inset:0; border-radius:50%; box-shadow:0 0 0 0 rgba(37,211,102,.5); animation:vf-wa-pulse 2.4s infinite; }
  @keyframes vf-wa-pulse{ 0%{ box-shadow:0 0 0 0 rgba(37,211,102,.45) } 70%{ box-shadow:0 0 0 14px rgba(37,211,102,0) } 100%{ box-shadow:0 0 0 0 rgba(37,211,102,0) } }
  .vf-wafloat:focus-visible .vf-wafloat__btn{ outline:3px solid #128C7E; outline-offset:2px; }
  @media (max-width:600px){ .vf-wafloat__pill{ display:none; } .vf-wafloat{ right:14px; bottom:14px; } .vf-wafloat__btn{ width:52px; height:52px; } }
  @media (prefers-reduced-motion: reduce){ .vf-wafloat__btn::after{ animation:none; } .vf-wafloat__btn{ transition:none; } }
/* END_SNIPPET:vf-whatsapp-float */