/* ═══════════════════════════════════════════
   CARBON SMARTWATCH — One Max
   style.css
   ═══════════════════════════════════════════ */

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

:root {
  --black:   #0A0A0A;
  --dark:    #111111;
  --dark2:   #1A1A1A;
  --dark3:   #232323;
  --amber:   #F5A623;
  --amber2:  #E8940A;
  --orange:  #E8520A;
  --white:   #FFFFFF;
  --text:    #FFFFFF;
  --text-sub:#B0B0B0;
  --text-muted:#7A7A7A;
  --border:  rgba(255,255,255,0.08);
  --green:   #22C55E;
  --radius:  12px;
  --shadow:  0 4px 24px rgba(0,0,0,0.4);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Roboto', sans-serif;
  background: var(--black);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--amber); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── TOP BANNER ── */
.top-banner {
  background: linear-gradient(90deg, var(--amber2) 0%, var(--orange) 100%);
  overflow: hidden;
  height: 34px;
  display: flex;
  align-items: center;
}
.top-banner__scroll {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: bannerScroll 22s linear infinite;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .04em;
  text-transform: uppercase;
}
@keyframes bannerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SITE HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  height: 56px;
  display: flex;
  align-items: center;
}
.site-header__inner {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding: 0 16px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-header__logo img { height: 36px; width: auto; }

.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  padding: 6px;
  border-radius: 8px;
  transition: background .15s;
}
.menu-toggle:hover { background: var(--dark3); }

/* ── SIDE MENU ── */
.side-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.65);
  z-index: 300;
}
.side-menu-overlay.open { display: block; }

.side-menu {
  position: fixed;
  top: 0; left: -300px;
  width: 280px;
  height: 100%;
  background: var(--dark2);
  z-index: 400;
  transition: left .28s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--border);
}
.side-menu.open { left: 0; }
.side-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
}
.side-menu__close {
  background: none;
  border: none;
  color: var(--text);
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
}
.side-menu__body { padding: 20px; flex: 1; overflow-y: auto; }
.side-menu__section { margin-bottom: 24px; }
.side-menu__section-title { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 10px; }
.side-menu__nav { display: flex; flex-direction: column; gap: 4px; }
.side-menu__link {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--text-sub);
  font-size: 14px;
  font-weight: 500;
  transition: background .15s, color .15s;
}
.side-menu__link:hover { background: var(--dark3); color: var(--white); text-decoration: none; }
.side-menu__divider { height: 1px; background: var(--border); margin: 0 0 20px; }
.side-menu__support { font-size: 13px; color: var(--text-sub); line-height: 1.7; }
.side-menu__support a { color: var(--amber); }

/* ── PRODUCT HERO ── */
.product-hero {
  max-width: 480px;
  margin: 0 auto;
  padding: 20px 16px 28px;
}

/* Gallery */
.gallery { position: relative; margin-bottom: 20px; }
.gallery__main {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--dark2);
  aspect-ratio: 1/1;
}
.gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .2s;
}
.gallery__main img.fading { opacity: 0; }

.gallery__hint {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
  color: rgba(255,255,255,.8);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 20px;
  pointer-events: none;
}

.gallery__brindes {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 10px 0 0;
}
.gallery__brinde-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: .05em;
  text-transform: uppercase;
}
.gallery__brinde-imgs { display: flex; gap: 8px; }

.gallery__thumbs {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.gallery__thumbs::-webkit-scrollbar { display: none; }

.gallery__thumb {
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color .2s;
  background: var(--dark2);
}
.gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery__thumb.active { border-color: var(--amber); }

/* Product Info */

.product-header__title {
  font-size: 22px;
  font-weight: 900;
  line-height: 1.25;
  color: var(--white);
  margin-bottom: 12px;
}
.product-header__verified-icon { color: var(--amber); font-size: 18px; }

/* Badges */
.badges-row { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.badge {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: .03em;
  white-space: nowrap;
}
.badge--gold   { background: rgba(245,166,35,.15); color: var(--amber); border: 1px solid rgba(245,166,35,.3); }
.badge--green  { background: rgba(34,197,94,.12); color: var(--green); border: 1px solid rgba(34,197,94,.25); }
.badge--blue   { background: rgba(96,165,250,.12); color: #60A5FA; border: 1px solid rgba(96,165,250,.25); }

/* Stars */
.stars-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
  cursor: pointer;
}
.stars { display: flex; gap: 2px; }
.stars svg { width: 16px; height: 16px; }
.stars-score { font-size: 14px; font-weight: 700; color: var(--amber); }
.stars-count  { font-size: 13px; color: var(--text-sub); }

/* Offer banner */
.offer-banner {
  background: linear-gradient(135deg, #1a1200 0%, #2a1c00 100%);
  border: 1px solid rgba(245,166,35,.3);
  border-radius: var(--radius);
  padding: 12px 16px;
  margin-bottom: 16px;
}
.offer-banner__title { font-size: 13px; font-weight: 800; color: var(--amber); letter-spacing: .04em; text-transform: uppercase; }
.offer-banner__subtitle { font-size: 12px; color: var(--text-sub); margin-top: 2px; }

/* Prices */
.price-main-block { margin-bottom: 14px; }
.price-old-line { font-size: 13px; color: var(--text-muted); }
.price-old-line s { text-decoration: line-through; }
.price-current-line { display: flex; align-items: baseline; gap: 10px; margin: 4px 0; }
.price-current { font-size: 34px; font-weight: 900; color: var(--white); }
.price-badge-save {
  background: var(--orange);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 20px;
}
.price-installment { font-size: 13px; color: var(--text-sub); }

/* PIX */
.price-pix-block {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(34,197,94,.08);
  border: 1px solid rgba(34,197,94,.2);
  border-radius: var(--radius);
  padding: 12px 14px;
  margin-bottom: 14px;
}
.price-pix-icon { flex-shrink: 0; }
.price-pix-main { font-size: 22px; font-weight: 900; color: var(--green); }
.price-pix-label { font-size: 13px; color: var(--green); }
.price-pix-note { font-size: 12px; color: var(--text-sub); margin-top: 2px; }

/* Shipping */
.shipping-block {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 11px 14px;
  margin-bottom: 18px;
  color: var(--text-sub);
}
.shipping-block svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--amber); }
.shipping-label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .04em; }
.shipping-city { color: var(--amber); font-weight: 700; }
.shipping-days { font-size: 13px; font-weight: 600; color: var(--green); margin-top: 1px; }

/* CTA */
.buy-btn {
  display: block;
  width: 100%;
  padding: 17px;
  background: linear-gradient(135deg, var(--amber) 0%, var(--orange) 100%);
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform .18s, box-shadow .18s, filter .18s;
  box-shadow: 0 4px 20px rgba(232,82,10,.35);
}
.buy-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,82,10,.5); filter: brightness(1.06); }
.buy-btn:active { transform: translateY(0); }

.payment-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.payment-icons img { height: 20px; width: auto; }

/* ── TRUST STRIP ── */
.trust-strip {
  display: flex;
  justify-content: center;
  gap: 0;
  background: var(--dark2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
  padding: 0 6px;
  border-right: 1px solid var(--border);
}
.trust-item:last-child { border-right: none; }
.trust-icon { color: var(--amber); }
.trust-label { font-size: 11px; font-weight: 700; color: var(--white); text-align: center; }
.trust-sublabel { font-size: 10px; color: var(--text-muted); text-align: center; }

/* ── SECTIONS ── */
.section { padding: 40px 16px; max-width: 480px; margin: 0 auto; }
.section--dark   { background: var(--dark); border-radius: 0; }
.section--white  { background: var(--dark2); }
.section--alt    { background: var(--dark3); }

.section-title {
  font-size: 22px;
  font-weight: 900;
  text-align: center;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.25;
}
.section-subtitle {
  font-size: 14px;
  color: var(--text-sub);
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.6;
}

/* Section wrappers for full-bleed backgrounds */
.section-wrap--dark  { background: var(--dark); }
.section-wrap--white { background: var(--dark2); }
.section-wrap--alt   { background: var(--dark3); }

/* ── FEATURE GRID ── */
.kevlar-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
  background: var(--dark3);
}
.kevlar-img-wrap img { width: 100%; display: block; }

.feature-grid-pro {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-item-pro {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
}
.feature-item-pro__icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--amber2), var(--orange));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-item-pro__label { font-size: 13px; font-weight: 800; color: var(--white); letter-spacing: .04em; text-transform: uppercase; }
.feature-item-pro__sub   { font-size: 12px; color: var(--text-sub); margin-top: 4px; line-height: 1.5; }

/* Light variant */
.feature-grid-pro--light .feature-item-pro       { background: rgba(255,255,255,.03); }
.feature-item-pro--light                          { background: rgba(255,255,255,.03) !important; }
.feature-item-pro__icon--light                    { background: linear-gradient(135deg, var(--amber2), var(--orange)); }
.feature-item-pro__label--light                   { color: var(--white); }
.feature-item-pro__sub--light                     { color: var(--text-sub); }

/* ── SPECS TABLE ── */
.specs-table {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 20px;
}
.specs-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  gap: 10px;
}
.specs-row:last-child { border-bottom: none; }
.specs-row:nth-child(even) { background: rgba(255,255,255,.03); }
.specs-label { font-size: 13px; color: var(--text-sub); font-weight: 600; }
.specs-value { font-size: 13px; color: var(--white); font-weight: 700; text-align: right; }

/* Quality list */
.quality-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.quality-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-sub);
}

/* Quality items */
.quality-item {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 20px;
}
.quality-item img { width: 100%; aspect-ratio: 16/9; object-fit: cover; background: var(--dark3); }
.quality-item__body { padding: 16px; }
.quality-card__label { font-size: 12px; font-weight: 800; color: var(--amber); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 8px; }
.quality-card__text  { font-size: 13px; color: var(--text-sub); line-height: 1.6; margin-bottom: 10px; }
.quality-checks { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.quality-checks li {
  font-size: 13px;
  color: var(--text-sub);
  padding-left: 18px;
  position: relative;
}
.quality-checks li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--amber);
  font-weight: 700;
}

/* ── WHY CHEAP ── */
.why-cheap-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}
.why-cheap-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
}
.why-cheap-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: rgba(245,166,35,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-cheap-content h3 { font-size: 13px; font-weight: 800; color: var(--white); margin-bottom: 4px; }
.why-cheap-content p  { font-size: 12px; color: var(--text-sub); line-height: 1.5; }

/* ── KIT INCLUDE ── */
.kit-include {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  margin: 0 16px 0;
}
.kit-include__title { font-size: 13px; font-weight: 800; color: var(--amber); margin-bottom: 12px; letter-spacing: .04em; text-transform: uppercase; }
.kit-include__grid  { display: flex; flex-direction: column; gap: 8px; }
.kit-include__item  { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-sub); }
.kit-include__item svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--amber); }

/* ── REVIEWS ── */
.reviews-rating {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.reviews-rating__score { font-size: 52px; font-weight: 900; color: var(--white); line-height: 1; }
.reviews-rating__stars { font-size: 20px; color: var(--amber); }
.reviews-rating__count { font-size: 13px; color: var(--text-sub); }
.reviews-rating__badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(34,197,94,.1);
  border: 1px solid rgba(34,197,94,.2);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
}

.reviews-list { display: flex; flex-direction: column; gap: 14px; }
.review-card {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}
.review-card__head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--dark3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  color: var(--amber);
  flex-shrink: 0;
}
.review-name   { font-size: 14px; font-weight: 700; color: var(--white); }
.review-meta   { font-size: 11px; color: var(--text-muted); margin-top: 2px; }
.review-stars  { font-size: 15px; color: var(--amber); margin-bottom: 8px; letter-spacing: 2px; }
.review-text   { font-size: 13px; color: var(--text-sub); line-height: 1.65; margin-bottom: 10px; }
.review-verified { font-size: 11px; color: var(--green); font-weight: 600; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.faq-item {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item.open { border-color: rgba(245,166,35,.4); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding: 16px;
  cursor: pointer;
  text-align: left;
  transition: color .15s;
  font-family: inherit;
}
.faq-question:hover { color: var(--amber); }
.faq-arrow { font-size: 16px; color: var(--amber); flex-shrink: 0; transition: transform .25s; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }

.faq-answer {
  display: none;
  padding: 0 16px 16px;
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ── FINAL CTA ── */
.final-cta {
  text-align: center;
  padding: 40px 20px;
  max-width: 480px;
  margin: 0 auto;
}
.price-main { font-size: 36px; font-weight: 900; color: var(--white); margin: 8px 0 4px; }
.price-info  { font-size: 14px; color: var(--text-sub); margin-bottom: 20px; }

/* ── COMPARISON TABLE ── */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 12px;
}
.comparison-table th, .comparison-table td {
  padding: 10px 12px;
  font-size: 12px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.comparison-table th { background: var(--dark3); font-weight: 800; text-transform: uppercase; letter-spacing: .04em; font-size: 11px; }
.comparison-table .col-highlight { background: rgba(245,166,35,.08); color: var(--amber); font-weight: 700; }
.comparison-table td:first-child { text-align: left; color: var(--text-sub); font-weight: 600; }
.comparison-table tr:last-child th, .comparison-table tr:last-child td { border-bottom: none; }
.check-yes { color: var(--green); font-weight: 700; }
.check-no  { color: #555; }

/* ── STICKY CTA ── */
.sticky-cta {
  position: fixed;
  bottom: -80px;
  left: 0; right: 0;
  z-index: 500;
  padding: 12px 16px;
  background: var(--dark);
  border-top: 1px solid var(--border);
  transition: bottom .3s cubic-bezier(.4,0,.2,1);
  max-width: 480px;
  margin: 0 auto;
}
.sticky-cta.visible { bottom: 0; }

/* ── FOOTER ── */
.site-footer {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  padding: 32px 16px 40px;
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
}
.site-footer__logo img { height: 30px; margin: 0 auto 20px; }
.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  margin-bottom: 20px;
}
.site-footer__nav a { font-size: 13px; color: var(--text-sub); }
.site-footer__nav a:hover { color: var(--amber); }
.site-footer__divider { height: 1px; background: var(--border); margin-bottom: 20px; }
.site-footer__copy  { font-size: 12px; color: var(--text-muted); line-height: 1.7; }
.site-footer__email { font-size: 12px; color: var(--text-muted); margin-top: 8px; }
.site-footer__email a { color: var(--amber); }

/* ── RESPONSIVE WRAPPER ── */
body > *:not(.top-banner):not(.site-header):not(.sticky-cta):not(footer) {
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ── BATTERY BREAKDOWN ── */
.battery-breakdown {
  background: rgba(245,166,35,.06);
  border: 1px solid rgba(245,166,35,.2);
  border-radius: var(--radius);
  padding: 18px;
  margin-top: 20px;
}
.battery-title { font-size: 13px; font-weight: 800; color: var(--white); margin-bottom: 14px; letter-spacing: .04em; text-transform: uppercase; }
.battery-rows { display: flex; flex-direction: column; gap: 10px; }
.battery-row { display: flex; align-items: center; gap: 10px; }
.battery-row__label { font-size: 12px; color: var(--text-sub); width: 130px; flex-shrink: 0; }
.battery-row__bar { flex: 1; background: rgba(255,255,255,.08); border-radius: 20px; height: 8px; overflow: hidden; }
.battery-row__fill { height: 100%; border-radius: 20px; background: linear-gradient(90deg, var(--amber2), var(--amber)); transition: width .6s ease; }
.battery-row__val { font-size: 12px; font-weight: 700; color: var(--amber); width: 60px; text-align: right; flex-shrink: 0; }

/* ── AMOLED BLOCK ── */
.amoled-block {
  background: linear-gradient(135deg, #0D0D0D 0%, #1A1200 100%);
  border: 1px solid rgba(245,166,35,.2);
  border-radius: var(--radius);
  padding: 22px 18px;
  margin-top: 20px;
  text-align: center;
}
.amoled-block__title { font-size: 26px; font-weight: 900; color: var(--white); line-height: 1.2; margin-bottom: 12px; }
.amoled-block__sub { font-size: 13px; color: var(--text-sub); line-height: 1.7; margin-bottom: 18px; }
.amoled-specs { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 10px; }
.amoled-spec { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.amoled-spec__val { font-size: 22px; font-weight: 900; color: var(--amber); }
.amoled-spec__lbl { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .04em; }

/* ── TECH PILLARS ── */
.tech-pillars { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.tech-pillar {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}
.tech-pillar__icon { font-size: 24px; margin-bottom: 8px; }
.tech-pillar__title { font-size: 13px; font-weight: 900; color: var(--amber); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 10px; }
.tech-pillar__list { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.tech-pillar__list li { font-size: 13px; color: var(--text-sub); padding-left: 16px; position: relative; line-height: 1.5; }
.tech-pillar__list li::before { content: '▸'; position: absolute; left: 0; color: var(--amber); font-size: 11px; top: 1px; }

/* ── CONNECT STEPS ── */
.connect-steps { display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }
.connect-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}
.connect-step__num {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber2), var(--orange));
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 900; color: #fff;
}
.connect-step__title { font-size: 14px; font-weight: 800; color: var(--white); margin-bottom: 6px; }
.connect-step__desc { font-size: 13px; color: var(--text-sub); line-height: 1.6; }
.app-badges { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.app-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--amber);
  background: rgba(245,166,35,.1);
  border: 1px solid rgba(245,166,35,.25);
  border-radius: 20px;
  padding: 4px 12px;
}

/* ── UTILITY ── */
.max480 { max-width: 480px; margin: 0 auto; padding: 0 16px; }

/* ── DESC HERO SECTION ── */
.desc-hero-section {
  position: relative;
  background: #0A0A0A;
  overflow: hidden;
  padding: 40px 0;
}
.desc-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(232,82,10,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.desc-hero-content { position: relative; z-index: 1; }
.desc-hero-title {
  font-size: 38px;
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: -.01em;
  text-align: center;
}
.desc-hero-sub { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 20px; }
.desc-hero-badge { margin-bottom: 24px; }

/* Icon Benefit Grid — 3 cols */
.icon-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}
.icon-benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 12px 8px;
  text-align: center;
}
.icon-benefit__ico { font-size: 22px; line-height: 1; }
.icon-benefit__lbl { font-size: 11px; font-weight: 700; color: var(--text-sub); letter-spacing: .02em; }

/* Bruto badge */
.bruto-badge {
  display: block;
  width: fit-content;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--amber2), var(--orange));
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  padding: 10px 22px;
  border-radius: 30px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

/* ── 900 mAh SECTION ── */
.mah-section {
  background: #0D0D0D;
  padding: 48px 0;
  border-top: 1px solid rgba(245,166,35,.12);
}
.mah-headline {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  text-align: center;
  line-height: 1.15;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.mah-sub {
  font-size: 14px;
  color: var(--text-sub);
  text-align: center;
  line-height: 1.7;
  margin-bottom: 24px;
}
.mah-display {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-bottom: 24px;
  line-height: 1;
}
.mah-num {
  font-size: 96px;
  font-weight: 900;
  color: var(--amber);
  letter-spacing: -.03em;
  line-height: .9;
}
.mah-unit {
  font-size: 28px;
  font-weight: 900;
  color: rgba(245,166,35,.7);
  align-self: flex-end;
  padding-bottom: 8px;
}
.mah-watch { margin-bottom: 20px; }
.mah-label {
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: 1.3;
}

/* ── AMOLED SECTION ── */
.amoled-section {
  background: #111;
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.amoled-section__title {
  font-size: 34px;
  font-weight: 900;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 14px;
}
.amoled-section__sub {
  font-size: 14px;
  color: var(--text-sub);
  text-align: center;
  line-height: 1.7;
  margin-bottom: 22px;
}
.amoled-watch-wrap { margin-bottom: 22px; }
.amoled-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.amoled-spec-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 14px;
  text-align: center;
}
.asc-label { font-size: 12px; font-weight: 900; color: var(--amber); letter-spacing: .05em; text-transform: uppercase; margin-bottom: 4px; }
.asc-sub   { font-size: 12px; color: var(--text-sub); }
.panda-glass-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(245,166,35,.06);
  border: 1px solid rgba(245,166,35,.2);
  border-radius: var(--radius);
  padding: 14px;
}
.pgb-icon { font-size: 28px; flex-shrink: 0; }
.pgb-title { font-size: 15px; font-weight: 900; color: #fff; letter-spacing: .06em; text-transform: uppercase; }
.pgb-sub   { font-size: 12px; color: var(--amber); font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }

/* ── TERRENO TRIO ── */
.terreno-section {
  background: #0A0A0A;
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.terreno-title {
  font-size: 26px;
  font-weight: 900;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 10px;
  line-height: 1.2;
}
.terreno-sub {
  font-size: 14px;
  color: var(--text-sub);
  text-align: center;
  line-height: 1.6;
  margin-bottom: 22px;
}
.terreno-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.terreno-item { position: relative; border-radius: 10px; overflow: hidden; }
.terreno-item img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
.terreno-item__label {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.8), transparent);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  text-align: center;
  padding: 12px 4px 6px;
  letter-spacing: .06em;
}

/* ── MONITORE SECTION ── */
.monitore-section {
  background: #111;
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.monitore-title {
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 12px;
}
.monitore-sub {
  font-size: 14px;
  color: var(--text-sub);
  text-align: center;
  line-height: 1.7;
  margin-bottom: 22px;
}
.bpm-display {
  background: rgba(232,82,10,.07);
  border: 1px solid rgba(232,82,10,.2);
  border-radius: var(--radius);
  padding: 18px;
  margin-bottom: 20px;
}
.bpm-display__inner {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.bpm-val { font-size: 42px; font-weight: 900; color: var(--orange); line-height: 1; }
.bpm-unit { font-size: 16px; color: var(--orange); font-weight: 700; align-self: flex-end; padding-bottom: 4px; }
.bpm-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 44px;
}
.bpm-bar {
  flex: 1;
  background: linear-gradient(to top, var(--orange), var(--amber));
  border-radius: 3px 3px 0 0;
  opacity: .8;
}
.monitore-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.monitore-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.5;
}

@media (min-width: 480px) {
  .product-hero { padding-top: 28px; }
  .section-title { font-size: 26px; }
  .price-current { font-size: 38px; }
}

/* ── FEATURES CALL SECTION ── */
.features-call-section {
  background: #0A0A0A;
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.call-feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
.call-feat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
.praticidade-block {
  background: linear-gradient(135deg, rgba(245,166,35,.1), rgba(232,82,10,.1));
  border: 1px solid rgba(245,166,35,.25);
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
  margin-bottom: 20px;
}
.praticidade-block__title {
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.praticidade-block__sub {
  font-size: 13px;
  color: var(--amber);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.mini-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.mini-feat {
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 12px;
  text-align: center;
}
.mini-feat__icon { font-size: 28px; margin-bottom: 8px; }
.mini-feat__label { font-size: 11px; font-weight: 800; color: var(--text-sub); text-transform: uppercase; letter-spacing: .04em; line-height: 1.4; }

/* ── MOVIMENTO É VIDA ── */
.movimento-section {
  background: #111;
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.movimento-title {
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 12px;
  line-height: 1.1;
}
.movimento-sub {
  font-size: 15px;
  color: var(--amber);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 12px;
}
.movimento-text {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.7;
  margin-bottom: 24px;
}
.proposito-block {
  border-left: 3px solid var(--amber);
  padding: 14px 16px;
  margin-bottom: 24px;
  background: rgba(245,166,35,.05);
  border-radius: 0 8px 8px 0;
}
.proposito-block__title {
  font-size: 16px;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.proposito-block__sub {
  font-size: 13px;
  color: var(--amber);
  font-weight: 700;
}
.sport-modes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.sport-mode-item {
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 7px 14px;
  font-size: 13px;
  color: var(--text-sub);
  font-weight: 600;
}

/* ── PERFORMANCE SECTION ── */
.perf-section {
  background: #0A0A0A;
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.perf-title {
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 20px;
}
.perf-stats-card {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  margin-bottom: 32px;
}
.perf-timer {
  font-size: 38px;
  font-weight: 900;
  color: var(--amber);
  letter-spacing: .04em;
  margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
}
.perf-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.perf-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.perf-stat__val { font-size: 18px; font-weight: 900; color: #fff; }
.perf-stat__lbl { font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .04em; }

.veja-title {
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 10px;
}
.veja-sub {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.7;
  margin-bottom: 20px;
}
.week-stats {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  padding: 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  height: 160px;
}
.week-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  height: 100%;
}
.week-stat__day { font-size: 10px; color: var(--text-muted); text-transform: uppercase; order: 3; }
.week-stat__bar {
  width: 100%;
  background: linear-gradient(to top, var(--orange), var(--amber));
  border-radius: 4px 4px 0 0;
  order: 2;
  min-height: 8px;
}
.week-stat__val { font-size: 9px; color: var(--text-sub); order: 1; white-space: nowrap; }

/* ── BRUTO E INABALÁVEL ── */
.bruto-section {
  background: #111;
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.bruto-section__title {
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 14px;
  line-height: 1.1;
}
.bruto-section__text {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.8;
}

/* -- O CLSSICO, REINVENTADO -- */
.classico-section {
  background: #0A0A0A;
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  text-align: center;
}
.classico-title {
  font-size: 40px;
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.classico-title--highlight { color: var(--amber); }
.classico-sub { font-size: 15px; color: var(--text-sub); margin-bottom: 24px; line-height: 1.5; }
.classico-badges { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.classico-badge { display: flex; flex-direction: column; align-items: center; gap: 6px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; padding: 14px 12px; width: 100px; }
.classico-badge__ico { font-size: 24px; }
.classico-badge__lbl { font-size: 10px; font-weight: 800; color: var(--amber); text-transform: uppercase; letter-spacing: .04em; text-align: center; line-height: 1.4; }

/* -- PULSO SPECS -- */
.pulso-specs-section { background: #111; padding: 32px 0; border-top: 1px solid rgba(255,255,255,.06); }
.pulso-specs-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.pulso-spec-card { background: rgba(255,255,255,.04); border: 1px solid rgba(245,166,35,.2); border-radius: var(--radius); padding: 18px 14px; text-align: center; }
.pulso-spec-card__title { font-size: 11px; font-weight: 800; color: var(--amber); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 8px; line-height: 1.4; }
.pulso-spec-card__val { font-size: 42px; font-weight: 900; color: #fff; line-height: 1; margin-bottom: 6px; }
.pulso-spec-card__tag { font-size: 12px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; }

/* -- CONSTRUO BRUTA -- */
.construcao-section { background: #0A0A0A; padding: 48px 0; border-top: 1px solid rgba(255,255,255,.06); }
.construcao-title { font-size: 28px; font-weight: 900; color: #fff; text-transform: uppercase; line-height: 1.15; margin-bottom: 14px; }
.construcao-text { font-size: 14px; color: var(--text-sub); line-height: 1.7; margin-bottom: 24px; }
.construcao-materials { display: flex; flex-direction: column; gap: 12px; }
.construcao-mat { display: flex; align-items: flex-start; gap: 14px; background: rgba(255,255,255,.04); border: 1px solid var(--border); border-left: 3px solid var(--amber); border-radius: 0 var(--radius) var(--radius) 0; padding: 14px; }
.construcao-mat__icon { font-size: 22px; flex-shrink: 0; }
.construcao-mat__title { font-size: 13px; font-weight: 900; color: #fff; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 4px; }
.construcao-mat__sub { font-size: 12px; color: var(--text-sub); line-height: 1.5; }

/* -- GUA NO  OBSTCULO -- */
.agua-section { position: relative; background: #050D14; padding: 48px 0; border-top: 1px solid rgba(0,120,200,.3); overflow: hidden; }
.agua-section__bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 100%, rgba(0,100,200,0.25) 0%, transparent 70%); pointer-events: none; }
.aqua-logo { display: inline-flex; align-items: center; gap: 8px; background: rgba(0,120,200,.15); border: 1px solid rgba(0,150,255,.3); border-radius: 8px; padding: 8px 16px; margin-bottom: 20px; }
.aqua-logo__icon { font-size: 20px; }
.aqua-logo__text { font-size: 18px; font-weight: 900; color: #4FC3F7; letter-spacing: .12em; }
.agua-title { font-size: 30px; font-weight: 900; color: #fff; text-transform: uppercase; line-height: 1.15; margin-bottom: 14px; }
.agua-text { font-size: 14px; color: rgba(255,255,255,.75); line-height: 1.7; margin-bottom: 10px; }
.agua-cta { font-size: 14px; color: #4FC3F7; margin-bottom: 24px; letter-spacing: .04em; }
.agua-specs { display: flex; background: rgba(0,120,200,.1); border: 1px solid rgba(0,150,255,.2); border-radius: var(--radius); overflow: hidden; }
.agua-spec { flex: 1; padding: 14px; text-align: center; border-right: 1px solid rgba(0,150,255,.15); }
.agua-spec:last-child { border-right: none; }
.agua-spec__val { font-size: 22px; font-weight: 900; color: #4FC3F7; margin-bottom: 4px; }
.agua-spec__lbl { font-size: 10px; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .04em; }

/* -- TUDO NO SEU PULSO -- */
.tudo-section { background: #111; padding: 48px 0; border-top: 1px solid rgba(255,255,255,.06); }
.tudo-title { font-size: 34px; font-weight: 900; color: #fff; text-transform: uppercase; line-height: 1.1; margin-bottom: 12px; }
.tudo-text { font-size: 14px; color: var(--text-sub); line-height: 1.7; margin-bottom: 8px; }
.tudo-cta { font-size: 14px; margin-bottom: 20px; }
.tudo-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
.tudo-item { background: rgba(255,255,255,.05); border: 1px solid var(--border); border-radius: 10px; padding: 13px 12px; font-size: 13px; font-weight: 600; color: var(--text-sub); }

/* -- PARTE 2 CSS -- */
.p2-calls-section { background: #0A0A0A; padding: 40px 0; border-top: 1px solid rgba(255,255,255,.06); }
.p2-call-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.p2-call-item { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: #fff; }

.p2-praticidade { background: linear-gradient(135deg,rgba(245,166,35,.1),rgba(232,82,10,.1)); border: 1px solid rgba(245,166,35,.25); border-radius: var(--radius); padding: 18px; text-align: center; margin-bottom: 18px; }
.p2-praticidade__title { font-size: 20px; font-weight: 900; color: #fff; text-transform: uppercase; margin-bottom: 4px; }
.p2-praticidade__sub { font-size: 12px; color: var(--amber); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }

.p2-mini-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
.p2-mini-card { background: rgba(255,255,255,.05); border: 1px solid var(--border); border-radius: 10px; padding: 18px 12px; text-align: center; }
.p2-mini-card__ico { font-size: 30px; margin-bottom: 10px; }
.p2-mini-card__lbl { font-size: 11px; font-weight: 800; color: var(--text-sub); text-transform: uppercase; letter-spacing: .04em; line-height: 1.4; }

.p2-movimento-section { background: #111; padding: 48px 0; border-top: 1px solid rgba(255,255,255,.06); }
.p2-mov-title { font-size: 34px; font-weight: 900; color: #fff; text-transform: uppercase; margin-bottom: 12px; line-height: 1.1; }
.p2-mov-sub { font-size: 14px; color: var(--amber); font-weight: 700; line-height: 1.6; margin-bottom: 10px; }
.p2-mov-text { font-size: 13px; color: var(--text-sub); line-height: 1.7; margin-bottom: 22px; }

.p2-proposito { border-left: 3px solid var(--amber); padding: 12px 16px; background: rgba(245,166,35,.05); border-radius: 0 var(--radius) var(--radius) 0; margin-bottom: 20px; }
.p2-proposito__title { font-size: 15px; font-weight: 900; color: #fff; text-transform: uppercase; margin-bottom: 4px; }
.p2-proposito__sub { font-size: 13px; color: var(--amber); font-weight: 700; }

.p2-sport-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.p2-sport-list li { font-size: 14px; color: var(--text-sub); padding-left: 20px; position: relative; font-weight: 600; }
.p2-sport-list li::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 10px; height: 10px; background: var(--orange); border-radius: 50%; }

.p2-perf-section { background: #0A0A0A; padding: 48px 0; border-top: 1px solid rgba(255,255,255,.06); }
.p2-perf-title { font-size: 24px; font-weight: 900; color: #fff; text-transform: uppercase; line-height: 1.2; margin-bottom: 20px; }

.p2-perf-card { background: rgba(255,255,255,.04); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.p2-perf-card__timer { font-size: 42px; font-weight: 900; color: var(--amber); letter-spacing: .04em; margin-bottom: 16px; font-variant-numeric: tabular-nums; }
.p2-perf-card__stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; margin-bottom: 16px; }
.p2-perf-stat { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.p2-perf-stat__val { font-size: 20px; font-weight: 900; color: #fff; }
.p2-perf-stat__lbl { font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .04em; }
.p2-perf-card__bar { background: rgba(255,255,255,.08); border-radius: 20px; height: 6px; overflow: hidden; }
.p2-perf-card__bar-fill { height: 100%; border-radius: 20px; background: linear-gradient(90deg, var(--orange), var(--amber)); }

.p2-veja-section { background: #111; padding: 48px 0; border-top: 1px solid rgba(255,255,255,.06); }
.p2-veja-title { font-size: 28px; font-weight: 900; color: #fff; text-transform: uppercase; line-height: 1.15; margin-bottom: 20px; }
.p2-history-cards { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
.p2-history-card { background: rgba(255,255,255,.04); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px; }
.p2-history-card__date { font-size: 10px; font-weight: 800; color: var(--amber); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; }
.p2-history-card__name { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.p2-history-card__stats { display: flex; flex-direction: column; gap: 4px; margin-bottom: 8px; }
.p2-history-card__stats span { font-size: 12px; color: var(--text-sub); }
.p2-history-card__bpm { font-size: 12px; color: var(--text-sub); }

.p2-bruto-section { background: #0A0A0A; padding: 48px 0; border-top: 1px solid rgba(255,255,255,.06); }
.p2-bruto-title { font-size: 32px; font-weight: 900; color: #fff; text-transform: uppercase; margin-bottom: 14px; line-height: 1.1; }
.p2-bruto-text { font-size: 14px; color: var(--text-sub); line-height: 1.8; }

/* -- BRUTO POR DENTRO, NICO POR FORA -- */
.mostradores-section { background: #0A0A0A; padding: 48px 0; border-top: 1px solid rgba(255,255,255,.06); }
.mostradores-title { font-size: 30px; font-weight: 900; color: #fff; text-transform: uppercase; line-height: 1.1; margin-bottom: 12px; }
.mostradores-sub { font-size: 13px; color: var(--text-sub); line-height: 1.7; margin-bottom: 24px; }
.mostradores-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 24px; }
.mostrador-card { background: rgba(255,255,255,.05); border: 1px solid var(--border); border-radius: 10px; padding: 14px 8px; text-align: center; }
.mostrador-card--dark { background: #000; border-color: var(--orange); }
.mostrador-card__time { font-size: 18px; font-weight: 900; color: var(--amber); }
.mostrador-card__date { font-size: 11px; color: var(--text-muted); margin-top: 4px; }
.straps-label { font-size: 11px; font-weight: 800; color: var(--text-muted); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 12px; line-height: 1.5; }
.straps-colors { display: flex; flex-wrap: wrap; gap: 10px; }
.strap-dot { width: 32px; height: 32px; border-radius: 50%; border: 2px solid rgba(255,255,255,.1); }

/* -- ONE vs ONE MAX -- */
.comparison-section { background: #111; padding: 48px 0; border-top: 1px solid rgba(255,255,255,.06); }
.comparison-header { display: grid; grid-template-columns: 1fr 1fr 1.2fr; gap: 0; margin-bottom: 0; }
.comparison-header__col { font-size: 13px; font-weight: 900; text-transform: uppercase; padding: 10px 8px; text-align: center; }
.comparison-header__col--old { color: var(--text-muted); background: rgba(255,255,255,.04); }
.comparison-header__col--new { color: var(--amber); background: rgba(245,166,35,.08); }
.comparison-table { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.comparison-row { display: grid; grid-template-columns: 1fr 1fr 1.2fr; gap: 0; border-bottom: 1px solid var(--border); }
.comparison-row:last-child { border-bottom: none; }
.comparison-row__feature { font-size: 10px; font-weight: 800; color: var(--text-muted); padding: 10px 8px; text-transform: uppercase; letter-spacing: .04em; background: rgba(255,255,255,.02); display: flex; align-items: center; }
.comparison-row__old { font-size: 11px; color: var(--text-muted); padding: 10px 8px; background: rgba(255,255,255,.02); display: flex; align-items: center; border-left: 1px solid var(--border); }
.comparison-row__new { font-size: 11px; color: var(--amber); padding: 10px 8px; background: rgba(245,166,35,.05); display: flex; align-items: center; border-left: 1px solid rgba(245,166,35,.15); font-weight: 600; }

/* -- COMO CONECTAR -- */
.connect-section { background: #0A0A0A; padding: 48px 0; border-top: 1px solid rgba(255,255,255,.06); }
.connect-title { font-size: 22px; font-weight: 900; color: #fff; text-transform: uppercase; line-height: 1.2; margin-bottom: 28px; }
.connect-steps { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.connect-step { display: flex; align-items: flex-start; gap: 14px; }
.connect-step__num { width: 36px; height: 36px; border-radius: 50%; background: var(--orange); color: #fff; font-size: 16px; font-weight: 900; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.connect-step__title { font-size: 14px; font-weight: 800; color: #fff; margin-bottom: 4px; }
.connect-step__sub { font-size: 12px; color: var(--text-sub); line-height: 1.5; }
.app-badges { display: flex; gap: 10px; }
.app-badge { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,.06); border: 1px solid var(--border); border-radius: 10px; padding: 12px 16px; text-decoration: none; flex: 1; }
.app-badge__ico { font-size: 24px; }
.app-badge__sub { font-size: 10px; color: var(--text-muted); }
.app-badge__store { font-size: 15px; font-weight: 800; color: #fff; }

/* -- TECNOLOGIA DE COMBATE -- */
.tecnologia-section { background: #0A0A0A; padding: 48px 0; border-top: 1px solid rgba(255,255,255,.06); }
.tecnologia-title { font-size: 24px; font-weight: 900; color: #fff; text-transform: uppercase; line-height: 1.2; margin-bottom: 28px; }

.tec-pillar { background: rgba(255,255,255,.03); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-bottom: 12px; }
.tec-pillar__header { display: flex; align-items: center; gap: 10px; padding: 14px 16px; background: rgba(245,166,35,.06); border-bottom: 1px solid rgba(245,166,35,.12); }
.tec-pillar__ico { font-size: 20px; }
.tec-pillar__name { font-size: 13px; font-weight: 900; color: var(--amber); text-transform: uppercase; letter-spacing: .05em; }
.tec-pillar__list { list-style: none; padding: 12px 16px; display: flex; flex-direction: column; gap: 8px; }
.tec-pillar__list li { font-size: 13px; color: var(--text-sub); padding-left: 18px; position: relative; line-height: 1.5; }
.tec-pillar__list li::before { content: ''; position: absolute; left: 0; top: 7px; width: 8px; height: 8px; background: var(--orange); border-radius: 50%; }

/* -- AGUA IMG WRAP  specs sobreposta + sticky -- */
.agua-img-wrap {
  position: relative;
}
.agua-img-wrap .agua-img {
  margin-bottom: 0;
}
.agua-img-wrap .agua-specs {
  position: sticky;
  bottom: 12px;
  margin-top: -52px;
  z-index: 10;
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(10,10,10,.82);
  border: 1px solid rgba(245,166,35,.25);
  box-shadow: 0 8px 32px rgba(0,0,0,.6);
  margin-left: 12px;
  margin-right: 12px;
}

/* -- FEATURES CAROUSEL -- */
.feat-carousel { position: relative; background: transparent; border: none; border-radius: var(--radius); padding: 32px 52px; text-align: center; margin-top: 16px; overflow: hidden; min-height: 140px; display: flex; align-items: center; justify-content: center; }
.feat-slide { display: none; animation: fadeSlide .4s ease; }
.feat-slide.active { display: block; }
@keyframes fadeSlide { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:translateY(0); } }

.feat-slide__list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 14px; padding: 0; }
.feat-slide__list li { font-size: 14px; color: var(--text-sub); padding-left: 20px; position: relative; font-weight: 600; line-height: 1.5; }
.feat-slide__list li::before { content: ''; position: absolute; left: 0; top: 7px; width: 8px; height: 8px; background: var(--amber); border-radius: 50%; }

.feat-dots { display: flex; justify-content: center; gap: 8px; margin-top: 16px; }
.feat-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.2); cursor: pointer; transition: background .3s, transform .3s; }
.feat-dot.active { background: var(--amber); transform: scale(1.3); }

/* -- FEAT CAROUSEL v2  single item, arrows, dots -- */
.feat-carousel { position: relative; background: transparent; border: none; border-radius: var(--radius); padding: 32px 52px; text-align: center; margin-top: 16px; overflow: hidden; min-height: 140px; display: flex; align-items: center; justify-content: center; }
.feat-slide { display: none; flex-direction: column; align-items: center; gap: 8px; animation: fadeSlide .35s ease; width: 100%; }
.feat-slide.active { display: flex; }
.feat-slide__ico { font-size: 36px; }
.feat-slide__title { font-size: 18px; font-weight: 900; color: #fff; text-transform: uppercase; letter-spacing: .03em; }
.feat-slide__sub { font-size: 13px; color: var(--text-sub); line-height: 1.6; max-width: 280px; }
.feat-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.08); border: 1px solid var(--border); border-radius: 50%; width: 36px; height: 36px; color: var(--amber); font-size: 16px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s; z-index: 2; }
.feat-arrow:hover { background: rgba(245,166,35,.15); }
.feat-arrow--prev { left: 8px; }
.feat-arrow--next { right: 8px; }
.feat-dots { position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; }
.feat-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.2); cursor: pointer; transition: background .3s, transform .3s; }
.feat-dot.active { background: var(--amber); transform: scale(1.3); }

/* -- FUNDO UNIFICADO  todas as sees da descrio -- */
.classico-section, .construcao-section, .agua-section,
.tudo-section, .p2-calls-section, .p2-movimento-section,
.p2-perf-section, .p2-veja-section, .p2-bruto-section,
.desc-hero-section, .mah-section, .amoled-section,
.mostradores-section, .terreno-section, .monitore-section,
.comparison-section, .connect-section, .tecnologia-section,
.section-wrap--alt, .section--alt,
.bruto-section, .tec-pillar, .tec-pillar__header {
  background: #0A0A0A !important;
}
.section-wrap--alt { background: #0A0A0A !important; }
.section--alt { background: #0A0A0A !important; }

/* Remove linhas separadoras entre todas as secoes */
.classico-section, .construcao-section, .agua-section,
.tudo-section, .p2-calls-section, .p2-movimento-section,
.p2-perf-section, .p2-veja-section, .p2-bruto-section,
.desc-hero-section, .mah-section, .amoled-section,
.mostradores-section, .terreno-section, .monitore-section,
.comparison-section, .connect-section, .tecnologia-section,
.bruto-section, .pulso-specs-section, .section-wrap--alt,
.mah-section, .amoled-section {
  border-top: none !important;
  border-bottom: none !important;
}

/* Reduz espaco entre carrossel e MOVIMENTO E VIDA */
.tudo-section { padding-bottom: 16px !important; }
.p2-calls-section { padding-top: 16px !important; }
.p2-movimento-section { padding-top: 16px !important; }

/* -- CENTRALIZAR TITULOS DA DESCRICAO -- */
.classico-title, .construcao-title, .agua-title,
.tudo-title, .p2-mov-title, .p2-perf-title, .p2-veja-title,
.mah-headline, .mah-label, .amoled-section__title,
.mostradores-title, .terreno-title, .monitore-title,
.comparison-title, .connect-title, .tecnologia-title,
.section-title, .desc-hero-title, .bruto-title {
  text-align: center !important;
}

/* -- REDUZIR ESPACAMENTO ENTRE SECOES -- */
.classico-section, .construcao-section, .agua-section,
.tudo-section, .p2-calls-section, .p2-movimento-section,
.p2-perf-section, .p2-veja-section, .p2-bruto-section,
.desc-hero-section, .mah-section, .amoled-section,
.mostradores-section, .terreno-section, .monitore-section,
.comparison-section, .connect-section, .tecnologia-section,
.section-wrap--alt {
  padding-top: 32px !important;
  padding-bottom: 32px !important;
}

/* -- DESC-HERO: glow laranja completo com fade suave na transicao -- */
.desc-hero-section { overflow: visible !important; }
.desc-hero-bg {
  background: radial-gradient(ellipse at 50% 40%, rgba(232,82,10,0.22) 0%, rgba(232,82,10,0.06) 55%, transparent 80%) !important;
}
.desc-hero-section::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: 0; right: 0;
  height: 80px;
  background: radial-gradient(ellipse at 50% 0%, rgba(232,82,10,0.10) 0%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

/* -- MOVE GLOW: remove de desc-hero, adiciona em classico -- */
.desc-hero-bg {
  background: none !important;
}
.desc-hero-section::after { display: none !important; }
.desc-hero-section { overflow: hidden !important; }

.classico-section {
  position: relative;
  overflow: hidden;
}
.classico-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(232,82,10,0.22) 0%, rgba(232,82,10,0.06) 55%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}
.classico-section > * { position: relative; z-index: 1; }

/* -- GLOW LARANJA  APENAS classico-section, sem sangrar -- */
.classico-section {
  overflow: hidden !important;
  isolation: isolate;
}
.classico-section::before {
  background: radial-gradient(ellipse at 50% 55%, rgba(232,82,10,0.25) 0%, rgba(232,82,10,0.08) 50%, transparent 75%) !important;
}
/* Garante que nenhuma outra secao tenha glow laranja acidental */
.construcao-section::before,
.agua-section::before,
.tudo-section::before,
.mah-section::before,
.amoled-section::before,
.p2-perf-section::before,
.p2-movimento-section::before {
  display: none !important;
}

/* -- CLASSICO SPLIT: img e specs sem glow -- */
.classico-img-section,
.classico-specs-section {
  background: #0A0A0A;
  padding: 0 16px 24px;
}
.classico-img-section::before,
.classico-specs-section::before { display: none !important; }
.classico-section { padding-bottom: 24px !important; }

/* -- GLOW VERDE MILITAR  secao FEITO PARA QUEM NAO PARA -- */
.p2-movimento-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.p2-movimento-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(74,103,28,0.28) 0%, rgba(74,103,28,0.10) 50%, transparent 78%);
  pointer-events: none;
  z-index: 0;
}
.p2-movimento-section > * { position: relative; z-index: 1; }

/* -- GLOW VERDE MILITAR  mesmo padrao do agua-section__bg -- */
.p2-movimento-section { position: relative; background: #0A0A0A; overflow: hidden; }
.p2-movimento-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(74,103,28,0.32) 0%, rgba(74,103,28,0.10) 55%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

/* -- DESCRIO: texto alinhado  ESQUERDA, apenas ttulos centralizados -- */
.mah-sub, .mah-headline,
.amoled-section__sub,
.agua-text, .agua-cta,
.construcao-text,
.p2-mov-sub, .p2-mov-text,
.p2-perf-sub, .p2-veja-sub,
.terreno-sub,
.monitore-sub,
.desc-hero-sub,
.classico-sub,
.p2-bruto-text,
.tudo-sub,
.section-sub, .section-desc {
  text-align: left !important;
}

/* -- Centraliza titulo da secao de bateria -- */
.mah-headline { text-align: center !important; }

/* -- CARACTERISTICAS DO PRODUTO -- */
.produto-features-section { background:#0A0A0A; padding:40px 20px; }
.produto-features-title { font-size:1.6rem; font-weight:900; color:#fff; text-align:center; margin-bottom:24px; }
.produto-specs-grid { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-bottom:24px; }
.pspec-card { background:#141414; border:1px solid #222; border-radius:12px; padding:16px 14px; display:flex; flex-direction:column; align-items:center; text-align:center; gap:8px; }
.pspec-label { color:var(--amber); font-size:.75rem; font-weight:800; letter-spacing:.04em; }
.pspec-sub { color:#aaa; font-size:.72rem; }
.kit-incluso { background:#141414; border:1px solid #222; border-radius:12px; padding:20px; margin-top:4px; }
.kit-incluso__title { color:var(--amber); font-weight:800; font-size:.9rem; margin-bottom:12px; }
.kit-incluso__list { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:8px; }
.kit-incluso__list li { color:#ddd; font-size:.85rem; }

/* -- POR QUE TO BARATO -- */
.barato-section { background:#0A0A0A; padding:40px 20px; }
.barato-title { font-size:1.6rem; font-weight:900; color:#fff; text-align:center; margin-bottom:24px; }
.barato-cards { display:flex; flex-direction:column; gap:14px; }
.barato-card { background:#141414; border:1px solid #222; border-radius:12px; padding:18px 16px; display:flex; gap:16px; align-items:flex-start; }
.barato-card__icon { flex-shrink:0; }
.barato-card__label { color:var(--amber); font-size:.8rem; font-weight:800; letter-spacing:.04em; margin-bottom:6px; }
.barato-card__text { color:#aaa; font-size:.82rem; line-height:1.5; }

/* -- BRINDES BANNER -- */
.brindes-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #141414;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 14px 16px;
  margin: 12px 0;
}
.brindes-banner__text { flex: 1; }
.brindes-banner__title {
  color: var(--amber);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .04em;
  margin-bottom: 8px;
}
.brindes-banner__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.brindes-banner__list li { color: #ccc; font-size: .78rem; }
.brindes-banner__img {
  width: 110px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 8px;
}

/* -- BRINDES BANNER  centralizado -- */
.brindes-banner {
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
}
.brindes-banner__img {
  width: 100% !important;
  max-width: 280px !important;
  margin: 8px auto 0 !important;
  display: block !important;
}
.brindes-banner__title {
  font-size: .95rem !important;
}

/* -- BRINDES  reduz espaco titulo/imagem -- */
.brindes-banner__img { margin-top: 2px !important; }

/* -- TOP BANNER  limita largura ao layout da pagina -- */
.top-banner {
  max-width: 480px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  border-radius: 0 0 8px 8px;
}

/* -- STICKY CTA  fundo transparente -- */
.sticky-cta {
  background: transparent !important;
  border-top: none !important;
}
