/* ═══════════════════════════════════════════
   HOPP EXPRESS — Kit Maleta 214 Peças
   style.css — written from scratch
   ═══════════════════════════════════════════ */

/* ── RESET & BASE ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #F9FAFB;
  --bg-alt: #F3F4F6;
  --bg-white: #FFFFFF;
  --border: #E5E7EB;
  --text: #111827;
  --text-muted: #6B7280;
  --text-light: #9CA3AF;
  --red: #C00000;
  --red-light: rgba(192, 0, 0, 0.12);
  --green: #059669;
  --green-light: #F0FDF4;
  --green-border: #A7F3D0;
  --yellow: #FBBF24;
  --blue: #024AB4;
  --blue-light: rgba(2, 74, 180, 0.12);
  --accent: #1a1a1a;
  --radius: 10px;
  --shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  --font: 'Roboto', sans-serif;
  --max: 500px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: var(--max);
  margin: 0 auto;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font);
}

ul {
  list-style: none;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ══════════════════════════════════════════
   TOP BANNER
══════════════════════════════════════════ */
.top-banner {
  background: #1F2937;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  overflow: hidden;
  white-space: nowrap;
  padding: 7px 0;
}

.top-banner__scroll {
  display: inline-flex;
  gap: 48px;
  animation: marquee 28s linear infinite;
}

.top-banner__scroll span {
  flex-shrink: 0;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ══════════════════════════════════════════
   HEADER
══════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}

.menu-toggle {
  display: flex;
  align-items: center;
  color: var(--text);
  padding: 4px;
  border-radius: 6px;
  transition: background 0.2s;
}

.menu-toggle:hover {
  background: var(--bg-alt);
}

.site-header__logo img {
  height: 52px;
  width: auto;
}

/* ── SIDE MENU (DRAWER) ── */
.side-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 200;
  backdrop-filter: blur(2px);
}

.side-menu-overlay.open {
  display: block;
}

.side-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100%;
  background: var(--bg-white);
  z-index: 201;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.side-menu.open {
  transform: translateX(0);
}

.side-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
}

.side-menu__close {
  font-size: 26px;
  color: var(--text-muted);
  line-height: 1;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background 0.2s;
}

.side-menu__close:hover {
  background: var(--bg-alt);
}

.side-menu__body {
  padding: 20px 16px;
  flex: 1;
}

.side-menu__section-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  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: 9px 10px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: background 0.18s;
}

.side-menu__link:hover {
  background: var(--bg-alt);
}

.side-menu__divider {
  height: 1px;
  background: var(--border);
  margin: 16px 0;
}

.side-menu__support p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
}

.side-menu__support a {
  color: var(--blue);
  font-weight: 500;
}

/* ══════════════════════════════════════════
   PRODUCT HERO
══════════════════════════════════════════ */
.product-hero {
  background: var(--bg-white);
  padding: 0 0 24px;
}

/* ── GALLERY ── */
.gallery {
  background: var(--bg-alt);
}

.gallery__main {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hint de clique na galeria */
.gallery__hint {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.52);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 9px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
  pointer-events: none;
  letter-spacing: 0.2px;
}

.gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.25s ease;
}

.gallery__main img.fading {
  opacity: 0;
}

.gallery__thumbs {
  display: flex;
  gap: 8px;
  padding: 10px 12px;
  overflow-x: auto;
  background: var(--bg-alt);
  scrollbar-width: none;
}

.gallery__thumbs::-webkit-scrollbar {
  display: none;
}

.gallery__thumb {
  flex-shrink: 0;
  width: 68px;
  height: 68px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gallery__thumb.active {
  border-color: var(--blue);
}

.gallery__thumb:hover {
  border-color: var(--text-muted);
}

/* ── PRODUCT INFO ── */
.product-info {
  padding: 18px 16px 0;
}

.product-header__title {
  font-size: 20px;
  font-weight: 900;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 12px;
}

.product-header__verified-icon {
  color: var(--blue);
  font-size: 16px;
}

/* Badges row */
.badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.badge {
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 9999px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.badge--red {
  background: var(--blue-light);
  color: var(--blue);
  border-color: rgba(2, 74, 180, 0.25);
}

.badge--green {
  background: var(--green-light);
  color: var(--green);
  border-color: var(--green-border);
}

.badge--blue {
  background: var(--blue-light);
  color: var(--blue);
  border-color: rgba(2, 74, 180, 0.25);
}

/* Stars */
.stars-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  cursor: pointer;
}

.stars {
  display: flex;
  gap: 2px;
}

.stars svg {
  width: 15px;
  height: 15px;
}

.stars-score {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.stars-count {
  font-size: 12px;
  color: var(--text-muted);
}

/* ── Preço principal ── */
.price-main-block {
  margin-bottom: 12px;
}

.price-old-line {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.price-old-line s {
  color: var(--text-muted);
}

.price-current-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.price-current {
  font-size: 32px;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
}

.price-badge-save {
  background: var(--green);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 99px;
}

/* ── PIX reveal ── */
.pix-reveal-wrap {
  margin-bottom: 14px;
  border-radius: 10px;
  border: 1.5px dashed var(--green);
  overflow: hidden;
}

.pix-reveal-wrap .price-pix-block {
  margin: 0;
  border-radius: 0;
  border: none;
  border-top: 1px solid var(--green-border);
}

/* Price block */
.price-pix-block {
  margin-bottom: 12px;
  padding: 12px 14px;
  border-radius: 8px;
  background: var(--green-light);
  border: 1px solid var(--green-border);
  display: flex;
  align-items: center;
  gap: 12px;
}

.price-pix-icon {
  font-size: 22px;
}

.price-pix-main {
  font-size: 22px;
  font-weight: 900;
  color: var(--green);
}

.price-pix-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
}

.price-pix-note {
  font-size: 12px;
  color: var(--green);
  margin-top: 2px;
}

.price-installment {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

.price-old {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-top: 2px;
}


/* Shipping block */
.shipping-block {
  margin-bottom: 18px;
  padding: 12px 14px;
  border-radius: 8px;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
}

.shipping-block svg {
  color: var(--text-muted);
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.shipping-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
}

.shipping-city {
  font-weight: 700;
  color: var(--text);
}

.shipping-days {
  font-size: 15px;
  font-weight: 800;
  color: var(--green);
}

/* CTA Button */
.buy-btn {
  display: block;
  width: 100%;
  background: #024AB4;
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 17px 20px;
  border-radius: 10px;
  text-align: center;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 16px rgba(2, 74, 180, 0.35);
}

.buy-btn:hover {
  background: #013a8e;
  transform: translateY(-1px);
}

.buy-btn:active {
  transform: translateY(0);
}

/* Payment icons */
.payment-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  padding: 0 8px;
}

.payment-icons img {
  height: 20px;
  width: auto;
}

/* ══════════════════════════════════════════
   TRUST STRIP
══════════════════════════════════════════ */
.trust-strip {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  padding: 20px 16px;
  background: var(--bg-white);
  border-top: 1px solid var(--bg-alt);
  border-bottom: 1px solid var(--bg-alt);
  margin-top: 24px;
  text-align: center;
  gap: 8px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
}

.trust-icon {
  font-size: 26px;
  line-height: 1;
}

.trust-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.trust-sublabel {
  font-size: 10px;
  color: var(--text-muted);
  line-height: 1.3;
}

/* ══════════════════════════════════════════
   SECTION GENERIC
══════════════════════════════════════════ */
.section {
  padding: 36px 16px;
}

.section--alt {
  background: var(--bg-alt);
}

.section--white {
  background: var(--bg-white);
}

.section-title {
  font-size: 26px;
  font-weight: 900;
  color: var(--text);
  text-align: center;
  margin-bottom: 6px;
  line-height: 1.3;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.5;
}

/* ══════════════════════════════════════════
   TOOL CARDS (descrição por tipo de peça)
══════════════════════════════════════════ */
.tool-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 14px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
}

.tool-card__img-wrap {
  width: 100%;
  height: 180px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
  border-bottom: 1px solid var(--border);
}

.tool-card__img-wrap::after {
  content: 'Ampliar';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(2, 74, 180, 0.82);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  padding: 5px 0;
  letter-spacing: 0.5px;
  pointer-events: none;
}

.tool-card__img-wrap:hover {
  box-shadow: 0 0 0 2px var(--blue);
}

.tool-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 0;
}

.tool-card__body {
  flex: 1;
  min-width: 0;
  padding: 14px 16px 16px;
}

.tool-card__title {
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 5px;
  line-height: 1.3;
}

.tool-card__text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 8px;
}

.tool-card__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tool-card__list li {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}

.tool-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

/* ══════════════════════════════════════════
   PRODUCT DESCRIPTION BLOCKS (legacy)
══════════════════════════════════════════ */
.desc-block {
  margin-bottom: 32px;
}


.desc-block img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 14px;
}

.desc-block__title {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.3;
}

.desc-block__text {
  font-size: 15px;
  color: #555;
  line-height: 1.65;
}

/* checklist inside desc */
.check-list {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.check-list li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ══════════════════════════════════════════
   SPECS ACCORDION
══════════════════════════════════════════ */
.specs-acc {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
}

.specs-acc__head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.18s;
}

.specs-acc__head:hover {
  background: var(--bg);
}

.specs-acc__head-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
}

.specs-acc__arrow {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.28s ease;
}

.specs-acc.open .specs-acc__arrow {
  transform: rotate(180deg);
}

.specs-acc__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s;
  padding: 0 16px;
}

.specs-acc.open .specs-acc__body {
  max-height: 1200px;
  padding: 0 16px 16px;
}

/* ══════════════════════════════════════════
   SPECS LIST — per-item accordion
══════════════════════════════════════════ */
.specs-list--acc {
  gap: 0;
  padding: 0;
}

.sl-item {
  border-bottom: 1px solid var(--border);
  list-style: none;
}

.sl-item:last-child {
  border-bottom: none;
}

.sl-item__head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 15px;
  color: var(--text);
  transition: color 0.15s;
}

.sl-item__head:hover {
  color: var(--blue);
}

.sl-item__head strong {
  font-weight: 700;
}

.sl-arr {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.25s ease;
}

.sl-item.open .sl-arr {
  transform: rotate(180deg);
}

.sl-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  padding: 0;
}

.sl-item.open .sl-item__body {
  max-height: 120px;
  padding-bottom: 12px;
}

.specs-box {
  background: var(--bg-white);
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 20px 16px;
  margin-bottom: 16px;
}

.specs-box h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.specs-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.specs-list li {
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
  padding-left: 4px;
  border-left: 3px solid var(--green);
  padding-left: 10px;
}

.specs-list li strong {
  color: var(--text);
}

/* Technical specs table */
.specs-table {
  background: var(--bg-white);
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
}

.specs-table h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  padding: 14px 16px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}

.specs-row {
  display: flex;
  border-bottom: 1px solid var(--border);
}

.specs-row:last-child {
  border-bottom: none;
}

.specs-row__key,
.specs-row__val {
  padding: 12px 14px;
  font-size: 15px;
  line-height: 1.5;
}

.specs-row__key {
  font-weight: 700;
  color: var(--text);
  background: var(--bg);
  flex: 0 0 40%;
}

.specs-row__val {
  color: var(--text-muted);
  flex: 1;
}

/* ══════════════════════════════════════════
   BENEFITS GRID
══════════════════════════════════════════ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.benefit-card {
  background: var(--bg-white);
  border-radius: 10px;
  border: 1px solid var(--border);
  padding: 16px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: box-shadow 0.2s;
}

.benefit-card:hover {
  box-shadow: var(--shadow);
}

.benefit-icon {
  font-size: 26px;
}

.benefit-card p {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

/* ══════════════════════════════════════════
   WHY CHEAP
══════════════════════════════════════════ */
.why-cheap-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.why-cheap-card {
  background: var(--bg-white);
  border-radius: 10px;
  border: 1px solid var(--border);
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.why-cheap-icon {
  font-size: 28px;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-cheap-content h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
}

.why-cheap-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ══════════════════════════════════════════
   REVIEWS
══════════════════════════════════════════ */
.reviews-rating {
  text-align: center;
  margin-bottom: 20px;
}

.reviews-rating__stars {
  font-size: 26px;
  color: var(--yellow);
  letter-spacing: 4px;
  margin-bottom: 6px;
}

.reviews-rating p {
  font-size: 15px;
  color: var(--text-muted);
  margin: 0;
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.review-photo {
  width: 100%;
  border-radius: 8px;
  margin: 10px 0 8px;
  cursor: zoom-in;
  object-fit: cover;
  max-height: 200px;
}

.review-card {
  background: var(--bg-white);
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.review-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.review-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
}

.review-meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
}

.review-stars {
  font-size: 16px;
  color: var(--yellow);
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.review-text {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

.review-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  background: var(--green-light);
  border-radius: 12px;
  padding: 2px 8px;
  margin-top: 8px;
}

/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 15px 16px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background 0.18s;
}

.faq-question:hover {
  background: var(--bg);
}

.faq-question .faq-arrow {
  font-size: 18px;
  color: var(--text-muted);
  transition: transform 0.25s;
  flex-shrink: 0;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
  font-size: 16px;
  color: #555;
  line-height: 1.65;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 16px 16px;
}

/* ══════════════════════════════════════════
   FINAL CTA SECTION
══════════════════════════════════════════ */
.final-cta {
  background: var(--bg-white);
  padding: 30px 20px;
  text-align: center;
  border-top: 1px solid var(--border);
}

.final-cta .section-title {
  margin-bottom: 8px;
}

.final-cta .price-main {
  font-size: 32px;
  font-weight: 900;
  color: var(--green);
  margin: 10px 0 4px;
}

.final-cta .price-info {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* ══════════════════════════════════════════
   STICKY CTA
══════════════════════════════════════════ */
.sticky-cta {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
  width: calc(100% - 32px);
  max-width: calc(var(--max) - 32px);
  z-index: 150;
  background: transparent;
  padding: 0;
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.26, 0.64, 1), opacity 0.35s ease;
  pointer-events: none;
}

.sticky-cta.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.sticky-cta .buy-btn {
  font-size: 16px;
  padding: 15px;
  box-shadow: 0 8px 32px rgba(2, 74, 180, 0.45), 0 2px 8px rgba(0, 0, 0, 0.18);
  border-radius: 14px;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.site-footer {
  background: var(--text);
  color: #e5e7eb;
  padding: 28px 20px 36px;
  text-align: center;
}

.site-footer__logo {
  margin: 0 auto 16px;
}

.site-footer__logo img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  margin: 0 auto;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 16px;
  margin-bottom: 18px;
}

.site-footer__nav a {
  font-size: 12px;
  color: #9ca3af;
  transition: color 0.2s;
}

.site-footer__nav a:hover {
  color: #fff;
}

.site-footer__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 14px;
}

.site-footer__copy {
  font-size: 11px;
  color: #6b7280;
  line-height: 1.6;
}

.site-footer__email {
  font-size: 12px;
  color: #9ca3af;
  margin-top: 6px;
}

.site-footer__email a {
  color: #d1d5db;
}

/* ══════════════════════════════════════════
   UTILITIES
══════════════════════════════════════════ */
.text-center {
  text-align: center;
}

.mt-8 {
  margin-top: 8px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-24 {
  margin-top: 24px;
}

.mb-0 {
  margin-bottom: 0;
}

/* ── DESKTOP CENTER (already max-width: 500px) ── */
@media (min-width: 501px) {
  body {
    max-width: var(--max);
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.06);
  }

  html {
    background: #e9eaec;
  }

  .sticky-cta {
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
  }
}

/* ══════════════════════════════════════════
   CUSTOM VIDEO PLAYER
══════════════════════════════════════════ */
.vp {
  position: relative;
  overflow: hidden;
  background: transparent;
}

/* Overlay com botão de play grande */
.vp__overlay {
  position: absolute;
  inset: 0;
  bottom: 54px;
  /* não sobrepor a barra */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.vp__play-big {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(2, 74, 180, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.18s, background 0.18s, opacity 0.25s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.vp__play-big:hover {
  background: #024AB4;
  transform: scale(1.1);
}

/* Barra de controles */
.vp__bar {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #1a1a2e;
  padding: 10px 14px;
  border-radius: 0 0 12px 12px;
  min-height: 54px;
}

.vp__btn {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border-radius: 6px;
  transition: background 0.15s;
  flex-shrink: 0;
}

.vp__btn:hover {
  background: rgba(255, 255, 255, 0.12);
}

.vp__time {
  font-size: 13px;
  font-weight: 600;
  color: #ccc;
  font-family: var(--font);
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 34px;
}

/* Barra de progresso */
.vp__progress {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 99px;
  cursor: pointer;
  position: relative;
  margin: 0 4px;
}

.vp__progress-fill {
  height: 100%;
  background: #024AB4;
  border-radius: 99px;
  width: 0%;
  transition: width 0.1s linear;
  pointer-events: none;
}

.vp__progress-thumb {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
  pointer-events: none;
  transition: left 0.1s linear;
}

.vp__progress:hover .vp__progress-fill {
  background: #3b7cff;
}

.vp__progress:hover .vp__progress-thumb {
  transform: translate(-50%, -50%) scale(1.3);
}