:root {
  --sage: #5e9c8f;
  --sage-dark: #3d6b62;
  --sage-soft: #eaf3ef;
  --sage-light: #c8ddd4;
  --text: #2d3f3a;
  --muted: #7a8a85;
  --blush: #fbc4c1;
  --bg: #ffffff;
  --blush-soft: #fde4e3;
  --white: #ffffff;
  --success: #21b83b;
  --success-dark: #15952b;
  --star: #f3c621;
  --pix-bg: #f0fff4;
  --pix-border: #bfeccb;
  --border: rgba(94, 156, 143, 0.18);

  /* Variáveis para sombras coloridas */
  --shadow-rgb: 94, 156, 143;
  --shadow-dark-rgb: 61, 107, 98;

  /* Layout/transições preservados do :root original */
  --container: min(100% - 32px, 1120px);
  --header-height: 68px;
  --shadow-soft: 0 18px 52px rgba(var(--shadow-rgb), 0.14);
  --shadow-card: 0 24px 70px rgba(var(--shadow-dark-rgb), 0.15);
  --shadow-button: 0 15px 32px rgba(var(--shadow-rgb), 0.26);
  --transition: 220ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--bg);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.lightbox-open,
body.review-lightbox-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

/* Header */
.topbar {
  display: grid;
  min-height: 32px;
  place-items: center;
  padding: 6px 16px;
  color: var(--white);
  background: var(--sage-dark);
  transition: background 0.35s ease;
}

.topbar p {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  animation: header-drop 520ms ease both;
  transition: background 0.35s ease, backdrop-filter 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.site-header.is-transparent {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
  box-shadow: none;
}

.site-header.is-transparent .brand-logo {
  filter: brightness(0) invert(1);
  transition: filter 0.35s ease;
}

.site-header.is-transparent .icon-button {
  color: #ffffff;
}

.site-header.is-transparent .menu-button span {
  background-color: #ffffff;
  transition: background-color 0.35s ease;
}

.site-header.is-solid {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 0.5px solid var(--sage-light);
  box-shadow: 0 4px 24px rgba(var(--shadow-rgb), 0.08);
}

.site-header.is-solid .brand-logo {
  filter: none;
}

.site-header.is-solid .icon-button {
  color: var(--sage-dark);
}

.site-header.is-solid .menu-button span {
  background-color: var(--sage-dark);
}

.header-nav {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  min-height: var(--header-height);
}

.icon-button {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  padding: 0;
  color: var(--sage-dark);
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition:
    background-color var(--transition),
    transform var(--transition);
}

.icon-button:active {
  transform: scale(0.94);
}

.menu-button {
  justify-self: start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.menu-button span {
  display: block;
  width: 22px;
  height: 1.5px;
  margin-block: 4px;
  background: currentColor;
  border-radius: 2px;
  transition: width 0.3s ease, background-color 0.3s ease;
}

.menu-button span:nth-child(2) {
  width: 14px;
  align-self: flex-start;
  margin-left: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: center;
  min-width: 0;
}

.brand-logo {
  width: clamp(146px, 43vw, 186px);
  max-height: 56px;
  object-fit: contain;
}

.header-balance {
  width: 48px;
  height: 48px;
}

/* Mobile menu */
.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(45, 63, 58, 0.35);
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: opacity 260ms ease;
}

.mobile-menu {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 130;
  width: min(82vw, 340px);
  padding: 18px 18px 24px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-right: 0.5px solid rgba(var(--shadow-rgb), 0.15);
  box-shadow: 28px 0 70px rgba(var(--shadow-dark-rgb), 0.18);
  transform: translateX(-104%);
  visibility: hidden;
  pointer-events: none;
  transition:
    transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1),
    visibility 0ms linear 320ms;
}

body.menu-open .menu-backdrop {
  opacity: 1;
  pointer-events: auto;
}

body.menu-open .mobile-menu {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
  transition:
    transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1),
    visibility 0ms linear 0ms;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 22px;
}

.mobile-menu-logo {
  width: 150px;
  max-height: 54px;
  object-fit: contain;
}

.menu-close {
  position: relative;
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  color: var(--sage-dark);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(var(--shadow-rgb), 0.72);
  border-radius: 999px;
  cursor: pointer;
}

.menu-close span {
  position: absolute;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.menu-close span:first-child {
  transform: rotate(45deg);
}

.menu-close span:last-child {
  transform: rotate(-45deg);
}

.mobile-menu-nav {
  display: grid;
  gap: 4px;
}

.mobile-menu-nav a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 6px;
  color: var(--sage-dark);
  border-bottom: 1px solid rgba(var(--shadow-rgb), 0.45);
  font-size: 1.02rem;
  font-weight: 800;
}

.mobile-menu-nav .mobile-menu-cta {
  justify-content: center;
  min-height: 52px;
  margin-top: 16px;
  padding-inline: 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--sage), var(--sage-dark));
  border: 0;
  border-radius: 999px;
  box-shadow: var(--shadow-button);
}

/* ============================================
   ANTIGO HERO — backup pré-redesign (reverter se necessário)
   ============================================ */
/*
.section-shell {
  position: relative;
  overflow: hidden;
}

.hero {
  isolation: isolate;
  min-height: calc(100svh - var(--header-height) - 32px);
  padding: 24px 0 38px;
  background:
    linear-gradient(180deg, rgba(250, 248, 255, 0.98) 0%, rgba(255, 255, 255, 0.84) 54%, rgba(242, 238, 255, 0.88) 100%),
    var(--bg);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.hero-bg::before {
  position: absolute;
  inset: -70px -60px auto;
  height: 370px;
  background:
    radial-gradient(ellipse at 18% 20%, rgba(246, 166, 155, 0.14), transparent 42%),
    radial-gradient(ellipse at 78% 28%, rgba(var(--shadow-rgb), 0.74), transparent 50%),
    radial-gradient(ellipse at 44% 88%, rgba(255, 255, 255, 0.96), transparent 62%);
  content: "";
}

.hero-bg-shape {
  position: absolute;
  display: block;
  border-radius: 44% 56% 58% 42% / 52% 44% 56% 48%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(var(--shadow-rgb), 0.34));
  box-shadow: 0 24px 60px rgba(var(--shadow-rgb), 0.08);
  animation: cloud-float 10s ease-in-out infinite;
}

.hero-bg-shape-1 {
  top: 116px;
  right: -92px;
  width: 188px;
  height: 128px;
}

.hero-bg-shape-2 {
  top: 340px;
  left: -108px;
  width: 188px;
  height: 148px;
  animation-delay: -3s;
}

.hero-bg-cloud {
  position: absolute;
  right: -42px;
  bottom: 118px;
  width: 230px;
  height: 92px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 24% 46%, rgba(255, 255, 255, 0.66) 0 34%, transparent 35%),
    radial-gradient(circle at 52% 30%, rgba(255, 255, 255, 0.76) 0 42%, transparent 43%),
    radial-gradient(circle at 78% 52%, rgba(255, 255, 255, 0.58) 0 32%, transparent 33%);
  opacity: 0.7;
  animation: cloud-drift 12s ease-in-out infinite;
}

.hero-inner {
  display: grid;
  gap: 18px;
  align-items: center;
}

.hero-content {
  display: grid;
  justify-items: center;
  text-align: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin: 0 0 10px;
  padding: 7px 12px;
  color: var(--sage);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(var(--shadow-rgb), 0.78);
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(var(--shadow-rgb), 0.07);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero-title {
  max-width: 13ch;
  margin: 0;
  color: var(--sage-dark);
  font-size: clamp(2.05rem, 9.2vw, 2.8rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
}

.hero-title em {
  color: var(--sage);
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 700;
}

.hero-copy {
  max-width: 31rem;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

.hero-media {
  position: relative;
  display: grid;
  place-items: center;
  margin-top: 2px;
}

.hero-media-glow {
  position: absolute;
  inset: 5% 7% 4%;
  border-radius: 34px;
  background:
    linear-gradient(140deg, rgba(var(--shadow-rgb), 0.12), rgba(246, 166, 155, 0.1)),
    radial-gradient(ellipse at 50% 26%, rgba(255, 255, 255, 0.86), transparent 58%);
  filter: blur(1px);
}

.hero-product-card {
  position: relative;
  width: min(100%, 350px);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(242, 238, 255, 0.56)),
    var(--sage-soft);
  box-shadow: var(--shadow-card);
}

.hero-product-card::before {
  position: absolute;
  inset: 10px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 22px;
  content: "";
  pointer-events: none;
}

.hero-product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.01) contrast(1.02);
}

.hero-actions {
  display: grid;
  width: 100%;
  max-width: 420px;
  gap: 8px;
  justify-self: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 20px;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background-color var(--transition),
    color var(--transition),
    border-color var(--transition);
}

.btn:active {
  transform: translateY(2px) scale(0.985);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--sage), var(--sage-dark));
  box-shadow: var(--shadow-button);
}

.btn-secondary {
  min-height: 42px;
  color: var(--sage-dark);
  background: transparent;
  border: 0;
  font-size: 0.92rem;
  text-decoration: underline;
  text-decoration-color: rgba(var(--shadow-rgb), 0.26);
  text-underline-offset: 5px;
}

.hero-rating {
  display: inline-flex;
  align-items: center;
  justify-self: center;
  gap: 7px;
  color: var(--text);
}

.hero-rating span {
  color: var(--blush);
  font-size: 0.92rem;
}

.hero-rating strong {
  color: var(--sage-dark);
  font-size: 0.88rem;
}

.hero-rating p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}
*/
/* ============================================
   FIM ANTIGO HERO
   ============================================ */

/* Hero (novo) */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: calc(-1 * var(--header-height)) 0 0;
  padding: 0;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('img/heronovo.png');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(45, 63, 58, 0.45) 0%,
    rgba(45, 63, 58, 0.1) 30%,
    rgba(45, 63, 58, 0) 55%,
    rgba(45, 63, 58, 0.55) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 560px;
  padding: calc(var(--header-height) + 32px) 24px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #ffffff;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 0.5px solid rgba(255, 255, 255, 0.35);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 18px;
}

.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
  color: #ffffff;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.28);
}

.hero-title em {
  font-style: italic;
  color: var(--sage-light);
  display: block;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 2.4vw, 1.1rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.94);
  max-width: 420px;
  margin: 0 0 28px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.28);
}

.hero-video-wrap {
  position: relative;
  width: min(280px, 70vw);
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: linear-gradient(135deg, var(--sage-dark) 0%, var(--sage) 100%);
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ANTIGO HERO PLAY OVERLAY — removido: autoplay mudo não precisa de overlay decorativo */
/*
.hero-video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  pointer-events: none;
}

.hero-video[src]:not([src=""]) ~ .hero-video-placeholder {
  display: none;
}
*/
/* FIM ANTIGO HERO PLAY OVERLAY */

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 320px;
  margin-bottom: 28px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 28px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hero-cta--primary {
  background: var(--sage);
  color: #ffffff;
  text-transform: uppercase;
  box-shadow: 0 10px 28px rgba(var(--shadow-rgb), 0.5);
}

.hero-cta--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(var(--shadow-rgb), 0.6);
  background: var(--sage-dark);
}

.hero-cta--secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
}

.hero-cta--secondary:hover {
  background: rgba(255, 255, 255, 0.95);
  color: var(--sage-dark);
  border-color: #ffffff;
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding-top: 8px;
}

.hero-trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-trust__item strong {
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}

.hero-trust__item span {
  font-size: 9px;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 2px;
}

.hero-trust__divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.35);
}

@media (max-width: 480px) {
  .hero-content {
    padding: calc(var(--header-height) + 24px) 20px 50px;
  }
  .hero-trust {
    gap: 16px;
  }
  .hero-title {
    font-size: clamp(1.9rem, 8vw, 2.6rem);
  }
  .hero-subtitle {
    margin-bottom: 20px;
  }
  .hero-video-wrap {
    width: min(220px, 60vw);
    margin-bottom: 22px;
  }
  .hero-ctas {
    margin-bottom: 20px;
  }
}

.future-anchor {
  height: 1px;
}

/* Pre-purchase color and benefit sections */
.color-showcase,
.visual-benefits {
  position: relative;
  overflow: hidden;
  padding: 54px 0;
}

.color-showcase {
  background: linear-gradient(180deg, #ffffff 0%, rgba(242, 238, 255, 0.62) 100%);
}

.visual-benefits {
  background: linear-gradient(180deg, #ffffff 0%, #f2eeff 55%, #ffffff 100%);
}

.prebuy-inner {
  width: var(--container);
  max-width: 1120px;
  margin-inline: auto;
}

.prebuy-heading {
  max-width: 620px;
  margin-bottom: 22px;
}

.prebuy-kicker {
  margin: 0 0 9px;
  color: var(--sage);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.prebuy-heading h2 {
  max-width: 12ch;
  margin: 0;
  color: var(--sage-dark);
  font-size: clamp(1.95rem, 8.4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: 0;
}

.prebuy-heading p:not(.prebuy-kicker) {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.62;
}

.color-carousel,
.benefit-carousel {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 4px 2px 14px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.color-card,
.benefit-card {
  flex: 0 0 min(82vw, 330px);
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(var(--shadow-rgb), 0.12);
  border-radius: 22px;
  box-shadow: 0 16px 36px rgba(47, 41, 90, 0.09);
  scroll-snap-align: start;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.color-card__media,
.benefit-card__media {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(242, 238, 255, 0.76)),
    var(--sage-soft);
}

.color-card__media {
  aspect-ratio: 4 / 5;
}

.benefit-card__media {
  aspect-ratio: 1 / 1;
}

.color-card__media::after,
.benefit-card__media::after {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  color: rgba(var(--shadow-dark-rgb), 0.4);
  font-size: 0.8rem;
  font-weight: 800;
  text-align: center;
  content: "Imagem do produto";
}

.benefit-card__media::after {
  content: "Imagem do benefício";
}

.color-card__media:has(img:not(.is-missing))::after,
.benefit-card__media:has(img:not(.is-missing))::after {
  opacity: 0;
}

.color-card__media img,
.benefit-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.color-card__media img.is-missing,
.benefit-card__media img.is-missing {
  opacity: 0;
}

.color-card__body,
.benefit-card__body {
  padding: 15px;
}

.color-card h3,
.benefit-card h3 {
  margin: 0 0 6px;
  color: var(--sage-dark);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.2;
}

.color-card p,
.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.mini-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin-top: 13px;
  padding: 9px 13px;
  color: var(--sage);
  background: rgba(242, 238, 255, 0.72);
  border: 1px solid rgba(var(--shadow-rgb), 0.14);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  transition:
    background-color var(--transition),
    color var(--transition),
    transform var(--transition);
}

/* Sizes section (novo) */
.sizes-section {
  position: relative;
  background: var(--bg);
  padding: 80px 0;
  overflow: hidden;
}

.sizes-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.sizes-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

.sizes-kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--sage);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.sizes-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--sage-dark);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}

.sizes-title em {
  font-style: italic;
  color: var(--sage);
}

.sizes-subtitle {
  font-size: clamp(0.95rem, 2.2vw, 1.05rem);
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}

.sizes-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.size-card {
  background: var(--sage-soft);
  border: 0.5px solid rgba(var(--shadow-rgb), 0.18);
  border-radius: 16px;
  padding: 18px 14px 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.size-card:hover {
  transform: translateY(-3px);
  border-color: var(--sage);
  box-shadow: 0 14px 32px rgba(var(--shadow-rgb), 0.12);
}

.size-card__image {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 12px;
  height: 90px;
  filter: drop-shadow(0 6px 14px rgba(var(--shadow-rgb), 0.18));
  transition: transform 0.4s ease, filter 0.4s ease;
}

.size-card__image img {
  display: block;
  height: 100%;
  width: auto;
  object-fit: contain;
}

.size-card__image--solteiro img {
  height: 70%;
}

.size-card__image--casal img {
  height: 80%;
}

.size-card__image--queen img {
  height: 92%;
}

.size-card__image--king img {
  height: 100%;
}

.size-card:hover .size-card__image {
  transform: translateY(-3px) scale(1.04);
  filter: drop-shadow(0 12px 22px rgba(var(--shadow-rgb), 0.28));
}

.size-card__name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--sage-dark);
  margin: 0 0 6px;
  letter-spacing: 0.005em;
}

.size-card__dimensions {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--sage);
  margin: 0 0 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.size-card__hint {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.4;
}

@media (min-width: 768px) {
  .sizes-section {
    padding: 110px 0;
  }

  .sizes-header {
    margin-bottom: 60px;
  }

  .sizes-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .size-card {
    padding: 24px 16px 28px;
  }

  .size-card__image {
    height: 130px;
    margin-bottom: 18px;
  }

  .size-card__name {
    font-size: 1.4rem;
    margin-bottom: 8px;
  }

  .size-card__dimensions {
    font-size: 0.92rem;
    margin-bottom: 8px;
  }

  .size-card__hint {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .sizes-section {
    padding: 60px 0;
  }

  .sizes-header {
    margin-bottom: 32px;
  }

  .sizes-grid {
    gap: 10px;
  }

  .size-card {
    padding: 16px 10px 18px;
  }

  .size-card__image {
    height: 78px;
    margin-bottom: 10px;
  }

  .size-card__hint {
    display: none;
  }
}

/* ============================================
   ANTIGO INVERNO — backup pré-redesign (reverter se necessário)
   ============================================ */
/*
.mothers-day-section {
  position: relative;
  overflow: hidden;
  padding: 52px 16px;
  background: linear-gradient(180deg, #ffffff 0%, var(--sage-soft) 50%, var(--blush-soft) 100%);
  isolation: isolate;
}

.mothers-day-section__inner {
  display: grid;
  gap: 26px;
  max-width: 1120px;
  margin: 0 auto;
}

.mothers-day-blob {
  position: absolute;
  z-index: -1;
  display: block;
  border-radius: 44% 56% 58% 42% / 52% 44% 56% 48%;
  background: linear-gradient(135deg, rgba(251, 196, 193, .42), rgba(94, 156, 143, .28));
  filter: blur(1px);
  opacity: 0.62;
  animation: cloud-float 11s ease-in-out infinite;
}

.mothers-day-blob-1 {
  top: 42px;
  right: -72px;
  width: 174px;
  height: 128px;
}

.mothers-day-blob-2 {
  left: -82px;
  bottom: 90px;
  width: 190px;
  height: 142px;
  animation-delay: -4s;
}

.mothers-day-copy {
  position: relative;
  text-align: left;
}

.mothers-day-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 14px;
  padding: 8px 14px;
  color: var(--sage);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(var(--shadow-rgb), 0.14);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.mothers-day-section h2 {
  max-width: 12ch;
  margin: 0 0 12px;
  color: var(--sage-dark);
  font-size: clamp(1.88rem, 8vw, 3.25rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
}

.mothers-day-section h2 em {
  color: var(--sage);
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
}

.mothers-day-section p {
  color: var(--text);
  font-size: 0.94rem;
  line-height: 1.7;
}

.mothers-day-subtitle {
  max-width: 34rem;
  margin: 0 0 10px;
  color: var(--sage-dark);
  font-weight: 700;
}

.mothers-day-text {
  max-width: 36rem;
  margin: 0;
  color: var(--muted);
}

.mothers-day-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.mothers-day-chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 9px 12px;
  color: var(--sage-dark);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(var(--shadow-rgb), 0.12);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(47, 41, 90, 0.06);
  font-size: 0.75rem;
  font-weight: 800;
  animation: cloud-drift 10s ease-in-out infinite;
}

.mothers-day-chip:nth-child(2) {
  animation-delay: -3s;
}

.mothers-day-chip:nth-child(3) {
  animation-delay: -6s;
}

.mothers-day-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 20px;
  padding: 13px 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--sage), var(--sage-dark));
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(var(--shadow-rgb), 0.2);
  font-size: 0.9rem;
  font-weight: 800;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.mothers-day-visual {
  display: grid;
  gap: 18px;
}

.mothers-day-media {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(247, 220, 232, 0.45)),
    var(--sage-soft);
  box-shadow: 0 24px 60px rgba(47, 41, 90, 0.12);
}

.mothers-day-media::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(var(--shadow-rgb), 0.08));
  content: "";
  pointer-events: none;
}

.mothers-day-media::after {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 26px;
  color: rgba(var(--shadow-dark-rgb), 0.44);
  content: "Edredom Sereny aconchegando em uma noite fria de inverno";
  font-size: 0.86rem;
  font-weight: 800;
  text-align: center;
}

.mothers-day-media:has(img:not(.is-missing))::after {
  opacity: 0;
}

.mothers-day-media img {
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 900ms ease;
}

.mothers-day-media img.is-missing {
  opacity: 0;
}

.mothers-day-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.mothers-day-card {
  padding: 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(var(--shadow-rgb), 0.12);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(47, 41, 90, 0.08);
  backdrop-filter: blur(12px);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.mothers-day-card h3 {
  margin: 0 0 6px;
  color: var(--sage-dark);
  font-size: 1rem;
  font-weight: 800;
}

.mothers-day-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}
*/
/* ============================================
   FIM ANTIGO INVERNO
   ============================================ */

/* Winter section (novo) */
.winter-section {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin: 0;
  padding: 80px 0;
}

.winter-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('img/inverno.png');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.winter-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(45, 63, 58, 0.25) 0%,
    rgba(45, 63, 58, 0.55) 60%,
    rgba(45, 63, 58, 0.82) 100%);
  z-index: 2;
}

.winter-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
  padding: 0 24px;
  color: #ffffff;
  text-align: left;
}

.winter-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 0.5px solid rgba(255, 255, 255, 0.28);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 22px;
}

.winter-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 7vw, 3rem);
  font-weight: 400;
  line-height: 1.1;
  color: #ffffff;
  margin: 0 0 18px;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.4);
}

.winter-title em {
  display: block;
  font-style: italic;
  color: var(--sage-light);
}

.winter-subtitle {
  font-size: clamp(0.95rem, 2.4vw, 1.08rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.94);
  margin: 0 0 28px;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
  max-width: 460px;
}

.winter-pillars {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.winter-pillar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 0.5px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}

.winter-pillar:hover {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.34);
}

.winter-pillar__icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  border: 0.5px solid rgba(255, 255, 255, 0.28);
  color: #ffffff;
}

.winter-pillar__text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.winter-pillar__text strong {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.005em;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}

.winter-pillar__text span {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 2px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}

.winter-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background: var(--sage);
  color: #ffffff;
  border: none;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(var(--shadow-rgb), 0.55);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.winter-cta:hover {
  transform: translateY(-2px);
  background: var(--sage-dark);
  box-shadow: 0 16px 40px rgba(var(--shadow-rgb), 0.7);
}

@media (min-width: 768px) {
  .winter-section {
    min-height: 100vh;
    padding: 120px 0;
    align-items: center;
  }

  .winter-content {
    max-width: 1100px;
    padding: 0 60px;
    margin: 0;
  }

  .winter-content > * {
    max-width: 540px;
  }

  .winter-overlay {
    background: linear-gradient(90deg,
      rgba(45, 63, 58, 0.7) 0%,
      rgba(45, 63, 58, 0.45) 50%,
      rgba(45, 63, 58, 0.1) 100%);
  }
}

@media (max-width: 480px) {
  .winter-section {
    padding: 60px 0;
    min-height: auto;
  }

  .winter-content {
    padding: 0 20px;
  }

  .winter-pillars {
    margin-bottom: 24px;
  }

  .winter-cta {
    width: 100%;
  }
}

/* Product purchase section */
.product-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 58px 0 64px;
  background:
    linear-gradient(180deg, rgba(242, 238, 255, 0.88), rgba(250, 248, 255, 0.98) 46%, rgba(255, 255, 255, 0.86)),
    var(--bg);
}

.product-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 12% 12%, rgba(246, 166, 155, 0.14), transparent 34%),
    radial-gradient(ellipse at 90% 28%, rgba(var(--shadow-rgb), 0.66), transparent 42%);
  pointer-events: none;
}

.section-heading {
  display: grid;
  justify-items: center;
  max-width: 620px;
  margin: 0 auto 24px;
  text-align: center;
}

.section-kicker {
  margin: 0 0 9px;
  color: var(--sage);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.section-heading h2 {
  max-width: 11ch;
  margin: 0;
  color: var(--sage-dark);
  font-size: clamp(2rem, 8.8vw, 3rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-heading > p:not(.section-kicker) {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.58;
}

.product-card {
  display: grid;
  gap: 22px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(var(--shadow-rgb), 0.66);
  border-radius: 30px;
  box-shadow: 0 26px 76px rgba(var(--shadow-dark-rgb), 0.12);
  backdrop-filter: blur(16px);
}

.product-gallery {
  display: grid;
  gap: 10px;
}

.gallery-main {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  padding: 0;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(242, 238, 255, 0.78)),
    var(--sage-soft);
  border: 1px solid rgba(var(--shadow-rgb), 0.72);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  cursor: zoom-in;
}

.gallery-main::after,
.gallery-thumb::after,
.color-swatch::after,
.payment-flag::after,
.payment-icon::after {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(var(--shadow-dark-rgb), 0.38);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  text-align: center;
  content: attr(data-fallback);
  opacity: 0;
  pointer-events: none;
}

.gallery-main::after {
  content: "Imagem do produto";
}

.gallery-main:has(.is-missing)::after,
.gallery-thumb:has(.is-missing)::after,
.color-swatch:has(.is-missing)::after,
.payment-flag:has(.is-missing)::after,
.payment-icon:has(.is-missing)::after,
.has-missing::after {
  opacity: 1;
}

.gallery-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    opacity 220ms ease,
    transform 260ms ease;
}

.gallery-main-image.is-changing {
  opacity: 0.18;
  transform: scale(0.985);
}

.is-missing {
  opacity: 0;
}

.gallery-hint {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
}

.gallery-thumbs {
  display: flex;
  gap: 9px;
  overflow-x: auto;
  padding: 3px 1px 8px;
  scroll-behavior: smooth;
  scrollbar-width: thin;
}

.gallery-thumb {
  position: relative;
  flex: 0 0 68px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  padding: 0;
  background: var(--sage-soft);
  border: 2px solid transparent;
  border-radius: 16px;
  cursor: pointer;
  transition:
    border-color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumb.is-selected {
  border-color: var(--sage);
  box-shadow: 0 12px 26px rgba(var(--shadow-rgb), 0.18);
}

.gallery-thumb:active,
.color-swatch:active,
.size-option:active {
  transform: scale(0.96);
}

.product-info {
  display: grid;
  gap: 18px;
  padding: 0 2px 6px;
}

.product-meta {
  margin: 0;
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 800;
}

.product-title-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.product-title-row h3 {
  margin: 0;
  color: var(--sage-dark);
  font-size: 1.44rem;
  line-height: 1.12;
  letter-spacing: 0;
}

.verified-badge {
  display: inline-grid;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  place-items: center;
  color: var(--white);
  background: var(--sage);
  border-radius: 999px;
}

.verified-badge svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.product-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.product-rating span {
  color: #f7b731;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
}

.product-rating strong {
  color: var(--sage-dark);
  font-size: 0.9rem;
}

.product-rating p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.price-block {
  display: grid;
  gap: 4px;
  padding-top: 2px;
}

.product-price {
  margin: 0;
  color: var(--success);
  font-size: 2.26rem;
  font-weight: 800;
  line-height: 1;
}

.installments {
  margin: 0;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 700;
}

.payment-more {
  width: fit-content;
  color: var(--sage);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(var(--shadow-rgb), 0.24);
  text-underline-offset: 4px;
}

.pix-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px;
  background: linear-gradient(135deg, rgba(33, 184, 59, 0.1), rgba(255, 255, 255, 0.76));
  border: 1px solid rgba(33, 184, 59, 0.16);
  border-radius: 18px;
}

.pix-card strong {
  display: block;
  color: var(--success-dark);
  font-size: 1rem;
}

.pix-card p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.pix-card > span {
  flex: 0 0 auto;
  padding: 7px 9px;
  color: var(--success-dark);
  background: rgba(33, 184, 59, 0.12);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
}

.option-group {
  display: grid;
  gap: 10px;
}

.option-label {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  color: var(--sage-dark);
  font-size: 0.84rem;
}

.option-label span {
  font-weight: 800;
}

.option-label strong {
  font-weight: 800;
}

.color-options {
  display: flex;
  gap: 10px;
}

.color-swatch {
  position: relative;
  display: grid;
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  place-items: center;
  overflow: hidden;
  padding: 0;
  background: var(--sage-soft);
  border: 2px solid rgba(var(--shadow-rgb), 0.78);
  border-radius: 18px;
  cursor: pointer;
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

.color-swatch img,
.swatch-fallback {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.color-swatch img:not(.is-missing) + .swatch-fallback {
  opacity: 0;
}

.swatch-white {
  background: #f7f5ef;
}

.swatch-pink {
  background: #f5c9d6;
}

.swatch-gray {
  background: #c9c9cc;
}

.swatch-azul {
  background: #b8d4e8;
}

.swatch-preto {
  background: #2d2d2d;
}

.swatch-verde {
  background: #b8d4c2;
}

.color-swatch.is-selected {
  border-color: var(--sage);
  box-shadow: 0 12px 26px rgba(var(--shadow-rgb), 0.18);
}

.size-options {
  display: grid;
  gap: 9px;
}

.size-option {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2px 10px;
  align-items: center;
  min-height: 64px;
  padding: 12px 13px;
  color: var(--text);
  background: rgba(250, 248, 255, 0.76);
  border: 1px solid rgba(var(--shadow-rgb), 0.8);
  border-radius: 18px;
  cursor: pointer;
  text-align: left;
  transition:
    border-color var(--transition),
    background-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

.size-option span {
  color: var(--sage-dark);
  font-size: 0.96rem;
  font-weight: 800;
}

.size-option small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.size-option strong {
  grid-row: 1 / span 2;
  grid-column: 2;
  color: var(--sage-dark);
  font-size: 0.92rem;
}

.size-option.is-selected {
  background: rgba(242, 238, 255, 0.92);
  border-color: var(--sage);
  box-shadow: 0 12px 28px rgba(var(--shadow-rgb), 0.14);
}

.checkout-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  width: 100%;
  gap: 9px;
  padding: 15px 22px;
  color: var(--white);
  background: var(--success);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(33, 184, 59, 0.24);
  cursor: pointer;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition:
    background-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

.checkout-button svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.checkout-button:active {
  transform: translateY(2px) scale(0.985);
}

.payment-card {
  display: grid;
  gap: 12px;
  padding: 14px;
  background: rgba(250, 248, 255, 0.72);
  border: 1px solid rgba(var(--shadow-rgb), 0.72);
  border-radius: 20px;
}

.payment-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.payment-icon {
  position: relative;
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(var(--shadow-rgb), 0.72);
  border-radius: 14px;
}

.payment-icon::after {
  content: "card";
}

.payment-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.payment-card-top strong {
  display: block;
  color: var(--sage-dark);
  font-size: 0.92rem;
}

.payment-card-top p {
  margin: 1px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.payment-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.payment-flag {
  position: relative;
  display: grid;
  min-width: 48px;
  min-height: 29px;
  place-items: center;
  overflow: hidden;
  padding: 4px 8px;
  background: var(--white);
  border: 1px solid rgba(var(--shadow-rgb), 0.72);
  border-radius: 9px;
}

.payment-flag img {
  max-width: 40px;
  max-height: 18px;
  object-fit: contain;
}

.payment-flag b {
  display: none;
  color: rgba(var(--shadow-dark-rgb), 0.54);
  font-size: 0.62rem;
}

.payment-flag img.is-missing + b {
  display: block;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(45, 63, 58, 0.85);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition:
    opacity 240ms ease,
    visibility 0ms linear 240ms;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity 240ms ease,
    visibility 0ms linear 0ms;
}

.lightbox img {
  width: min(100%, 760px);
  max-height: 82vh;
  object-fit: contain;
  background: var(--sage-soft);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  box-shadow: 0 30px 90px rgba(19, 13, 48, 0.34);
  transform: scale(0.96);
  transition: transform 240ms ease;
}

.lightbox.is-open img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  color: var(--sage-dark);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(var(--shadow-rgb), 0.72);
  border-radius: 999px;
  cursor: pointer;
}

.lightbox-close span {
  position: absolute;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.lightbox-close span:first-child {
  transform: rotate(45deg);
}

.lightbox-close span:last-child {
  transform: rotate(-45deg);
}

/* Scroll-triggered entrance animations */
[data-animate] {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
}

/* ============================================
   ANTIGO HERO — animações (backup pré-redesign)
   ============================================ */
/*
.hero-media[data-animate] {
  transform: translateY(16px) scale(0.975);
  transition:
    opacity 760ms ease,
    transform 760ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.hero-content [data-animate]:nth-child(2) {
  transition-delay: 80ms;
}

.hero-content [data-animate]:nth-child(3) {
  transition-delay: 150ms;
}

.hero-actions {
  transition-delay: 110ms;
}

.hero-rating {
  transition-delay: 160ms;
}
*/
/* ============================================
   FIM ANTIGO HERO (animações)
   ============================================ */

@keyframes header-drop {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cloud-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(-9px, 11px, 0) rotate(3deg);
  }
}

@keyframes cloud-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(-16px, -8px, 0);
  }
}

@media (hover: hover) {
  .icon-button:hover,
  .menu-close:hover {
    background: rgba(255, 255, 255, 0.68);
  }

  .mobile-menu-nav a:hover {
    color: var(--sage);
  }

  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(var(--shadow-dark-rgb), 0.27);
  }

  .btn-secondary:hover {
    color: var(--sage);
    text-decoration-color: rgba(var(--shadow-rgb), 0.5);
  }

  .gallery-thumb:hover,
  .color-swatch:hover,
  .size-option:hover {
    transform: translateY(-2px);
    border-color: rgba(var(--shadow-rgb), 0.44);
  }

  .checkout-button:hover {
    background: var(--success-dark);
    box-shadow: 0 18px 38px rgba(21, 149, 43, 0.27);
    transform: translateY(-2px);
  }

  .payment-more:hover {
    color: var(--sage-dark);
    text-decoration-color: rgba(var(--shadow-dark-rgb), 0.42);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 768px) {
  :root {
    --header-height: 78px;
    --container: min(100% - 56px, 1160px);
  }

  .topbar {
    min-height: 38px;
  }

  .topbar p {
    font-size: 0.86rem;
  }

  .brand-logo {
    width: clamp(178px, 16vw, 230px);
    max-height: 66px;
  }

  /* ============================================
     ANTIGO HERO — desktop overrides (backup pré-redesign)
     ============================================ */
  /*
  .hero {
    min-height: calc(100svh - var(--header-height) - 38px);
    padding: 58px 0 68px;
  }

  .hero-bg::before {
    inset: -120px -140px auto;
    height: 620px;
  }

  .hero-bg-shape-1 {
    top: 130px;
    right: 4vw;
    width: 310px;
    height: 210px;
  }

  .hero-bg-shape-2 {
    top: auto;
    bottom: 40px;
    left: -80px;
    width: 290px;
    height: 220px;
  }

  .hero-bg-cloud {
    right: 25vw;
    bottom: 42px;
    width: 360px;
    height: 130px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 0.86fr) minmax(390px, 1.14fr);
    grid-template-areas:
      "content media"
      "actions media"
      "rating media";
    gap: 18px 56px;
  }

  .hero-content {
    grid-area: content;
    justify-items: start;
    text-align: left;
  }

  .hero-media {
    grid-area: media;
    margin-top: 0;
  }

  .hero-product-card {
    width: min(100%, 590px);
    border-radius: 38px;
  }

  .hero-product-card::before {
    inset: 14px;
    border-radius: 27px;
  }

  .hero-title {
    max-width: 12ch;
    font-size: clamp(4.1rem, 6.4vw, 6.35rem);
    line-height: 0.98;
  }

  .hero-copy {
    max-width: 31rem;
    margin-top: 18px;
    font-size: 1.08rem;
  }

  .hero-actions {
    grid-area: actions;
    grid-template-columns: auto auto;
    align-items: center;
    width: auto;
    max-width: none;
    justify-self: start;
    gap: 14px;
    margin-top: 6px;
  }

  .btn-primary {
    min-width: 220px;
  }

  .btn-secondary {
    min-height: 46px;
    padding-inline: 12px;
  }

  .hero-rating {
    grid-area: rating;
    justify-self: start;
    margin-top: 2px;
  }
  */
  /* ============================================
     FIM ANTIGO HERO (desktop overrides)
     ============================================ */

  .product-section {
    padding: 86px 0 94px;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2 {
    max-width: none;
    font-size: clamp(3rem, 4.4vw, 4.3rem);
  }

  .section-heading > p:not(.section-kicker) {
    font-size: 1.05rem;
  }

  .product-card {
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
    gap: 34px;
    align-items: start;
    padding: 22px;
    border-radius: 34px;
  }

  .gallery-main {
    border-radius: 28px;
  }

  .gallery-thumb {
    flex-basis: 78px;
    border-radius: 18px;
  }

  .product-info {
    gap: 19px;
    padding: 8px 4px 6px;
  }

  .product-title-row h3 {
    font-size: 1.86rem;
  }

  .product-price {
    font-size: 2.7rem;
  }

  .size-options {
    grid-template-columns: 1fr 1fr;
  }

  .checkout-button {
    min-height: 62px;
  }
}

/* Shopify-style purchase section refinement */
.product-section {
  padding: 34px 0 56px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(250, 248, 255, 0.96)),
    var(--bg);
}

/* ANTIGA HEADLINE COMPRAR — .product-section-label (substituída por .product-heading) */
/*
.product-section-label {
  margin: 0 0 12px;
  color: var(--sage-dark);
  font-size: 0.92rem;
  font-weight: 800;
  text-align: center;
}
*/

.product-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 36px;
  padding: 0 16px;
}

.product-heading__kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--sage);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.product-heading__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--sage-dark);
  margin: 0;
  letter-spacing: -0.01em;
}

.product-heading__title em {
  font-style: italic;
  color: var(--sage);
}

@media (min-width: 768px) {
  .product-heading {
    margin-bottom: 56px;
  }
}

@media (max-width: 480px) {
  .product-heading {
    margin-bottom: 28px;
  }
}

.product-layout {
  display: grid;
  gap: 18px;
}

.product-gallery {
  display: grid;
  gap: 9px;
}

.gallery-main {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  border: 1px solid rgba(var(--shadow-rgb), 0.62);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(242, 238, 255, 0.55)),
    var(--sage-soft);
  box-shadow: 0 10px 24px rgba(var(--shadow-dark-rgb), 0.08);
  touch-action: pan-y;
  user-select: none;
}

.gallery-main::after {
  font-size: 0.76rem;
  content: "Imagem do produto";
}

.gallery-main-image {
  border-radius: inherit;
  pointer-events: none;
}

.gallery-hint {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 0;
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 600;
}

.gallery-hint span {
  color: var(--sage-dark);
  font-size: 0.92rem;
}

.gallery-thumbs {
  gap: 8px;
  padding: 4px 1px 10px;
}

.gallery-thumb {
  flex: 0 0 56px;
  border-radius: 10px;
  border: 1px solid rgba(var(--shadow-rgb), 0.7);
  background: var(--white);
  box-shadow: none;
}

.gallery-thumb.is-selected {
  border: 2px solid var(--sage);
  box-shadow: 0 6px 14px rgba(var(--shadow-rgb), 0.14);
}

.product-info {
  gap: 12px;
  padding: 16px 0 0;
  background: transparent;
  border-top: 1px solid rgba(var(--shadow-rgb), 0.42);
}

.product-meta {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.product-title-row {
  align-items: center;
  gap: 7px;
}

.product-title-row h2,
.product-title-row h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.45rem, 6vw, 1.9rem);
  line-height: 1.22;
  letter-spacing: 0;
}

.verified-badge {
  flex-basis: 18px;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  background: var(--sage);
}

.verified-badge svg {
  width: 13px;
  height: 13px;
}

.product-rating {
  gap: 5px;
}

.product-rating span {
  color: #f5bd18;
  font-size: 0.9rem;
}

.product-rating strong,
.product-rating p {
  color: #111827;
  font-size: 0.9rem;
  font-weight: 700;
}

.price-block {
  gap: 3px;
}

.product-price {
  color: #00a82d;
  font-size: 2rem;
  letter-spacing: 0;
}

.installments {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #111827;
  font-size: 0.9rem;
  font-weight: 700;
}

.installments-icon {
  display: inline-block;
  width: 17px;
  height: 12px;
  border: 2px solid currentColor;
  border-radius: 2px;
  box-shadow: inset 0 4px 0 rgba(17, 24, 39, 0.16);
}

.payment-more {
  display: none;
}

.pix-card {
  display: grid;
  grid-template-columns: 30px 1fr auto;
  gap: 9px;
  align-items: center;
  padding: 10px 11px;
  background: var(--pix-bg, #f0fff4);
  border: 1px solid var(--pix-border, #bfeccb);
  border-radius: 12px;
}

.pix-icon {
  position: relative;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
}

.pix-icon::before {
  width: 18px;
  height: 18px;
  background: #2e2e2e;
  border-radius: 4px;
  content: "";
  transform: rotate(45deg);
}

.pix-icon img {
  position: relative;
  z-index: 1;
  max-width: 24px;
  max-height: 24px;
  object-fit: contain;
}

.pix-icon img.is-missing {
  display: none;
}

.pix-card strong {
  color: #1f2937;
  font-size: 0.93rem;
}

.pix-card p {
  color: #1f2937;
  font-size: 0.76rem;
  font-weight: 500;
}

.pix-card > span:not(.pix-icon),
.pix-badge {
  align-self: start;
  padding: 4px 6px;
  color: var(--white);
  background: #111827;
  border-radius: 5px;
  font-size: 0.62rem;
  font-weight: 800;
  white-space: nowrap;
}

.option-group {
  gap: 9px;
  padding-top: 8px;
}

.option-label {
  color: var(--text);
  font-size: 0.82rem;
}

.color-options {
  gap: 9px;
}

.color-swatch {
  flex-basis: 52px;
  width: 52px;
  height: 52px;
  border-radius: 9px;
  border: 1px solid rgba(var(--shadow-rgb), 0.8);
  background: var(--white);
}

.color-swatch.is-selected {
  border: 2px solid var(--sage);
  box-shadow: 0 6px 14px rgba(var(--shadow-rgb), 0.14);
}

.size-options {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.size-option {
  grid-template-columns: 1fr;
  min-height: 78px;
  gap: 2px;
  padding: 10px 11px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid rgba(47, 41, 90, 0.18);
  box-shadow: none;
  text-align: center;
}

.size-option span {
  color: #111827;
  font-size: 0.92rem;
}

.size-option small {
  color: #111827;
  font-size: 0.76rem;
  font-weight: 500;
}

.size-option strong {
  grid-row: auto;
  grid-column: auto;
  color: var(--sage-dark);
  font-size: 0.78rem;
  margin-top: 2px;
}

.size-option.is-selected {
  background: rgba(242, 238, 255, 0.86);
  border: 2px solid var(--sage);
  box-shadow: none;
}

.checkout-button {
  min-height: 58px;
  margin-top: 4px;
  border-radius: 26px;
  background: var(--success);
  box-shadow: 0 12px 24px rgba(33, 184, 59, 0.25);
}

.payment-card {
  gap: 10px;
  padding: 13px;
  background: #f7f7f8;
  border: 1px solid rgba(47, 41, 90, 0.06);
  border-radius: 12px;
}

.payment-card-top {
  gap: 9px;
}

.payment-icon {
  flex-basis: 38px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 8px;
  background: transparent;
}

.payment-card-top strong {
  color: #1f2937;
  font-size: 0.88rem;
}

.payment-card-top p {
  color: var(--success-dark);
  font-size: 0.84rem;
  font-weight: 800;
}

.payment-flags {
  justify-content: center;
  gap: 8px;
  padding-top: 4px;
}

.payment-flag {
  min-width: 40px;
  min-height: 24px;
  padding: 3px 6px;
  border-radius: 5px;
  background: var(--white);
  border-color: rgba(47, 41, 90, 0.08);
}

.payment-flag img {
  max-width: 32px;
  max-height: 15px;
}

.payment-flag b {
  font-size: 0.55rem;
}

@media (min-width: 768px) {
  .product-section {
    padding: 72px 0 84px;
  }

  /* ANTIGA HEADLINE COMPRAR — .product-section-label desktop override */
  /*
  .product-section-label {
    margin-bottom: 16px;
    text-align: left;
  }
  */

  .product-layout {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
    gap: 36px;
    align-items: start;
    max-width: 1080px;
    margin-inline: auto;
  }

  .product-info {
    padding-top: 0;
    border-top: 0;
  }

  .gallery-main {
    border-radius: 16px;
  }

  .gallery-thumb {
    flex-basis: 64px;
  }

  .product-title-row h2,
  .product-title-row h3 {
    font-size: 2rem;
  }

  .product-price {
    font-size: 2.34rem;
  }

  .size-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Shopify reference polish requested for the purchase CTA */
.installments {
  display: none;
}

.installment-line {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #222;
  font-size: 0.9rem;
  line-height: 1.25;
}

.installment-icon {
  display: inline-flex;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  color: #222;
}

.installment-icon svg {
  display: block;
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.installment-line strong {
  font-weight: 800;
}

.pix-box {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 0 10px;
  padding: 10px 12px;
  background: #f6f6f6;
  border: 0;
  border-radius: 12px;
}

.pix-icon {
  display: inline-flex;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  color: #222;
}

.pix-icon::before {
  display: none;
}

.pix-icon svg {
  display: block;
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.pix-content {
  min-width: 0;
}

.pix-main {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  color: #111;
  font-size: 0.88rem;
  line-height: 1.15;
}

.pix-price {
  color: #111;
  font-weight: 800;
}

.pix-badge {
  display: inline-flex;
  align-items: center;
  min-height: 14px;
  padding: 2px 6px;
  color: #fff;
  background: #111;
  border-radius: 999px;
  font-size: 0.56rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.pix-saving {
  margin: 2px 0 0;
  color: #333;
  font-size: 0.76rem;
  font-weight: 500;
  line-height: 1.25;
}

.color-swatch {
  flex-basis: 48px;
  width: 48px;
  height: 48px;
  border-radius: 6px;
  border: 1px solid #ddd;
  background: #fff;
}

.color-swatch.is-selected {
  border: 2px solid var(--sage);
  box-shadow: 0 4px 10px rgba(var(--shadow-rgb), 0.18);
}

.option-group {
  padding-top: 10px;
}

.size-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.size-option {
  min-height: 44px;
  padding: 11px 14px;
  color: #111;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: none;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.25;
  text-align: left;
}

.size-option.is-selected,
.size-option.is-active {
  color: var(--sage);
  background: #fff;
  border-color: var(--sage);
  box-shadow: 0 0 0 1px rgba(var(--shadow-rgb), 0.15);
}

.checkout-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 56px;
  margin-top: 6px;
  color: #fff;
  background: var(--success);
  border-radius: 28px;
}

.buy-icon,
.buy-icon svg {
  display: block;
  width: 18px;
  height: 18px;
}

.checkout-button svg {
  fill: none;
}

.checkout-button {
  flex-direction: column !important;
  gap: 4px !important;
  padding: 12px 22px !important;
}

.checkout-button__main {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkout-button__bonus {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.92;
  margin-top: 0;
  line-height: 1.2;
}

@media (max-width: 480px) {
  .checkout-button__bonus {
    font-size: 10px;
  }
}

.payment-card {
  margin-top: 16px;
  overflow: hidden;
  background: #f6f6f6;
  border: 0;
  border-radius: 10px;
}

.payment-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
}

.payment-card__icon,
.payment-card__icon svg {
  display: block;
  flex: 0 0 45px;
  width: 45px;
  height: 45px;
}

.payment-card__header p {
  margin: 0;
  color: #222;
  font-size: 0.88rem;
  line-height: 1.2;
}

.payment-card__header strong {
  display: block;
  color: #00bd58;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.2;
}

.payment-flags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: #fff;
}

.payment-flags svg {
  width: 38px;
  height: 24px;
}

@media (hover: hover) {
  .size-option:hover {
    border-color: var(--sage);
    color: var(--sage);
    transform: none;
  }
}

/* ============================================
   ANTIGO DESCRIÇÃO — backup pré-redesign (reverter se necessário)
   ============================================ */
/*
.product-description {
  background: #fff;
  padding: 34px 16px 0;
}

.description-inner {
  max-width: 760px;
  margin: 0 auto;
}

.product-description h2 {
  margin: 0 0 18px;
  color: var(--sage-dark);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0;
}

.description-block {
  margin-bottom: 22px;
  padding: 0 0 22px;
  border-bottom: 1px solid var(--border);
}

.description-block h3 {
  margin: 0 0 14px;
  color: var(--sage-dark);
  font-size: 1.19rem;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0;
}

.description-block p {
  margin: 0 0 12px;
  color: #161323;
  font-size: 0.94rem;
  line-height: 1.75;
}

.description-block p strong {
  color: var(--text);
  font-weight: 800;
}

.description-block ul {
  margin: 14px 0 0;
  padding-left: 0;
  list-style: none;
}

.description-block li {
  color: #161323;
  font-size: 0.94rem;
  line-height: 1.7;
  margin-bottom: 5px;
}

.description-block li::before {
  margin-right: 6px;
  color: var(--sage);
  content: "•";
  font-weight: 900;
}

.description-block .check-list li::before {
  color: var(--success);
  content: "✔";
}

.description-block .x-list li::before {
  color: #d45454;
  content: "✖";
}
*/
/* ============================================
   FIM ANTIGO DESCRIÇÃO
   ============================================ */

/* Product description (novo) */
.product-description {
  background: var(--bg);
  padding: 80px 0;
}

.description-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

.description-header {
  text-align: center;
  margin-bottom: 40px;
}

.description-kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--sage);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.description-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 5vw, 2.4rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--sage-dark);
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}

.description-title em {
  font-style: italic;
  color: var(--sage);
}

.description-lead {
  font-size: clamp(1rem, 2.4vw, 1.1rem);
  font-weight: 500;
  color: var(--sage-dark);
  margin: 0 0 12px;
  line-height: 1.45;
}

.description-intro {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

/* Tabela de Especificações */
.specs-table {
  background: var(--sage-soft);
  border-radius: 18px;
  padding: 28px 22px;
  margin-bottom: 28px;
  border: 0.5px solid rgba(var(--shadow-rgb), 0.18);
}

.specs-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--sage-dark);
  margin: 0 0 18px;
  text-align: center;
  letter-spacing: 0.01em;
}

.specs-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
}

.specs-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 0.5px solid rgba(var(--shadow-rgb), 0.15);
}

.specs-row:last-child {
  border-bottom: none;
}

.specs-row dt {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--sage-dark);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.specs-row dd {
  font-size: 0.92rem;
  color: var(--text);
  margin: 0;
  text-align: right;
  line-height: 1.4;
}

/* Botão Ver mais */
.description-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 24px;
  background: transparent;
  border: 1px solid var(--sage-light);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sage-dark);
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.description-toggle:hover {
  background: var(--sage-soft);
  border-color: var(--sage);
}

.description-toggle__icon {
  transition: transform 0.3s ease;
}

.description-toggle[aria-expanded="true"] .description-toggle__icon {
  transform: rotate(180deg);
}

.description-toggle[aria-expanded="true"] .description-toggle__label {
  font-size: 0;
}

.description-toggle[aria-expanded="true"] .description-toggle__label::before {
  content: "Ocultar descrição completa";
  font-size: 13px;
}

/* Conteúdo expandido */
.description-full {
  margin-top: 32px;
}

.description-full[hidden] {
  display: none;
}

.description-block {
  margin-bottom: 28px;
}

.description-block:last-child {
  margin-bottom: 0;
}

.description-block h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--sage-dark);
  margin: 0 0 12px;
  letter-spacing: -0.005em;
}

.description-block p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text);
  margin: 0 0 12px;
}

.description-block p:last-child {
  margin-bottom: 0;
}

.description-block strong {
  color: var(--sage-dark);
  font-weight: 500;
}

.description-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.description-list li {
  position: relative;
  padding: 8px 0 8px 22px;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text);
  border-bottom: 0.5px solid rgba(var(--shadow-rgb), 0.1);
}

.description-list li:last-child {
  border-bottom: none;
}

.description-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 12px;
  height: 1.5px;
  background: var(--sage);
}

.seasons-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.seasons-grid > div {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 10px 14px;
  background: var(--sage-soft);
  border-radius: 10px;
}

.seasons-grid dt {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage-dark);
  flex-shrink: 0;
  min-width: 100px;
}

.seasons-grid dd {
  font-size: 0.9rem;
  color: var(--text);
  margin: 0;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .product-description {
    padding: 110px 0;
  }

  .description-inner {
    max-width: 820px;
  }

  .description-header {
    margin-bottom: 56px;
  }

  .specs-table {
    padding: 36px 32px;
  }

  .seasons-grid {
    flex-direction: row;
  }

  .seasons-grid > div {
    flex: 1;
    flex-direction: column;
    gap: 4px;
  }

  .seasons-grid dt {
    min-width: 0;
  }
}

@media (max-width: 480px) {
  .product-description {
    padding: 60px 0;
  }

  .specs-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 10px 0;
  }

  .specs-row dd {
    text-align: left;
  }
}

.payment-security {
  margin-top: 8px;
  padding: 24px 16px 28px;
  background: #fff;
  border-top: 1px solid rgba(var(--shadow-rgb), 0.12);
  box-shadow: 0 -8px 24px rgba(47, 41, 90, 0.06);
}

.payment-security__inner {
  max-width: 760px;
  margin: 0 auto;
}

.payment-security__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.payment-security__header h3 {
  margin: 0;
  color: var(--sage-dark);
  font-size: 1.19rem;
  font-weight: 800;
  letter-spacing: 0;
}

.payment-security__lock {
  display: inline-flex;
  color: var(--muted);
}

.payment-security__lock svg {
  width: 18px;
  height: 24px;
}

.payment-security__flags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 24px;
  margin-bottom: 18px;
}

.payment-security__flags svg,
.payment-security__flags img {
  width: 38px;
  height: 24px;
}

.payment-security p {
  margin: 0;
  color: #161323;
  font-size: 0.88rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  /* ANTIGO DESCRIÇÃO — desktop overrides */
  /*
  .product-description {
    padding: 46px 24px 0;
  }

  .product-description h2 {
    font-size: 1.45rem;
  }
  */

  .payment-security__header h3 {
    font-size: 1.32rem;
  }

  /* ANTIGO DESCRIÇÃO — list font-size desktop */
  /*
  .description-block p,
  .description-block li {
    font-size: 1rem;
  }
  */

  .payment-security {
    padding-inline: 24px;
  }
}

@media (hover: hover) {
  .color-card:hover,
  .benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 42px rgba(47, 41, 90, 0.12);
  }

  .color-card:hover img,
  .benefit-card:hover img {
    transform: scale(1.035);
  }

  .mini-cta:hover {
    color: var(--white);
    background: var(--sage);
    transform: translateY(-1px);
  }

  /* ANTIGO INVERNO — hover overrides */
  /*
  .mothers-day-media:hover img {
    transform: scale(1.025);
  }

  .mothers-day-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(47, 41, 90, 0.1);
  }
  */
  /* FIM ANTIGO INVERNO (hover) */
}

@media (min-width: 768px) {
  .color-showcase,
  .visual-benefits {
    padding: 78px 0;
  }

  .prebuy-heading {
    margin-bottom: 30px;
  }

  .prebuy-heading h2 {
    max-width: 14ch;
  }

  .prebuy-heading p:not(.prebuy-kicker) {
    max-width: 34rem;
    font-size: 1.02rem;
  }

  .color-carousel {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    overflow: visible;
    padding-bottom: 0;
  }

  .benefit-carousel {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    overflow: visible;
    padding-bottom: 0;
  }

  .color-card,
  .benefit-card {
    flex-basis: auto;
  }

  /* ANTIGO INVERNO — desktop overrides */
  /*
  .mothers-day-section {
    padding: 82px 32px;
  }

  .mothers-day-section__inner {
    grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
    align-items: center;
    gap: 54px;
  }

  .mothers-day-section h2 {
    max-width: 12ch;
  }

  .mothers-day-section p {
    font-size: 1rem;
  }

  .mothers-day-cards {
    grid-template-columns: 1fr 1fr;
  }

  .mothers-day-blob-1 {
    top: 90px;
    right: 5vw;
    width: 260px;
    height: 186px;
  }

  .mothers-day-blob-2 {
    bottom: 36px;
    left: 4vw;
    width: 270px;
    height: 200px;
  }
  */
  /* FIM ANTIGO INVERNO (desktop) */
}

/* Remodeled premium sections between hero and purchase CTA */
.color-ribbon-section {
  overflow: hidden;
  padding: 64px 0 56px;
  background: var(--bg);
}

.color-ribbon__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 36px;
  padding: 0 24px;
}

.color-ribbon__kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--sage);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.color-ribbon__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--sage-dark);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}

.color-ribbon__title em {
  font-style: italic;
  color: var(--sage);
}

.color-ribbon__subtitle {
  font-size: clamp(0.95rem, 2.2vw, 1.05rem);
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}

.benefits-story__heading {
  width: min(100% - 32px, 760px);
  margin: 0 auto 26px;
  text-align: center;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--sage);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.benefits-story__heading h2 {
  max-width: 15ch;
  margin: 0 auto;
  color: var(--sage-dark);
  font-size: clamp(2rem, 8.4vw, 3.55rem);
  font-weight: 800;
  line-height: 1.07;
  letter-spacing: 0;
}

.benefits-story__heading p:not(.section-kicker) {
  max-width: 34rem;
  margin: 13px auto 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.62;
}

.color-ribbon {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  touch-action: pan-x pan-y;
}

.color-ribbon::-webkit-scrollbar {
  display: none;
}

.color-ribbon__track {
  display: flex;
  width: max-content;
  min-width: 200%;
  animation: ribbon-flow 68s linear infinite;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  perspective: 1000px;
  -webkit-perspective: 1000px;
  animation-play-state: running;
  opacity: 0;
  transition: opacity 0.6s ease-out;
}

.color-ribbon__track.is-ready {
  opacity: 1;
}

.color-ribbon__track.is-paused {
  animation-play-state: paused;
}

.color-ribbon__item {
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.color-ribbon__item img {
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.color-ribbon__item {
  position: relative;
  flex: 0 0 clamp(230px, 72vw, 430px);
  height: clamp(280px, 84vw, 520px);
  margin: 0;
  overflow: hidden;
  background: var(--sage-soft);
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(var(--shadow-rgb), 0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.color-ribbon__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(var(--shadow-rgb), 0.22);
}

.color-ribbon__item::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(45, 63, 58, 0.02) 20%, rgba(45, 63, 58, 0.48) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
  content: "";
  pointer-events: none;
}

.color-ribbon__item::after {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 22px;
  color: rgba(var(--shadow-dark-rgb), 0.45);
  content: "Imagem da cor";
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
}

.color-ribbon__item:has(img:not(.is-missing))::after {
  opacity: 0;
}

.color-ribbon__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.color-ribbon__item img.is-missing {
  opacity: 0;
}

.color-ribbon__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(180deg, transparent 0%, rgba(45, 63, 58, 0.85) 100%);
  color: #ffffff;
}

.color-ribbon__swatch {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--swatch-color);
  border: 2px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}

.color-ribbon__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.color-ribbon__text strong {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.color-ribbon__text span {
  font-size: 11px;
  font-weight: 400;
  opacity: 0.85;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@keyframes ribbon-flow {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.section-divider {
  position: relative;
  height: 42px;
  background: linear-gradient(180deg, rgba(242, 238, 255, 0.66), #ffffff);
}

.section-divider::before {
  position: absolute;
  top: 20px;
  left: 50%;
  width: min(58vw, 420px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--shadow-rgb), 0.2), transparent);
  box-shadow: 0 0 22px rgba(var(--shadow-rgb), 0.18);
  content: "";
  transform: translateX(-50%);
}

.section-divider::after {
  position: absolute;
  top: 16px;
  left: 50%;
  width: 8px;
  height: 8px;
  background: var(--white);
  border: 1px solid rgba(var(--shadow-rgb), 0.22);
  border-radius: 999px;
  content: "";
  transform: translateX(-50%);
}

.section-divider--soft {
  background: linear-gradient(180deg, #ffffff, rgba(247, 241, 255, 0.72));
}

/* ============================================
   ANTIGO BENEFÍCIOS — backup pré-redesign (reverter se necessário)
   ============================================ */
/*
.benefits-story-section {
  position: relative;
  min-height: 360vh;
  background:
    radial-gradient(ellipse at 50% 14%, rgba(var(--shadow-rgb), 0.54), transparent 44%),
    linear-gradient(180deg, #ffffff 0%, #f7f4ff 44%, #ffffff 100%);
}

.benefits-story__sticky {
  position: sticky;
  top: 0;
  display: grid;
  min-height: 100svh;
  align-content: center;
  padding: 64px 16px 54px;
}

.benefits-story__heading {
  margin-bottom: 24px;
}

.benefits-story__panel {
  position: relative;
  display: grid;
  width: min(100%, 520px);
  min-height: 390px;
  margin: 0 auto;
  padding: 28px 20px 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(var(--shadow-rgb), 0.12);
  border-radius: 30px;
  box-shadow: 0 24px 70px rgba(47, 41, 90, 0.1);
  backdrop-filter: blur(18px);
}

.benefit-stage {
  grid-area: 1 / 1;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 11px;
  opacity: 0;
  text-align: center;
  transform: translateY(18px) scale(0.985);
  transition:
    opacity 420ms ease,
    transform 420ms ease;
  pointer-events: none;
}

.benefit-stage.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.benefit-stage__icon {
  display: grid;
  width: 104px;
  height: 104px;
  place-items: center;
  color: var(--sage);
  background: linear-gradient(145deg, rgba(242, 238, 255, 0.94), rgba(255, 255, 255, 0.86));
  border: 1px solid rgba(var(--shadow-rgb), 0.12);
  border-radius: 34px;
  box-shadow: 0 18px 34px rgba(var(--shadow-rgb), 0.12);
  animation: benefit-float 6s ease-in-out infinite;
}

.benefit-stage__icon svg {
  width: 68px;
  height: 68px;
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-stage span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.benefit-stage h3 {
  margin: 0;
  color: var(--sage-dark);
  font-size: clamp(1.72rem, 7vw, 2.6rem);
  font-weight: 800;
  line-height: 1.05;
}

.benefit-stage p {
  max-width: 22rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.62;
}

.benefit-progress {
  position: absolute;
  right: 22px;
  bottom: 20px;
  left: 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
}

.benefit-progress span {
  height: 4px;
  background: rgba(var(--shadow-rgb), 0.14);
  border-radius: 999px;
  cursor: pointer;
  transition:
    background-color 250ms ease,
    transform 250ms ease;
}

.benefit-progress span.is-active {
  background: var(--sage);
  transform: scaleY(1.35);
}

@keyframes benefit-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}
*/
/* ============================================
   FIM ANTIGO BENEFÍCIOS
   ============================================ */

/* Tech section (novo) */
.tech-section {
  position: relative;
  min-height: 90vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0;
  padding: 80px 0;
}

.tech-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('img/tecnologia.png');
  background-size: cover;
  background-position: center top;
  z-index: 1;
}

.tech-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(45, 63, 58, 0.45) 0%,
    rgba(45, 63, 58, 0.25) 30%,
    rgba(45, 63, 58, 0.45) 70%,
    rgba(45, 63, 58, 0.7) 100%);
  z-index: 2;
}

.tech-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1100px;
  padding: 0 24px;
  color: #ffffff;
}

.tech-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.tech-kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--sage-light);
  text-transform: uppercase;
  margin-bottom: 16px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.25);
}

.tech-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 5.5vw, 3rem);
  font-weight: 400;
  line-height: 1.12;
  color: #ffffff;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.tech-title em {
  font-style: italic;
  color: var(--sage-light);
}

.tech-subtitle {
  font-size: clamp(0.95rem, 2.2vw, 1.1rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.94);
  margin: 0;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.tech-pillars {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 720px;
}

.tech-pillar {
  text-align: center;
  padding: 24px 14px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 0.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  transition: transform 0.4s ease, background 0.4s ease, border-color 0.4s ease;
}

.tech-pillar:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.32);
}

.tech-pillar__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 0.5px solid rgba(255, 255, 255, 0.28);
  color: #ffffff;
}

.tech-pillar__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(0.95rem, 2.4vw, 1.15rem);
  font-weight: 500;
  color: #ffffff;
  margin: 0 0 6px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.tech-pillar__text {
  font-size: clamp(0.78rem, 1.8vw, 0.88rem);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.86);
  margin: 0;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.28);
}

@media (min-width: 768px) {
  .tech-section {
    min-height: 100vh;
    padding: 120px 0;
  }

  .tech-bg-image {
    background-position: center;
  }

  .tech-pillars {
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    max-width: 1100px;
  }

  .tech-header {
    margin-bottom: 64px;
  }

  .tech-pillar {
    padding: 30px 18px;
  }

  .tech-pillar__icon {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 480px) {
  .tech-section {
    padding: 60px 0;
    min-height: auto;
  }

  .tech-content {
    padding: 0 20px;
  }

  .tech-pillars {
    gap: 12px;
  }

  .tech-pillar {
    padding: 20px 12px;
  }

  .tech-header {
    margin-bottom: 32px;
  }
}

@media (hover: hover) {
  .color-ribbon:hover .color-ribbon__track {
    animation-play-state: paused;
  }
}

@media (prefers-reduced-motion: reduce) {
  .color-ribbon__track {
    animation: none !important;
  }

  /* ANTIGO BENEFÍCIOS — reduced motion overrides */
  /*
  .benefits-story-section {
    min-height: auto;
  }

  .benefits-story__sticky {
    position: relative;
    min-height: auto;
  }

  .benefit-stage {
    position: relative;
    grid-area: auto;
    opacity: 1;
    transform: none;
  }

  .benefits-story__panel {
    gap: 24px;
  }
  */
  /* FIM ANTIGO BENEFÍCIOS — reduced motion */
}

@media (min-width: 768px) {
  .color-ribbon-section {
    padding: 82px 0 56px;
  }

  /* ANTIGO BENEFÍCIOS — desktop overrides (1) */
  /*
  .benefits-story__heading {
    margin-bottom: 34px;
  }

  .benefits-story__heading h2 {
    max-width: 17ch;
  }
  */
  /* FIM ANTIGO BENEFÍCIOS (1a) */

  .color-ribbon__item {
    flex-basis: clamp(320px, 31vw, 470px);
    height: clamp(400px, 42vw, 620px);
  }

  /* ANTIGO BENEFÍCIOS — desktop overrides (2) */
  /*
  .benefits-story-section {
    min-height: 330vh;
  }

  .benefits-story__sticky {
    padding: 86px 32px 70px;
  }

  .benefits-story__panel {
    min-height: 440px;
    border-radius: 36px;
  }

  .benefit-stage__icon {
    width: 118px;
    height: 118px;
  }
  */
  /* FIM ANTIGO BENEFÍCIOS (1b) */
}

/* Reviews / AReviews-style section */
.reviews-section {
  background: #fff;
  padding: 42px 22px;
}

.reviews-section[data-animate] {
  opacity: 1;
  transform: none;
}

.reviews-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.reviews-title {
  margin: 0 0 14px;
  color: var(--sage-dark);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0;
}

.reviews-divider {
  margin: 0 0 26px;
  border: 0;
  border-bottom: 1px solid #d4d4d4;
}

.reviews-summary {
  display: grid;
  gap: 26px;
  justify-items: center;
}

.review-score {
  text-align: center;
}

.review-score__number {
  color: var(--star, #f3c621);
  font-size: 4rem;
  font-weight: 900;
  line-height: 0.9;
}

.review-score__total {
  color: #222;
  font-size: 1.05rem;
  font-weight: 800;
}

.review-stars {
  margin-top: 8px;
  color: var(--star, #f3c621);
  font-size: 1.35rem;
  letter-spacing: 0.03em;
  line-height: 1;
}

.review-score p {
  margin: 8px 0 0;
  color: #333;
  font-size: 0.78rem;
}

.rating-distribution {
  width: min(100%, 290px);
}

.rating-row {
  display: grid;
  grid-template-columns: 34px 1fr 58px;
  align-items: center;
  gap: 8px;
  margin-bottom: 7px;
  color: #222;
  font-size: 0.86rem;
}

.rating-row b {
  color: #9ca3af;
}

.rating-bar {
  height: 11px;
  overflow: hidden;
  background: #d7d7d7;
  border-radius: 999px;
}

.rating-bar span {
  display: block;
  height: 100%;
  background: var(--star, #f3c621);
}

.rating-count {
  min-height: 22px;
  padding: 3px 8px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 999px;
  color: #111;
  font-size: 0.82rem;
  font-weight: 500;
  text-align: center;
}

.write-review-btn {
  display: block;
  margin: 26px auto 34px;
  padding: 12px 24px;
  color: #fff;
  background: #373737;
  border: 0;
  border-radius: 7px;
  cursor: pointer;
  font-weight: 800;
  transition:
    background-color var(--transition),
    transform var(--transition);
}

.write-review-btn:active {
  transform: scale(0.98);
}

.review-form {
  display: grid;
  gap: 12px;
  max-height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border-top: 1px solid transparent;
  opacity: 0;
  transition:
    max-height 360ms ease,
    opacity 240ms ease,
    margin 240ms ease,
    padding 240ms ease,
    border-color 240ms ease;
}

.review-form.is-open {
  max-height: 680px;
  margin: 0 0 18px;
  padding: 22px 0 18px;
  border-top-color: #e5e5e5;
  opacity: 1;
}

.review-form label {
  display: grid;
  gap: 6px;
  color: #222;
  font-size: 0.9rem;
}

.review-form input,
.review-form textarea {
  width: 100%;
  padding: 10px 12px;
  color: #111;
  background: #fff;
  border: 1px solid #d4d4d4;
  border-radius: 2px;
  font: inherit;
}

.review-form textarea {
  min-height: 110px;
  resize: vertical;
}

.review-form input::placeholder,
.review-form textarea::placeholder {
  color: #b7bbc3;
}

.review-form__rating {
  display: flex;
  gap: 22px;
  align-items: center;
  color: #222;
  font-size: 0.9rem;
}

.review-upload,
.review-submit {
  width: fit-content;
  border: 0;
  border-radius: 3px;
  cursor: pointer;
  font-weight: 800;
}

.review-upload {
  padding: 9px 13px;
  color: #fff;
  background: #5f5f5f;
}

.review-submit {
  padding: 11px 15px;
  color: #fff;
  background: #555;
}

.review-form__message {
  min-height: 18px;
  margin: 0;
  color: var(--success);
  font-size: 0.86rem;
  font-weight: 700;
}

.review-form__message.is-error {
  color: #d45454;
}

.reviews-list {
  display: grid;
  gap: 16px;
  padding-top: 12px;
  border-top: 1px solid #eeeeee;
}

.review-card {
  padding: 16px;
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 20px;
  box-shadow: 0 5px 15px -10px rgba(0, 0, 0, 0.5);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.review-avatar {
  display: grid;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #fff;
  background: #444;
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 800;
}

.review-author strong {
  display: block;
  color: #111;
  font-size: 0.92rem;
  font-weight: 800;
}

.review-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #111;
  font-size: 0.7rem;
}

.review-verified::after {
  display: inline-grid;
  width: 9px;
  height: 9px;
  place-items: center;
  color: #fff;
  background: #2fbf58;
  border-radius: 999px;
  content: "✓";
  font-size: 0.45rem;
  line-height: 1;
}

.review-card .review-stars {
  margin: 6px 0 12px;
  font-size: 1.02rem;
}

.review-comment {
  margin: 0;
  color: #111;
  font-size: 0.9rem;
  line-height: 1.48;
}

.review-image-button {
  display: block;
  width: 100%;
  margin-top: 14px;
  padding: 0;
  overflow: hidden;
  background: #f5f5f5;
  border: 0;
  border-radius: 9px;
  cursor: zoom-in;
}

.review-image-button img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.review-image-button img.is-missing {
  min-height: 220px;
  opacity: 0;
}

.reviews-pagination {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 28px;
}

.reviews-pagination button {
  min-width: 32px;
  height: 32px;
  padding: 0 9px;
  color: #111;
  background: #f7f7f7;
  border: 1px solid #ebebeb;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 700;
}

.reviews-pagination button.is-active {
  background: var(--sage-soft);
  border-color: var(--sage-light);
  color: var(--sage-dark);
}

.reviews-pagination button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.review-lightbox {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(17, 17, 17, 0.72);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 220ms ease,
    visibility 0ms linear 220ms;
}

.review-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity 220ms ease,
    visibility 0ms linear 0ms;
}

.review-lightbox img {
  width: min(100%, 760px);
  max-height: 84vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

.review-lightbox__close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  background: #fff;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.review-lightbox__close span {
  position: absolute;
  width: 18px;
  height: 2px;
  background: #111;
  border-radius: 999px;
}

.review-lightbox__close span:first-child {
  transform: rotate(45deg);
}

.review-lightbox__close span:last-child {
  transform: rotate(-45deg);
}

@media (hover: hover) {
  .write-review-btn:hover,
  .review-submit:hover {
    background: #222;
  }
}

@media (min-width: 768px) {
  .reviews-section {
    padding: 58px 28px;
  }

  .reviews-title {
    font-size: 1.9rem;
  }

  .reviews-summary {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    max-width: 720px;
    margin: 0 auto;
  }

  .reviews-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }
}

@media (min-width: 1100px) {
  .reviews-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Keep product/color images fully visible inside 1:1 frames */
.gallery-main-image,
.gallery-thumb img,
.color-swatch img {
  object-fit: contain;
  background: linear-gradient(145deg, #ffffff, var(--sage-soft));
}

.color-ribbon__item {
  aspect-ratio: 1 / 1;
  height: auto;
}

.gallery-main {
  aspect-ratio: 1 / 1;
}

/* ANTIGO INVERNO — aspect-ratio overrides */
/*
.mothers-day-media {
  aspect-ratio: 1 / 1;
}

.mothers-day-media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
*/
/* FIM ANTIGO INVERNO (aspect-ratio) */

/* FAQ */
.faq-section {
  padding: 44px 18px;
  background: linear-gradient(180deg, #ffffff 0%, #faf8ff 100%);
}

.faq-inner {
  max-width: 780px;
  margin: 0 auto;
}

.faq-header {
  margin-bottom: 26px;
  text-align: center;
}

.faq-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--sage);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.faq-header h2 {
  margin: 0;
  color: var(--sage-dark);
  font-size: clamp(1.75rem, 7vw, 2.88rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
}

.faq-header p {
  max-width: 520px;
  margin: 12px auto 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(var(--shadow-rgb), 0.13);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(47, 41, 90, 0.06);
}

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 17px 18px;
  color: var(--sage-dark);
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-size: 0.94rem;
  font-weight: 800;
  text-align: left;
}

.faq-icon {
  display: inline-flex;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  color: var(--sage);
  background: var(--sage-soft);
  border-radius: 999px;
  font-size: 1.25rem;
  line-height: 1;
  transition:
    transform 250ms ease,
    background-color 250ms ease,
    color 250ms ease;
}

.faq-item.is-open .faq-icon {
  color: #fff;
  background: var(--sage);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 18px 18px;
  color: #3c334d;
  font-size: 0.91rem;
  line-height: 1.72;
}

/* Trust slider */
.trust-slider-section {
  overflow: hidden;
  padding: 34px 18px;
  background: linear-gradient(180deg, #ffffff 0%, #faf8ff 100%);
}

.trust-slider {
  position: relative;
  max-width: 620px;
  min-height: 172px;
  margin: 0 auto;
  text-align: center;
}

.trust-slide {
  position: absolute;
  inset: 0 0 auto;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity 350ms ease,
    transform 350ms ease;
  visibility: hidden;
}

.trust-slide.is-active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.trust-icon {
  display: flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: var(--sage);
}

.trust-icon svg {
  display: block;
  width: 35px;
  height: 35px;
  fill: none;
  stroke: currentColor;
}

.trust-icon svg * {
  stroke: currentColor !important;
}

.trust-slide h3 {
  margin: 0 0 8px;
  color: var(--sage-dark);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
}

.trust-slide p {
  max-width: 350px;
  margin: 0 auto;
  color: #3c334d;
  font-size: 0.91rem;
  line-height: 1.55;
}

.trust-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 18px;
}

.trust-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  background: transparent;
  border: 2px solid var(--sage);
  border-radius: 999px;
  cursor: pointer;
  transition:
    background-color 250ms ease,
    border-color 250ms ease,
    transform 250ms ease;
}

.trust-dot.is-active {
  background: var(--sage);
  transform: scale(1.05);
}

.trust-dot:active {
  transform: scale(0.92);
}

/* Footer */
.site-footer {
  padding: 28px 20px 0;
  color: #fff;
  background: linear-gradient(180deg, var(--sage) 0%, var(--sage-dark) 100%);
}

.site-footer__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.footer-accordion {
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.footer-accordion__button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  color: #fff;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-align: left;
  text-transform: uppercase;
}

.footer-accordion__icon {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  transition: transform 250ms ease;
}

.footer-accordion.is-open .footer-accordion__icon {
  transform: rotate(45deg);
}

.footer-accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 350ms ease;
}

.footer-accordion__content-inner {
  padding: 0 0 20px;
}

.footer-accordion__content p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  line-height: 1.7;
}

.footer-block {
  margin-top: 28px;
}

.footer-block h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
}

.footer-payments,
.footer-security {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.footer-payments img {
  width: 48px;
  height: 31px;
  padding: 4px;
  object-fit: contain;
  background: #fff;
  border-radius: 4px;
}

.footer-payments img.is-missing,
.footer-security img.is-missing,
.footer-shipping img.is-missing {
  display: none;
}

.footer-shipping {
  display: inline-flex;
  width: 100%;
  max-width: 360px;
  min-height: 34px;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: 7px 9px;
  overflow: hidden;
  color: var(--sage-dark);
  background: #fff;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 900;
}

.footer-shipping img {
  max-width: 100%;
  max-height: 28px;
  height: auto;
  object-fit: contain;
}

.footer-shipping img:not(.is-missing) + span {
  display: none;
}

.footer-shipping svg {
  display: block;
  flex: 0 1 auto;
  width: auto !important;
  max-width: 100%;
  height: 24px !important;
}

.footer-shipping svg:first-of-type {
  flex-basis: 34%;
  max-width: 96px;
}

.footer-shipping svg:last-of-type {
  flex: 1 1 auto;
  min-width: 0;
  max-width: calc(100% - 104px);
}

.footer-security img {
  width: auto;
  max-width: 110px;
  height: 32px;
  object-fit: contain;
}

.footer-security {
  flex-wrap: nowrap;
  gap: 10px;
  max-width: 100%;
  overflow: hidden;
}

.footer-security svg {
  display: block;
  flex: 0 1 auto;
  width: auto !important;
  height: 30px !important;
  max-width: 32%;
}

.footer-security svg:nth-of-type(1) {
  width: clamp(70px, 22vw, 88px) !important;
  height: 34px !important;
}

.footer-security svg:nth-of-type(2) {
  width: clamp(112px, 34vw, 136px) !important;
  height: 25px !important;
}

.footer-security svg:nth-of-type(3) {
  width: clamp(78px, 24vw, 94px) !important;
  height: 32px !important;
}

.footer-security::before,
.footer-security::after {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 9px;
  color: var(--sage-dark);
  background: rgba(255, 255, 255, 0.96);
  border-radius: 5px;
  font-size: 0.68rem;
  font-weight: 900;
}

.footer-security:has(img.is-missing)::before {
  content: "Norton Secured";
}

.footer-security:has(img.is-missing)::after {
  content: "Google Seguro";
}

.footer-warning {
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.88rem;
  line-height: 1.75;
}

.footer-warning strong {
  color: #fff;
  font-weight: 800;
}

.footer-bottom {
  margin-top: 30px;
  padding: 20px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.82rem;
  line-height: 1.6;
  text-align: center;
}

@media (min-width: 768px) {
  .faq-section {
    padding: 64px 24px;
  }

  .faq-question {
    padding: 20px 22px;
    font-size: 1rem;
  }

  .faq-answer p {
    padding: 0 22px 22px;
    font-size: 0.94rem;
  }

  .trust-slider-section {
    padding: 42px 20px;
  }

  .trust-slider {
    min-height: 182px;
  }

  .trust-slide h3 {
    font-size: 1.13rem;
  }

  .trust-slide p {
    font-size: 0.94rem;
  }

  .site-footer {
    padding: 34px 32px 0;
  }

  .footer-payments img {
    width: 52px;
    height: 33px;
  }
}

/* Mobile UX and scroll-flow polish */
[data-animate] {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 450ms ease,
    transform 450ms ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.color-ribbon-section {
  padding: 64px 0 56px;
}

.benefits-story__heading {
  margin-bottom: 20px;
}

.benefits-story__heading h2 {
  max-width: 16ch;
  font-size: clamp(1.82rem, 7.4vw, 3.2rem);
}

.benefits-story__heading p:not(.section-kicker) {
  margin-top: 10px;
}

.color-ribbon__track {
  animation-duration: 36s;
}

.section-divider {
  height: 24px;
}

.section-divider::before {
  top: 12px;
  width: min(70vw, 380px);
}

.section-divider::after {
  top: 8px;
}

/* ============================================
   ANTIGO BENEFÍCIOS — mobile overrides (backup)
   ============================================ */
/*
.benefits-story-section {
  min-height: auto;
  padding: 40px 0 38px;
}

.benefits-story__sticky {
  position: relative;
  min-height: auto;
  padding: 0 16px;
}

.benefits-story__panel {
  display: flex;
  gap: 12px;
  min-height: auto;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 4px 2px 34px;
  overflow-x: auto;
  overflow-y: hidden;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  backdrop-filter: none;
}

.benefits-story__panel::-webkit-scrollbar {
  display: none;
}

.benefit-stage {
  grid-area: auto;
  flex: 0 0 min(82vw, 360px);
  min-height: 310px;
  padding: 24px 18px;
  opacity: 1;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(var(--shadow-rgb), 0.12);
  border-radius: 26px;
  box-shadow: 0 16px 40px rgba(47, 41, 90, 0.08);
  scroll-snap-align: center;
  transform: none;
  pointer-events: auto;
}

.benefit-stage.is-active {
  transform: none;
}

.benefit-stage__icon {
  width: 92px;
  height: 92px;
  border-radius: 28px;
  animation: none;
}

.benefit-stage__icon svg {
  width: 60px;
  height: 60px;
}

.benefit-progress {
  right: 18px;
  bottom: 12px;
  left: 18px;
}
*/
/* ============================================
   FIM ANTIGO BENEFÍCIOS (mobile overrides)
   ============================================ */

/* ============================================
   ANTIGO INVERNO — mobile overrides
   ============================================ */
/*
.mothers-day-section {
  padding: 42px 16px;
}

.mothers-day-section__inner {
  gap: 20px;
}

.mothers-day-chips {
  gap: 8px;
  margin-top: 14px;
}

.mothers-day-chip {
  min-height: 32px;
  padding: 8px 11px;
  animation: none;
  box-shadow: 0 8px 18px rgba(47, 41, 90, 0.05);
}

.mothers-day-button {
  margin-top: 16px;
}

.mothers-day-visual {
  gap: 14px;
}

.mothers-day-cards {
  gap: 10px;
}

.mothers-day-card {
  padding: 14px;
  box-shadow: 0 10px 24px rgba(47, 41, 90, 0.06);
}
*/
/* ============================================
   FIM ANTIGO INVERNO (mobile overrides)
   ============================================ */

.product-section {
  padding: 36px 0 44px;
}

/* ANTIGO DESCRIÇÃO — mobile padding override */
/*
.product-description {
  padding-top: 30px;
}
*/

.payment-security {
  margin-top: 0;
  padding-top: 20px;
  padding-bottom: 24px;
}

.reviews-section {
  padding-top: 34px;
  padding-bottom: 38px;
}

@media (max-width: 767px) {
  [data-animate] {
    transition-duration: 380ms;
  }

  .hero-content [data-animate],
  .section-heading,
  .product-card,
  .product-layout {
    transition-delay: 0s !important;
    animation-delay: 0s !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  [data-animate] {
    opacity: 1 !important;
    transform: none !important;
  }

  .trust-slide,
  .trust-dot,
  .faq-answer,
  .faq-icon {
    transition: none !important;
  }
}

@media (min-width: 768px) {
  .color-ribbon-section {
    padding: 96px 0 80px;
  }

  /* ANTIGO BENEFÍCIOS — desktop overrides (3) */
  /*
  .benefits-story-section {
    padding: 70px 0 64px;
  }

  .benefits-story__sticky {
    padding: 0 32px;
  }

  .benefits-story__panel {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    max-width: 1120px;
    margin: 0 auto;
    overflow: visible;
    padding-bottom: 0;
  }

  .benefit-stage {
    flex-basis: auto;
    min-height: 320px;
  }

  .benefit-progress {
    display: none;
  }
  */
  /* FIM ANTIGO BENEFÍCIOS (3) */

  /* ANTIGO INVERNO — desktop overrides (2) */
  /*
  .mothers-day-section {
    padding: 70px 32px;
  }
  */
  /* FIM ANTIGO INVERNO (desktop 2) */
}

/* ===========================================
   FLOATING VIDEO BUBBLE
   =========================================== */

.video-bubble {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  z-index: 200;
  box-shadow: 0 8px 24px rgba(var(--shadow-dark-rgb), 0.32), 0 0 0 3px rgba(255, 255, 255, 0.9);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  background: var(--sage-dark);
}

.video-bubble:hover,
.video-bubble:focus-visible {
  transform: scale(1.06);
  box-shadow: 0 12px 32px rgba(var(--shadow-dark-rgb), 0.44), 0 0 0 3px rgba(255, 255, 255, 1);
  outline: none;
}

.video-bubble:active {
  transform: scale(0.96);
}

.video-bubble.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.5);
}

.video-bubble__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-bubble__indicator {
  position: absolute;
  bottom: 6px;
  right: 6px;
  width: 24px;
  height: 24px;
  background: var(--sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  border: 1.5px solid #ffffff;
  z-index: 2;
}

.video-bubble__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--sage);
  animation: bubblePulse 2.4s ease-out infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes bubblePulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

@media (min-width: 768px) {
  .video-bubble {
    width: 96px;
    height: 96px;
    bottom: 28px;
    right: 28px;
  }

  .video-bubble__indicator {
    width: 28px;
    height: 28px;
    bottom: 8px;
    right: 8px;
  }
}

/* ===========================================
   VIDEO MODAL FULLSCREEN
   =========================================== */

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.video-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.video-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 0.5px solid rgba(255, 255, 255, 0.28);
  color: #ffffff;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, transform 0.25s ease;
}

.video-modal__close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.video-modal__content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 1;
}

.video-modal__video {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  border-radius: 12px;
  background: #000;
  transform: scale(0.92);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.video-modal.is-open .video-modal__video {
  transform: scale(1);
}

@media (min-width: 768px) {
  .video-modal__close {
    top: 32px;
    right: 32px;
    width: 52px;
    height: 52px;
  }

  .video-modal__video {
    max-width: 80vw;
    max-height: 88vh;
  }
}

@media (orientation: portrait) {
  .video-modal__video {
    max-height: 78vh;
  }
}

/* ===========================================
   BACK TO TOP BUTTON
   =========================================== */

.scroll-top {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(94, 156, 143, 0.18);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 0.5px solid rgba(255, 255, 255, 0.42);
  color: var(--sage-dark);
  cursor: pointer;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.6) translateY(20px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.25s ease;
  box-shadow: 0 6px 18px rgba(var(--shadow-dark-rgb), 0.18);
}

.scroll-top[hidden] {
  display: flex;
}

.scroll-top.is-visible {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}

.scroll-top:hover {
  background: rgba(94, 156, 143, 0.28);
  transform: scale(1.06) translateY(0);
}

.scroll-top:active {
  transform: scale(0.94) translateY(0);
}

.scroll-top:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 3px;
}

@media (min-width: 768px) {
  .scroll-top {
    width: 52px;
    height: 52px;
    bottom: 28px;
    left: 28px;
  }
}

/* ============================================================
   PERSONALIZAÇÃO DE FRONHAS — Mini-bloco no checkout
   ============================================================ */

.personalization-mini {
  background: linear-gradient(135deg, var(--sage-soft) 0%, rgba(251,196,193,0.12) 100%);
  border: 1px solid rgba(94,156,143,0.20);
  border-radius: 16px;
  padding: 20px;
  margin: 20px 0;
  position: relative;
  overflow: hidden;
}

.personalization-mini::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(94,156,143,0.10) 0%, transparent 70%);
  pointer-events: none;
}

.personalization-mini__header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.personalization-mini__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--sage-dark);
  background: rgba(255,255,255,0.7);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(94,156,143,0.25);
  text-transform: uppercase;
}

.personalization-mini__title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 4px 0;
  line-height: 1.3;
}

.personalization-mini__title em {
  font-style: italic;
  color: var(--sage);
}

.personalization-mini__subtitle {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 16px 0;
  line-height: 1.4;
}

.personalization-mini__preview {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.pillow-preview {
  position: relative;
  width: 110px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.pillow-preview--large {
  width: 180px;
  height: 130px;
}

.pillow-preview__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: opacity 0.3s ease;
}

.pillow-preview__letter {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Allura', cursive;
  font-size: 24px;
  color: #fff;
  z-index: 2;
  font-weight: 400;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.20);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  transition: color 0.3s ease;
}

.pillow-preview--large .pillow-preview__letter {
  font-size: 36px;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.20);
}

/* Cor da letra adaptada por cor da fronha */
.pillow-preview[data-color="branco"] .pillow-preview__letter {
  color: #2d3f3a;
  text-shadow: 0 1px 2px rgba(255,255,255,0.30);
}

.personalization-mini__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.personalization-mini__btn-primary {
  background: var(--sage);
  color: #fff;
  border: none;
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s ease;
  width: 100%;
  box-shadow: 0 4px 12px rgba(var(--shadow-rgb), 0.25);
  font-family: inherit;
}

.personalization-mini__btn-primary:hover {
  background: var(--sage-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(var(--shadow-rgb), 0.35);
}

.personalization-mini__btn-skip {
  background: transparent;
  color: var(--muted);
  border: none;
  font-size: 13px;
  text-decoration: underline;
  cursor: pointer;
  padding: 4px;
  font-family: inherit;
}

.personalization-mini__btn-skip:hover {
  color: var(--text);
}

.personalization-mini__confirmed {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: rgba(255,255,255,0.7);
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid rgba(33,184,59,0.3);
}

.personalization-mini__confirmed[hidden] {
  display: none;
}

.personalization-mini__check {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  font-size: 13px;
  color: var(--text);
}

.personalization-mini__check-icon {
  width: 24px;
  height: 24px;
  background: var(--success);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.personalization-mini__check-text strong {
  color: var(--sage-dark);
}

.personalization-mini__btn-edit {
  background: transparent;
  color: var(--sage);
  border: 1px solid var(--sage);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.personalization-mini__btn-edit:hover {
  background: var(--sage);
  color: white;
}

/* ============================================================
   MODAL DE PERSONALIZAÇÃO
   ============================================================ */

.personalization-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.personalization-modal[hidden] {
  display: none;
}

.personalization-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(45,63,58,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: personalizationFadeIn 0.3s ease;
}

.personalization-modal__panel {
  position: relative;
  background: #fff;
  border-radius: 24px;
  max-width: 600px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.30);
  animation: personalizationScaleIn 0.3s ease;
}

@keyframes personalizationFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes personalizationScaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.personalization-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: rgba(0,0,0,0.05);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: all 0.2s ease;
  z-index: 10;
  padding: 0;
}

.personalization-modal__close:hover {
  background: rgba(0,0,0,0.10);
  color: var(--text);
  transform: rotate(90deg);
}

.personalization-modal__body {
  padding: 32px 28px;
}

.personalization-modal__header {
  text-align: center;
  margin-bottom: 28px;
}

.personalization-modal__kicker {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--sage);
  text-transform: uppercase;
  margin-bottom: 12px;
  padding: 5px 12px;
  background: var(--sage-soft);
  border-radius: 999px;
}

.personalization-modal__title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 8px 0;
  line-height: 1.2;
}

.personalization-modal__title em {
  font-style: italic;
  color: var(--sage);
}

.personalization-modal__subtitle {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.personalization-modal__preview {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--sage-soft) 0%, #fff 100%);
  border-radius: 18px;
  padding: 28px 20px;
  border: 1px solid rgba(94,156,143,0.10);
}

.personalization-modal__hint {
  text-align: center;
  font-size: 12px;
  color: var(--sage);
  font-style: italic;
  margin-bottom: 24px;
}

.personalization-modal__section {
  margin-bottom: 24px;
}

.personalization-modal__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 12px;
  text-align: center;
}

.personalization-modal__color-info {
  background: rgba(94,156,143,0.05);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
}

.personalization-modal__color-swatch {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #b8bbbe;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.10);
  flex-shrink: 0;
  transition: background 0.3s ease;
}

.personalization-modal__color-text {
  flex: 1;
  color: var(--text);
}

.personalization-modal__color-text strong {
  color: var(--sage-dark);
}

.personalization-modal__modes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.mode-btn {
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 14px 10px;
  cursor: pointer;
  text-align: center;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-family: inherit;
}

.mode-btn:hover {
  border-color: var(--sage);
}

.mode-btn.is-active {
  border-color: var(--sage);
  background: var(--sage-soft);
}

.mode-btn__icon {
  font-size: 22px;
  line-height: 1;
}

.mode-btn__title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.mode-btn__desc {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.3;
}

.personalization-modal__inputs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
  background: var(--sage-soft);
  border-radius: 12px;
  padding: 16px 12px;
}

.personalization-modal__inputs[hidden] {
  display: none;
}

.letter-input-field {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.letter-input-field__label {
  font-size: 10px;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.letter-input {
  width: 64px;
  height: 64px;
  border: 2px solid rgba(94,156,143,0.30);
  border-radius: 12px;
  font-family: 'Allura', cursive;
  font-size: 38px;
  text-align: center;
  background: #fff;
  color: var(--sage-dark);
  outline: none;
  transition: all 0.25s ease;
  font-weight: 400;
}

.letter-input:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 4px rgba(var(--shadow-rgb), 0.15);
  background: var(--sage-soft);
  animation: none;
}

@keyframes personalizationInputPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(var(--shadow-rgb), 0.15); }
  50% { box-shadow: 0 0 0 8px rgba(var(--shadow-rgb), 0.05); }
}

.letter-input.is-empty:not(:focus) {
  animation: personalizationInputPulse 2s ease-in-out infinite;
}

.input-hint {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
  font-style: italic;
}

.personalization-modal__footer {
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
  margin-top: 24px;
}

.personalization-modal__confirm {
  width: 100%;
  background: var(--sage);
  color: white;
  border: none;
  padding: 16px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(var(--shadow-rgb), 0.25);
  font-family: inherit;
}

.personalization-modal__confirm:hover {
  background: var(--sage-dark);
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .personalization-modal__body {
    padding: 20px 16px;
  }

  .pillow-preview--large {
    width: 130px;
    height: 95px;
  }

  .pillow-preview--large .pillow-preview__letter {
    font-size: 30px;
  }

  .personalization-modal__preview {
    padding: 20px 14px;
  }

  .personalization-modal__modes {
    gap: 6px;
  }

  .mode-btn {
    padding: 10px 4px;
    gap: 4px;
  }

  .mode-btn__icon { font-size: 18px; }
  .mode-btn__title { font-size: 11px; }
  .mode-btn__desc { font-size: 9px; line-height: 1.2; }

  .letter-input {
    width: 56px;
    height: 56px;
    font-size: 32px;
  }

  .input-hint {
    font-size: 11px;
  }
}

/* ============================================================
   Input section em destaque (movido pra cima do modal)
   ============================================================ */
.personalization-modal__section--input {
  margin-bottom: 20px;
}

.input-block {
  background: linear-gradient(135deg, var(--sage-soft) 0%, var(--blush-soft) 100%);
  border: 2px dashed rgba(94,156,143,0.30);
  border-radius: 14px;
  padding: 16px 12px;
}

/* Dentro do .input-block o bloco de inputs perde fundo próprio (já vem do bloco) */
.input-block .personalization-modal__inputs {
  background: transparent;
  padding: 0;
  border-radius: 0;
  margin-top: 0;
  margin-bottom: 8px;
}

.input-block .input-hint {
  margin-top: 8px;
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
}

.input-block .input-hint::before {
  content: '👆 ';
}

/* ============================================================
   Fix: glyph do "&" em .description-title
   Playfair Display tem ampersand decorativo no glyph padrão.
   1) Desativa features tipográficas (defensivo).
   2) Troca a fonte do "&" para DM Sans (glyph simples).
   ============================================================ */
.description-title {
  font-variant-ligatures: none;
  font-feature-settings: "liga" 0, "dlig" 0, "swsh" 0, "ss01" 0, "ss02" 0, "calt" 0;
}

.ampersand-normal {
  font-family: 'DM Sans', 'Inter', sans-serif;
  font-style: normal !important;
  font-weight: 500;
  font-feature-settings: normal;
}
