/* ============================================================
   TUPPERWARE — KIT ESSENCES 6 PEÇAS
   style.css
   ============================================================ */

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

:root {
  --teal:        #00524F;
  --teal-dark:   #003d3b;
  --teal-mid:    #006f6b;
  --teal-light:  #e6f4f3;
  --teal-xlight: #f0faf9;
  --orange:      #EFB34C;
  --orange-deep: #c87000;
  --red-badge:   #e63946;
  --green:       #2e7d32;
  --white:       #ffffff;
  --off-white:   #fafafa;
  --gray-100:    #f5f5f5;
  --gray-200:    #ececec;
  --gray-300:    #ddd;
  --gray-400:    #bbb;
  --gray-500:    #888;
  --gray-600:    #666;
  --gray-700:    #444;
  --text:        #1a1a1a;

  --font-head:   'Playfair Display', Georgia, serif;
  --font-body:   'Cabin', sans-serif;
  --font-ui:     'Lato', sans-serif;

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   32px;

  --shadow-sm:   0 2px 8px rgba(0,0,0,.08);
  --shadow-md:   0 6px 24px rgba(0,0,0,.10);
  --shadow-lg:   0 16px 48px rgba(0,0,0,.14);

  --transition:  .25s ease;
  --max-w:       1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }

/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .13s; }
.reveal-delay-2 { transition-delay: .26s; }
.reveal-delay-3 { transition-delay: .39s; }

@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(0,82,79,.5); }
  70%  { box-shadow: 0 0 0 16px rgba(0,82,79,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,82,79,0); }
}
.pulse { animation: pulse-ring 2.4s infinite; }

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: .2; }
}
@keyframes stock-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .65; }
}
@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}

/* ══════════════════════════════════════
   ANNOUNCE BAR
══════════════════════════════════════ */
.announce-bar {
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 13px;
  padding: 10px 20px;
}
.announce-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  text-align: center;
}
.announce-sep { opacity: .35; }
.announce-timer-wrap strong {
  font-weight: 900;
  letter-spacing: .07em;
  color: var(--orange);
}

/* ══════════════════════════════════════
   HEADER
══════════════════════════════════════ */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.header-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}
.header-nav {
  display: flex;
  gap: 28px;
}
.header-nav a {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gray-700);
  transition: color var(--transition);
  white-space: nowrap;
}
.header-nav a:hover { color: var(--teal); }
.header-right { display: flex; align-items: center; }
.live-badge {
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--gray-600);
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.live-dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  margin-right: 5px;
  animation: blink 1.5s infinite;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ══════════════════════════════════════
   PRODUCT SECTION
══════════════════════════════════════ */
.product-section { padding: 32px 24px 56px; }
.product-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Gallery */
.product-gallery { position: static; }

.main-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gray-100);
  position: relative;
  cursor: zoom-in;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-image-wrap img {
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: contain;
  display: block;
  transition: transform .55s ease, opacity .2s ease;
}
.main-image-wrap:hover img { transform: scale(1.04); }

.img-badges {
  position: absolute;
  top: 16px; left: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 1;
}
.badge-sale {
  background: var(--red-badge);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 900;
  padding: 4px 11px;
  border-radius: 20px;
  letter-spacing: .05em;
  display: inline-block;
}
.badge-hot {
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(6px);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-block;
}
.zoom-hint {
  position: absolute;
  bottom: 12px; right: 12px;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(4px);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 10px;
  padding: 3px 9px;
  border-radius: 20px;
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}
.main-image-wrap:hover .zoom-hint { opacity: 1; }

.thumbnails {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.thumb {
  width: 66px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  background: var(--gray-100);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  flex-shrink: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.thumb:hover { transform: translateY(-2px); border-color: var(--teal-mid); }
.thumb.active {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,82,79,.18);
}
.thumb img { width: 66px; height: 58px; object-fit: cover; }
.thumb-label {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--gray-600);
  padding: 3px 0 2px;
  display: block;
  background: var(--white);
  width: 100%;
  text-align: center;
}
.thumb.active .thumb-label { color: var(--teal); }

/* Product Info */
.product-info {}

.info-tag {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.product-title {
  font-family: var(--font-head);
  font-size: 34px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 6px;
}
.product-title em { font-style: italic; color: var(--teal); }
.product-subtitle {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--gray-500);
  letter-spacing: .06em;
  margin-bottom: 16px;
  font-weight: 600;
}

/* Rating */
.rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.stars { color: var(--orange); font-size: 17px; letter-spacing: 1px; }
.rating-score { font-family: var(--font-ui); font-weight: 700; font-size: 14px; }
.rating-link {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--teal);
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color var(--transition);
}
.rating-link:hover { text-decoration-color: var(--teal); }
.sold-badge {
  background: #fff3cd;
  color: #856404;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
}

/* Stock bar */
.stock-bar-wrap {
  background: #fff5f5;
  border: 1px solid #fcd4d4;
  border-radius: var(--radius-md);
  padding: 12px 16px;
  margin-bottom: 20px;
}
.stock-label {
  font-family: var(--font-ui);
  font-size: 13px;
  color: #c0392b;
  margin-bottom: 8px;
  animation: stock-pulse 2.2s infinite;
}
.stock-bar-track {
  height: 8px;
  background: var(--gray-200);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 6px;
}
.stock-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #f39c12, #e74c3c);
  border-radius: 4px;
  position: relative;
}
.stock-bar-fill::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent);
  animation: shimmer 1.8s infinite;
}
.stock-sub { font-family: var(--font-ui); font-size: 11px; color: var(--gray-500); }

/* Price */
.price-block { margin-bottom: 22px; }
.price-row { display: flex; align-items: center; gap: 14px; margin-bottom: 8px; flex-wrap: wrap; }
.price-current {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
}
.price-right { display: flex; flex-direction: column; gap: 4px; }
.price-original {
  font-family: var(--font-ui);
  font-size: 16px;
  color: var(--gray-400);
  text-decoration: line-through;
}
.price-save {
  background: #fef3c7;
  color: var(--orange-deep);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 20px;
  display: inline-block;
}
.price-pix {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--teal-xlight);
  border: 1px solid var(--teal-light);
  border-radius: var(--radius-sm);
  padding: 8px 13px;
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--teal);
  margin-bottom: 7px;
}
.price-pix strong { font-weight: 900; font-size: 16px; }
.price-installments { font-family: var(--font-ui); font-size: 13px; color: var(--gray-500); }
.price-installments strong { color: var(--teal); }

/* CTA */
.btn-buy {
  width: 100%;
  background: var(--teal);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  padding: 18px 28px;
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .08em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}
.btn-buy::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.1) 0%, transparent 55%);
  pointer-events: none;
}
.btn-buy:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,82,79,.38);
}
.btn-buy:active { transform: translateY(0); box-shadow: none; }

.cta-sub {
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--gray-500);
  text-align: center;
  margin-bottom: 18px;
  line-height: 1.9;
}

/* Shipping */
.shipping-progress {
  background: var(--teal-xlight);
  border: 1px solid var(--teal-light);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin-bottom: 18px;
}
.shipping-top {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--gray-600);
  margin-bottom: 7px;
  align-items: center;
}
.shipping-free-label strong { color: var(--teal); }
.shipping-track {
  height: 7px;
  background: rgba(0,82,79,.12);
  border-radius: 4px;
  overflow: hidden;
}
.shipping-fill {
  height: 100%;
  background: var(--teal);
  border-radius: 4px;
  position: relative;
}
.shipping-fill::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
  animation: shimmer 2s infinite;
}

/* Trust grid */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 24px;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 12px 8px;
  text-align: center;
  transition: border-color var(--transition), background var(--transition);
}
.trust-item:hover { border-color: var(--teal-mid); background: var(--teal-xlight); }
.trust-item svg { color: var(--teal); }
.trust-item span { font-family: var(--font-ui); font-size: 11px; font-weight: 700; color: var(--gray-700); line-height: 1.3; }
.trust-item small { font-weight: 400; color: var(--gray-500); display: block; }

/* Accordion */
.accordion { border-top: 1px solid var(--gray-200); }
.acc-item { border-bottom: 1px solid var(--gray-200); }
.acc-head {
  width: 100%;
  background: none;
  border: none;
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  text-align: left;
  gap: 10px;
  transition: color var(--transition);
}
.acc-head:hover { color: var(--teal); }
.acc-icon { font-size: 22px; color: var(--teal); transition: transform .3s ease; line-height: 1; flex-shrink: 0; }
.acc-icon.open { transform: rotate(45deg); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s ease; }
.acc-body.open { max-height: 700px; padding-bottom: 16px; }
.acc-body p { font-size: 13.5px; color: var(--gray-600); line-height: 1.7; margin-bottom: 8px; }
.acc-body ul { padding-left: 16px; }
.acc-body li { font-size: 13.5px; color: var(--gray-600); margin-bottom: 5px; line-height: 1.6; }

.kit-list-mini { list-style: none; padding: 0; }
.kit-list-mini li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--gray-700);
  font-weight: 600;
  border-bottom: 1px dashed var(--gray-200);
}
.kit-list-mini li:last-child { border-bottom: none; }
.kl-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }

.specs-table { width: 100%; border-collapse: collapse; font-family: var(--font-ui); font-size: 13px; }
.specs-table tr:nth-child(odd) { background: var(--gray-100); }
.specs-table td { padding: 8px 12px; border: 1px solid var(--gray-200); }
.specs-table td:first-child { font-weight: 700; color: var(--gray-700); width: 40%; }

/* ══════════════════════════════════════
   KIT ITEMS SECTION
══════════════════════════════════════ */
.kit-section { padding: 80px 24px; background: var(--white); }

.section-desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--gray-600);
  max-width: 560px;
  margin: 12px auto 0;
  line-height: 1.7;
  text-align: center;
}

.kit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.kit-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: pointer;
}
.kit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal-mid);
}
.kit-card-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.kit-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.kit-card:hover .kit-card-img img { transform: scale(1.06); }
.kit-card-info { padding: 18px 20px 20px; }
.kit-card-tag {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}
.kit-card-info h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.kit-card-info p {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.55;
  margin-bottom: 10px;
}
.kit-card-cap {
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--gray-500);
}
.kit-card-cap strong { color: var(--teal); }

/* Kit CTA */
.kit-cta {
  background: linear-gradient(135deg, var(--teal-light), var(--teal-xlight));
  border: 2px solid var(--teal-light);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  text-align: center;
}
.kit-cta > p {
  font-family: var(--font-ui);
  font-size: 15px;
  color: var(--gray-600);
  margin-bottom: 10px;
}
.kit-cta-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.kcp-from {
  font-family: var(--font-ui);
  font-size: 17px;
  color: var(--gray-400);
  text-decoration: line-through;
}
.kcp-current {
  font-family: var(--font-head);
  font-size: 44px;
  font-weight: 700;
  color: var(--teal);
}
.btn-kit-cta {
  max-width: 380px;
  margin: 0 auto 12px;
  font-size: 15px;
}
.kit-cta-frete {
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--gray-500);
}

/* ══════════════════════════════════════
   STATS BAR
══════════════════════════════════════ */
.stats-bar { background: var(--teal); padding: 40px 24px; }
.stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
  padding: 0 52px;
  color: var(--white);
}
.stat-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: 46px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-item span {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .72;
}
.stat-sep { width: 1px; height: 52px; background: rgba(255,255,255,.18); flex-shrink: 0; }

/* ══════════════════════════════════════
   SECTION COMMON
══════════════════════════════════════ */
.section-wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section-header { text-align: center; margin-bottom: 52px; }
.section-eyebrow {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
}

/* ══════════════════════════════════════
   BENEFITS
══════════════════════════════════════ */
.benefits-section { padding: 80px 24px; background: var(--off-white); }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.benefit-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal-mid);
}
.benefit-icon-wrap {
  width: 72px; height: 72px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: background var(--transition), transform var(--transition);
}
.benefit-card:hover .benefit-icon-wrap {
  background: var(--teal);
  transform: scale(1.08);
}
.benefit-icon { font-size: 32px; }
.benefit-card h3 { font-family: var(--font-head); font-size: 19px; font-weight: 600; color: var(--text); margin-bottom: 10px; }
.benefit-card p { font-size: 14px; color: var(--gray-600); line-height: 1.65; }

/* ══════════════════════════════════════
   GUARANTEE
══════════════════════════════════════ */
.guarantee-section { padding: 80px 24px; background: var(--teal); }
.guarantee-inner { display: flex; align-items: center; gap: 64px; }
.guarantee-seal { flex-shrink: 0; }
.seal-circle {
  width: 150px; height: 150px;
  border: 4px solid rgba(255,255,255,.35);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  background: rgba(255,255,255,.1);
  position: relative;
}
.seal-circle::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 2px dashed rgba(255,255,255,.28);
  border-radius: 50%;
}
.seal-years { font-family: var(--font-head); font-size: 52px; font-weight: 700; line-height: 1; }
.seal-label { font-family: var(--font-ui); font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; opacity: .8; line-height: 1.3; }
.guarantee-text { color: var(--white); }
.guarantee-text h2 { font-family: var(--font-head); font-size: 34px; font-weight: 600; margin-bottom: 16px; line-height: 1.2; }
.guarantee-text h2 span { color: var(--orange); }
.guarantee-text p { font-size: 15px; opacity: .85; line-height: 1.7; margin-bottom: 12px; }
.guarantee-chips { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.guarantee-chips span {
  background: rgba(255,255,255,.14);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 15px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.18);
}

/* ══════════════════════════════════════
   REVIEWS
══════════════════════════════════════ */
.reviews-section { padding: 80px 24px; background: var(--off-white); }
.reviews-summary {
  display: flex;
  align-items: center;
  gap: 40px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-sm);
}
.rs-score { text-align: center; min-width: 90px; }
.rs-big { font-family: var(--font-head); font-size: 62px; font-weight: 700; color: var(--teal); line-height: 1; }
.rs-stars { color: var(--orange); font-size: 22px; margin: 6px 0; }
.rs-count { font-family: var(--font-ui); font-size: 13px; color: var(--gray-500); }
.rs-bars { flex: 1; min-width: 200px; }
.bar-row { display: flex; align-items: center; gap: 10px; margin-bottom: 7px; }
.bl { font-family: var(--font-ui); font-size: 12px; width: 38px; color: var(--gray-500); }
.bt { flex: 1; height: 9px; background: var(--gray-200); border-radius: 5px; overflow: hidden; }
.bf { height: 100%; background: var(--orange); border-radius: 5px; }
.bc { font-family: var(--font-ui); font-size: 12px; color: var(--gray-500); width: 20px; text-align: right; }
.rs-cta { text-align: center; }
.rs-cta p { font-family: var(--font-ui); font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 12px; line-height: 1.4; }
.rs-recommend {
  background: var(--teal-light);
  color: var(--teal);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 20px;
  display: inline-block;
}

/* ── Carousel ── */
.reviews-carousel-wrap {
  position: relative;
}
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--teal);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: background var(--transition), color var(--transition);
}
.carousel-arrow:hover { background: var(--teal); color: var(--white); }
.carousel-arrow:disabled { opacity: .3; pointer-events: none; }
.carousel-prev { left: -22px; }
.carousel-next { right: -22px; }
.reviews-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  padding-bottom: 4px;
}
.reviews-carousel::-webkit-scrollbar { display: none; }
.reviews-carousel.grabbing { cursor: grabbing; user-select: none; }
.reviews-carousel .review-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
}
.carousel-footer {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.carousel-progress-wrap {
  width: 200px;
  height: 4px;
  background: var(--gray-200);
  border-radius: 2px;
  overflow: hidden;
}
.carousel-progress-fill {
  height: 100%;
  background: var(--teal);
  border-radius: 2px;
  width: 20%;
  transition: width .2s ease;
}
.carousel-hint {
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--gray-400);
}
.review-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.rv-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.rv-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 900;
  color: var(--white);
  flex-shrink: 0;
}
.rv-name { font-family: var(--font-ui); font-weight: 700; font-size: 14px; }
.rv-date { font-family: var(--font-ui); font-size: 11px; color: var(--gray-500); }
.rv-verified { margin-left: auto; font-family: var(--font-ui); font-size: 10px; font-weight: 700; color: var(--teal); background: var(--teal-light); padding: 2px 8px; border-radius: 20px; white-space: nowrap; }
.rv-stars { color: var(--orange); font-size: 14px; margin-bottom: 8px; letter-spacing: 1px; }
.rv-stars .sh {
  display: inline-block;
  position: relative;
  color: var(--gray-300);
}
.rv-stars .sh::before {
  content: '★';
  position: absolute;
  left: 0;
  width: 55%;
  overflow: hidden;
  color: var(--orange);
}
.rv-stars .se { color: var(--gray-300); }
.rv-title { font-family: var(--font-ui); font-weight: 700; font-size: 13px; color: var(--text); margin-bottom: 6px; }
.rv-text { font-size: 13px; color: var(--gray-600); line-height: 1.6; }

/* ══════════════════════════════════════
   FAQ
══════════════════════════════════════ */
.faq-section { padding: 80px 24px; background: var(--white); }
.faq-inner { max-width: 820px; }
.faq-list { border-top: 1px solid var(--gray-200); }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-head {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  gap: 16px;
  transition: color var(--transition);
}
.faq-head:hover { color: var(--teal); }
.faq-icon { font-size: 24px; color: var(--teal); transition: transform .3s ease; flex-shrink: 0; line-height: 1; }
.faq-icon.open { transform: rotate(45deg); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s ease; }
.faq-body.open { max-height: 400px; padding-bottom: 18px; }
.faq-body p { font-size: 14px; color: var(--gray-600); line-height: 1.7; }

/* ══════════════════════════════════════
   FINAL CTA
══════════════════════════════════════ */
.final-cta {
  background: linear-gradient(145deg, var(--teal-dark) 0%, var(--teal-mid) 100%);
  padding: 80px 24px;
  text-align: center;
}
.final-cta-inner { max-width: 620px; margin: 0 auto; }
.final-eyebrow {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.final-cta h2 {
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.final-cta h2 em { font-style: italic; color: var(--orange); }
.final-kit-items {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.final-kit-items span {
  background: rgba(255,255,255,.12);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 13px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.18);
}
.final-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.fp-original { font-family: var(--font-ui); font-size: 18px; color: rgba(255,255,255,.45); text-decoration: line-through; }
.fp-current { font-family: var(--font-head); font-size: 38px; font-weight: 700; color: var(--white); }
.final-stock {
  font-family: var(--font-ui);
  font-size: 14px;
  color: rgba(255,255,255,.8);
  margin-bottom: 28px;
  animation: stock-pulse 2.2s infinite;
}
.btn-final {
  background: var(--orange);
  color: #1a1a1a;
  font-size: 17px;
  max-width: 480px;
  margin: 0 auto 14px;
  border-radius: var(--radius-lg);
  padding: 20px 40px;
}
.btn-final:hover { background: #d89a35; box-shadow: 0 10px 30px rgba(239,179,76,.45); color: #000; }
.final-trust {
  font-family: var(--font-ui);
  font-size: 12px;
  color: rgba(255,255,255,.55);
  line-height: 2;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.site-footer {
  background: #111;
  color: rgba(255,255,255,.55);
  font-family: var(--font-ui);
  font-size: 13px;
}

/* Main grid */
.footer-main { border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 60px 24px 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

/* Brand col */
.footer-col--brand {}
.footer-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  margin-bottom: 18px;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
.footer-desc {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
  margin-bottom: 22px;
}
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.social-btn:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

/* Nav cols */
.footer-col-title {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  margin-bottom: 18px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: rgba(255,255,255,.5);
  text-decoration: none;
  font-size: 13px;
  transition: color var(--transition);
  line-height: 1;
}
.footer-links a:hover { color: var(--teal-light); }

/* Contact col */
.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: rgba(255,255,255,.5);
  font-size: 13px;
  line-height: 1.4;
}
.footer-contact li svg { color: var(--teal-light); flex-shrink: 0; margin-top: 1px; }
.footer-contact a { color: var(--teal-light); text-decoration: none; }
.footer-contact a:hover { text-decoration: underline; }
.footer-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,82,79,.35);
  border: 1px solid rgba(0,175,167,.25);
  border-radius: 20px;
  padding: 6px 13px;
  font-size: 11px;
  font-weight: 700;
  color: #7ae8e4;
}
.footer-trust-badge svg { color: #7ae8e4; }

/* Bottom bar */
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 22px 24px 28px;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-pay {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.pay-label {
  font-size: 11px;
  color: rgba(255,255,255,.35);
  margin-right: 4px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.pay-icon {
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,.65);
  letter-spacing: .05em;
}
.pay-icon.pix { color: #32BCAD; }
.footer-security-row {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: rgba(255,255,255,.3);
}
.footer-security-row svg { color: rgba(255,255,255,.3); }
.footer-legal {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer-legal p {
  font-size: 11px;
  color: rgba(255,255,255,.22);
  line-height: 1.7;
}
.footer-legal a { color: rgba(255,255,255,.35); text-decoration: none; }
.footer-legal a:hover { color: rgba(255,255,255,.6); text-decoration: underline; }

/* ══════════════════════════════════════
   STICKY CTA
══════════════════════════════════════ */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 300;
  background: var(--white);
  border-top: 2px solid var(--teal-light);
  box-shadow: 0 -4px 24px rgba(0,0,0,.13);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transform: translateY(100%);
  transition: transform .38s cubic-bezier(.4,0,.2,1);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-info { flex: 1; }
.sticky-price { display: block; font-family: var(--font-head); font-size: 22px; font-weight: 700; color: var(--teal); line-height: 1; }
.sticky-stock { display: block; font-family: var(--font-ui); font-size: 11px; color: #c0392b; margin-top: 2px; }
.btn-sticky { width: auto; padding: 14px 28px; font-size: 14px; margin: 0; border-radius: var(--radius-md); white-space: nowrap; }

/* ══════════════════════════════════════
   TOAST NOTIFICATIONS
══════════════════════════════════════ */
.toast-container {
  position: fixed;
  bottom: 80px; left: 20px;
  z-index: 400;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}
.toast {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: 13px;
  min-width: 250px;
  max-width: 310px;
  transform: translateX(-115%);
  transition: transform .42s cubic-bezier(.4,0,.2,1), opacity .42s;
  opacity: 0;
  pointer-events: none;
}
.toast.show { transform: translateX(0); opacity: 1; }
.toast-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  color: var(--white);
  flex-shrink: 0;
}
.toast-text strong { display: block; font-weight: 700; color: var(--text); margin-bottom: 1px; }
.toast-text span { font-size: 11px; color: var(--gray-500); }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .product-inner { gap: 40px; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-carousel .review-card { flex: 0 0 290px; }
  .kit-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 0 32px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-col--brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .product-inner { grid-template-columns: 1fr; gap: 28px; }
  .product-gallery { position: static; }
  .product-title { font-size: 28px; }
  .price-current { font-size: 34px; }
  .section-title { font-size: 28px; }

  .header-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 66px; left: 0; right: 0;
    background: var(--white);
    padding: 16px 24px 20px;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
    gap: 16px;
    z-index: 199;
  }
  .header-nav.open { display: flex; }
  .hamburger { display: flex; }
  .live-badge { display: none; }

  .announce-inner { gap: 6px; font-size: 12px; }
  .announce-sep { display: none; }
  .announce-item:not(.announce-timer-wrap) { display: none; }

  .benefits-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .reviews-carousel .review-card { flex: 0 0 270px; }
  .carousel-prev { left: -10px; }
  .carousel-next { right: -10px; }
  .kit-grid { grid-template-columns: 1fr 1fr; gap: 14px; }

  .guarantee-inner { flex-direction: column; text-align: center; gap: 32px; }
  .guarantee-chips { justify-content: center; }

  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-summary { flex-direction: column; text-align: center; }
  .stats-inner { flex-direction: column; gap: 28px; }
  .stat-sep { width: 60px; height: 1px; }
  .stat-item { padding: 0; }

  .final-cta h2 { font-size: 30px; }
  .fp-current { font-size: 30px; }
  .kcp-current { font-size: 34px; }

  .toast-container { left: 12px; right: 12px; bottom: 90px; }
  .toast { max-width: 100%; min-width: 0; }

  .sticky-cta { padding: 10px 16px; gap: 12px; }
  .btn-sticky { padding: 12px 18px; font-size: 13px; }

  .footer-inner { grid-template-columns: 1fr; gap: 28px; padding: 40px 20px 32px; }
  .footer-col--brand { grid-column: auto; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
}

@media (max-width: 540px) {
  .product-section { padding: 20px 16px 36px; }
  .kit-section { padding: 56px 16px; }
  .benefits-section, .guarantee-section, .reviews-section, .faq-section { padding: 56px 16px; }
  .kit-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .thumbnails { gap: 6px; }
  .thumb { width: 58px; }
  .thumb img { width: 58px; height: 50px; }
  .final-cta h2 { font-size: 26px; }
  .final-cta { padding: 56px 16px; }
  .kit-cta { padding: 28px 20px; }
  .section-title { font-size: 24px; }
  .product-title { font-size: 24px; }
}
