/*
 * Infoss — protótipo locação (referência visual do mock enviado)
 * - Fundo branco / cinza mínimo (não lavanda dominante)
 * - Roxo profundo nos fluxos secundários e marca
 * - Verde vibrante nos CTAs principais (locar, confirmar, PIX ativo)
 * - Azul saturado só no cadastro
 * - Layout amplo para simular TV / aplicação web
 */

:root {
  /* Roxo profundo (próximo ao “deep purple” do mock, levemente azulado) */
  --purple-900: #311b92;
  --purple-800: #4527a0;
  --purple-700: #5e35b1;
  --purple-600: #6e40c9;
  --purple-100: #ede7f6;
  --purple-50: #f6f3fc;

  /* Verde vibrante (CTA principal — mais “vivo” que verde Material padrão) */
  --green-700: #00a152;
  --green-600: #00c853;
  --green-500: #00e676;
  --green-50: #e8fff3;

  /* Azul do botão “Não tem cadastro” */
  --blue-700: #1565c0;
  --blue-600: #1e88e5;
  --blue-500: #2196f3;

  /* Neutros */
  --white: #ffffff;
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #eeeeee;
  --gray-400: #bdbdbd;
  --gray-600: #757575;
  --gray-800: #424242;
  --text: #212121;
  --muted: #616161;

  /* Cartão de orientação (amarelo do mock) */
  --warn-bg: #fffde7;
  --warn-border: #ffca28;
  --warn-title: #f57f17;

  --radius-lg: 24px;
  --radius: 16px;
  --radius-sm: 12px;
  --shadow-soft: 0 2px 8px rgba(46, 24, 99, 0.06);
  --shadow-card: 0 4px 24px rgba(46, 24, 99, 0.08);
  --shadow-btn-purple: 0 6px 20px rgba(94, 53, 177, 0.35);
  --shadow-btn-green: 0 6px 24px rgba(0, 230, 118, 0.35);

  --font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --font-home: "Inter", system-ui, -apple-system, sans-serif;

  /* Mock tela inicial (referência enviada) */
  --home-navy: #1a202c;
  --home-muted: #718096;
  --home-purple-solid: #6a0dad;
  --home-green-solid: #32a832;
  --home-blue-solid: #007bff;
  --home-header-start: #5b0fa8;
  --home-header-end: #2d1b69;
  --home-card-purple-bg: #f4edfc;
  --home-card-green-bg: #ecf8ed;
  --home-card-blue-bg: #e8f4ff;

  --step-line: var(--gray-200);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: clamp(15px, 0.35vw + 14px, 20px);
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: var(--font);
  background: var(--gray-50);
  color: var(--text);
  -webkit-tap-highlight-color: transparent;
}

body {
  overflow-x: hidden;
}

a {
  color: var(--blue-600);
}

/* ——— Shell web / TV ——— */
.app-shell {
  width: 100%;
  min-height: 100vh;
  padding: clamp(1rem, 2.5vw, 2.5rem) clamp(1rem, 4vw, 4rem) clamp(2rem, 4vw, 4rem);
  position: relative;
}

.layout-page {
  width: 100%;
  max-width: min(1600px, 100%);
  margin: 0 auto;
}

/* ========== Tela inicial (layout do mock enviado) ========== */
.screen-home {
  font-family: var(--font-home);
  margin: calc(-1 * clamp(1rem, 2.5vw, 2.5rem)) calc(-1 * clamp(1rem, 4vw, 4rem))
    calc(-1 * clamp(2rem, 4vw, 4rem));
  width: 100vw;
  max-width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  min-height: 100vh;
  background: var(--white);
  display: flex;
  flex-direction: column;
}

.home-header {
  background: linear-gradient(90deg, var(--home-header-start) 0%, var(--home-header-end) 100%);
  padding: clamp(1rem, 2.8vw, 1.65rem) clamp(1rem, 4vw, 4rem);
  box-shadow: 0 4px 20px rgba(45, 27, 105, 0.35);
}

.home-header__inner {
  max-width: min(1600px, 100%);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand-logo {
  display: block;
  width: auto;
  height: auto;
  object-fit: contain;
}

.brand-logo--home {
  max-height: clamp(2.35rem, 5vw, 3.5rem);
  max-width: min(300px, 88vw);
}

.brand-logo--header {
  max-height: clamp(1.75rem, 3.5vw, 2.35rem);
  max-width: min(210px, 58vw);
}

.brand-logo--footnote {
  max-height: 1.5rem;
  max-width: 8.5rem;
  vertical-align: middle;
}

.home-footnote__brand {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
}

.home-footnote__brand .brand-logo--footnote {
  background: var(--purple-deep, #3d0f6e);
  border-radius: 8px;
  padding: 0.2rem 0.5rem;
}

.catalog-header__logo .brand-logo--header,
.home-header .brand-logo--home {
  mix-blend-mode: lighten;
}

.home-main {
  flex: 1;
  padding: clamp(1.5rem, 4vw, 3rem) clamp(1rem, 4vw, 4rem) clamp(2rem, 5vw, 4rem);
  max-width: min(1120px, 100%);
  margin: 0 auto;
  width: 100%;
}

.screen-home .home-main {
  padding-bottom: max(clamp(2.5rem, 5vw, 4rem), calc(5.25rem + env(safe-area-inset-bottom, 0px)));
}

.home-hero {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: center;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

@media (min-width: 960px) {
  .home-hero {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: clamp(2rem, 5vw, 4rem);
  }
}

.home-hero__title {
  margin: 0 0 clamp(0.75rem, 2vw, 1.25rem);
  font-size: clamp(1.5rem, 3.2vw, 2.35rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--home-navy);
}

.home-hero__subtitle {
  margin: 0;
  font-size: clamp(1rem, 1.75vw, 1.2rem);
  font-weight: 500;
  line-height: 1.5;
  color: var(--home-muted);
  max-width: 36ch;
}

.home-hero__visual {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2rem);
}

.home-face {
  flex: 0 0 auto;
}

.home-face__ring {
  position: relative;
  width: clamp(200px, 28vw, 340px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(106, 13, 173, 0.35);
  box-shadow: 0 12px 40px rgba(45, 27, 105, 0.12);
}

.home-face__ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-face__dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.55) 1.2px, transparent 1.5px);
  background-size: 12px 12px;
  opacity: 0.45;
  pointer-events: none;
  mix-blend-mode: soft-light;
}

.home-face__scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent,
    #7cffb6,
    var(--home-green-solid),
    #7cffb6,
    transparent
  );
  box-shadow: 0 0 16px rgba(50, 168, 50, 0.9);
  animation: homeScan 2.3s ease-in-out infinite;
  top: 38%;
}

@keyframes homeScan {
  0%,
  100% {
    top: 28%;
    opacity: 0.95;
  }
  50% {
    top: 52%;
    opacity: 1;
  }
}

.home-keypad {
  flex: 0 0 auto;
}

.home-keypad__shell {
  background: var(--white);
  border-radius: 20px;
  padding: clamp(0.85rem, 2vw, 1.15rem);
  box-shadow: 0 8px 32px rgba(26, 32, 44, 0.12), 0 0 0 1px rgba(106, 13, 173, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.home-keypad__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  width: clamp(140px, 18vw, 180px);
}

.home-keypad__grid span {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  font-size: clamp(0.85rem, 1.4vw, 1rem);
  font-weight: 700;
  color: var(--home-navy);
  background: linear-gradient(180deg, #fff, #f1f5f9);
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.home-keypad__lock {
  color: var(--home-purple-solid);
  display: grid;
  place-items: center;
  padding: 6px;
  border-radius: 50%;
  background: var(--home-card-purple-bg);
  border: 1px solid rgba(106, 13, 173, 0.15);
}

.home-actions {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2.5vw, 1.35rem);
}

.action-card {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 1.75rem);
  padding: clamp(1.1rem, 2.5vw, 1.5rem) clamp(1.15rem, 3vw, 2rem);
  border: 1px solid rgba(26, 32, 44, 0.06);
  border-radius: var(--radius-lg);
  cursor: pointer;
  text-align: left;
  font-family: var(--font-home);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 12px rgba(26, 32, 44, 0.06);
}

.action-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26, 32, 44, 0.1);
}

.action-card:active {
  transform: translateY(0);
}

.action-card--purple {
  background: var(--home-card-purple-bg);
}

.action-card--green {
  background: var(--home-card-green-bg);
}

.action-card--blue {
  background: var(--home-card-blue-bg);
}

.action-card__icon-wrap {
  flex-shrink: 0;
  width: clamp(52px, 6vw, 64px);
  height: clamp(52px, 6vw, 64px);
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 2px solid currentColor;
  background: var(--white);
}

.action-card--purple .action-card__icon-wrap {
  color: var(--home-purple-solid);
  border-color: rgba(106, 13, 173, 0.35);
}

.action-card--green .action-card__icon-wrap {
  color: var(--home-green-solid);
  border-color: rgba(50, 168, 50, 0.4);
}

.action-card--blue .action-card__icon-wrap {
  color: var(--home-blue-solid);
  border-color: rgba(0, 123, 255, 0.35);
}

.action-card__icon {
  width: clamp(24px, 3vw, 30px);
  height: clamp(24px, 3vw, 30px);
}

.action-card__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.action-card__title {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 800;
  color: var(--home-navy);
  line-height: 1.25;
}

.action-card__desc {
  font-size: clamp(0.88rem, 1.45vw, 1.05rem);
  font-weight: 500;
  color: var(--home-muted);
  line-height: 1.45;
}

.action-card__go {
  flex-shrink: 0;
  width: clamp(48px, 5.5vw, 56px);
  height: clamp(48px, 5.5vw, 56px);
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
}

.action-card__go::after {
  content: "";
  width: 0.45em;
  height: 0.45em;
  border-right: 3px solid #fff;
  border-top: 3px solid #fff;
  transform: rotate(45deg) translate(-5%, 0);
}

.action-card--purple .action-card__go {
  background: var(--home-purple-solid);
  box-shadow: 0 4px 16px rgba(106, 13, 173, 0.45);
}

.action-card--green .action-card__go {
  background: var(--home-green-solid);
  box-shadow: 0 4px 16px rgba(50, 168, 50, 0.45);
}

.action-card--blue .action-card__go {
  background: var(--home-blue-solid);
  box-shadow: 0 4px 16px rgba(0, 123, 255, 0.45);
}

.home-footnote {
  margin: clamp(2rem, 4vw, 3rem) 0 0;
  text-align: center;
  font-size: clamp(0.85rem, 1.3vw, 1rem);
  color: var(--home-muted);
}

.home-footnote a {
  color: var(--home-blue-solid);
  font-weight: 600;
}

.home-fab-ai {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right, 0px));
  bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px 14px 16px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 800;
  font-size: clamp(0.88rem, 1.4vw, 1rem);
  color: #fff;
  background: linear-gradient(135deg, #5b0fa8 0%, #2d1b69 100%);
  box-shadow: 0 8px 28px rgba(45, 27, 105, 0.45), 0 2px 8px rgba(0, 0, 0, 0.12);
  transition: transform 0.15s, filter 0.15s, box-shadow 0.15s;
}

.home-fab-ai:hover {
  filter: brightness(1.08);
  box-shadow: 0 10px 34px rgba(45, 27, 105, 0.52);
}

.home-fab-ai:active {
  transform: scale(0.97);
}

.home-fab-ai__icon {
  display: grid;
  place-items: center;
  color: #b9f6ca;
  flex-shrink: 0;
}

.home-fab-ai__text {
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.screen {
  display: none !important;
  animation: fadeIn 0.4s ease;
}

.screen.is-active {
  display: block !important;
  position: relative;
  z-index: 2;
}

.is-hidden {
  display: none !important;
}

.screen-home.is-active {
  display: flex !important;
  flex-direction: column;
}

.screen-product-volt.is-active {
  display: flex !important;
  flex-direction: column;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: clamp(1.25rem, 3vw, 2.5rem);
  border: 1px solid var(--gray-200);
}

.card--flat {
  box-shadow: var(--shadow-soft);
}

/* ——— Botões (mock: blocos largos, cantos arredondados) ——— */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: none;
  border-radius: var(--radius);
  padding: clamp(1rem, 2.2vw, 1.35rem) clamp(1.25rem, 3vw, 2rem);
  font-family: inherit;
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.2s ease, filter 0.2s;
  letter-spacing: 0.01em;
}

.btn:hover {
  filter: brightness(1.03);
}

.btn:active {
  transform: scale(0.99);
}

.btn--purple {
  background: linear-gradient(180deg, var(--purple-700) 0%, var(--purple-900) 100%);
  color: #fff;
  box-shadow: var(--shadow-btn-purple);
}

.btn--green {
  background: linear-gradient(180deg, var(--green-500) 0%, var(--green-600) 100%);
  color: #fff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.12);
  box-shadow: var(--shadow-btn-green);
}

.btn--blue {
  background: linear-gradient(180deg, var(--blue-500) 0%, var(--blue-700) 100%);
  color: #fff;
  box-shadow: 0 6px 20px rgba(33, 150, 243, 0.35);
}

.btn--ghost {
  background: var(--purple-50);
  color: var(--purple-800);
  border: 2px solid var(--purple-100);
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  filter: none;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.btn-row .btn {
  flex: 1;
  min-width: min(100%, 220px);
}

.greeting {
  text-align: center;
  font-size: clamp(1.2rem, 2.5vw, 1.85rem);
  font-weight: 800;
  margin: 0 0 clamp(1rem, 2vw, 1.5rem);
  line-height: 1.25;
  color: var(--text);
}

/* Linha de scan (tela de biometria) */
.scan-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--green-500) 20%,
    #b9ff00 50%,
    var(--green-500) 80%,
    transparent 100%
  );
  box-shadow: 0 0 20px var(--green-500), 0 0 40px rgba(0, 230, 118, 0.4);
  animation: scan 2.4s ease-in-out infinite;
  top: 38%;
}

@keyframes scan {
  0%,
  100% {
    top: 26%;
    opacity: 0.95;
  }
  50% {
    top: 52%;
    opacity: 1;
  }
}

.stack-gap {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1.1rem);
}

.muted {
  color: var(--muted);
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
}

/* Banner devolução: faixa superior clara com CTA secundário (mock) */
.banner-return {
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(1rem, 2.5vw, 1.5rem) clamp(1.25rem, 3vw, 2rem);
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid var(--purple-100);
  border-left: 6px solid var(--purple-700);
  box-shadow: var(--shadow-soft);
}

.banner-return strong {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--purple-900);
}

.banner-return .btn {
  width: auto;
  min-width: 200px;
}

.categories {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.65rem, 1.5vw, 1rem);
  padding-bottom: 0.5rem;
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
}

.cat-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: clamp(0.65rem, 1.5vw, 1rem) clamp(1rem, 2vw, 1.35rem);
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 2px solid var(--gray-200);
  cursor: pointer;
  font-size: clamp(0.72rem, 1.2vw, 0.9rem);
  font-weight: 700;
  color: var(--muted);
  min-width: 88px;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  box-shadow: var(--shadow-soft);
}

.cat-chip:hover {
  border-color: #9575cd;
}

.cat-chip.is-selected {
  border-color: var(--purple-700);
  color: var(--purple-900);
  background: var(--purple-50);
}

.cat-chip span {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}

.section-title {
  font-size: clamp(1.15rem, 2.2vw, 1.75rem);
  font-weight: 800;
  margin: clamp(1rem, 2.5vw, 1.75rem) 0 clamp(0.85rem, 2vw, 1.25rem);
  color: var(--text);
}

/* Grade de produtos responsiva (TV: mais colunas) */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr));
  gap: clamp(0.85rem, 2vw, 1.5rem);
}

@media (min-width: 1200px) {
  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  }
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}

.product-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.product-card img {
  width: 100%;
  height: clamp(120px, 16vw, 200px);
  object-fit: cover;
}

.product-card__body {
  padding: clamp(0.85rem, 2vw, 1.15rem);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-card__name {
  font-size: clamp(0.88rem, 1.4vw, 1.05rem);
  font-weight: 800;
  line-height: 1.3;
  min-height: 2.6em;
  color: var(--text);
}

.product-card__price {
  font-size: clamp(0.82rem, 1.3vw, 1rem);
  color: var(--muted);
  font-weight: 600;
}

.product-card__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.add-btn {
  width: clamp(40px, 4.5vw, 48px);
  height: clamp(40px, 4.5vw, 48px);
  border-radius: 12px;
  border: none;
  background: linear-gradient(180deg, var(--purple-700), var(--purple-900));
  color: #fff;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 700;
  cursor: pointer;
  line-height: 1;
  box-shadow: 0 4px 12px rgba(94, 53, 177, 0.3);
}

.add-btn:hover {
  filter: brightness(1.08);
}

.cart-bar {
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  padding: clamp(1.1rem, 2.5vw, 1.75rem) clamp(1.25rem, 3vw, 2rem);
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cart-bar .btn {
  width: auto;
  min-width: min(100%, 280px);
  flex: 1 1 280px;
}

.cart-bar__total {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-weight: 800;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
}

.cart-bar__total span:last-child {
  color: var(--purple-900);
  font-size: clamp(1.25rem, 2.2vw, 1.85rem);
}

/* Detalhe produto: duas colunas */
.layout-product {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2.5rem);
}

@media (min-width: 960px) {
  .layout-product {
    grid-template-columns: minmax(280px, 1fr) minmax(0, 1.2fr);
    align-items: start;
  }
}

.product-hero-img {
  width: 100%;
  border-radius: var(--radius);
  max-height: min(480px, 50vh);
  object-fit: cover;
  border: 1px solid var(--gray-200);
}

.voltage-toggle {
  display: flex;
  gap: clamp(0.75rem, 2vw, 1rem);
}

.voltage-toggle button {
  flex: 1;
  padding: clamp(0.85rem, 2vw, 1.15rem);
  border-radius: var(--radius-sm);
  border: 2px solid var(--gray-200);
  background: var(--white);
  font-family: inherit;
  font-weight: 800;
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  cursor: pointer;
  color: var(--muted);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.voltage-toggle button.is-on {
  border-color: var(--green-600);
  background: var(--green-50);
  color: var(--green-700);
  box-shadow: 0 0 0 1px var(--green-500);
}

.instructions {
  display: grid;
  gap: clamp(0.65rem, 1.5vw, 1rem);
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.instruction-item {
  display: flex;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  align-items: flex-start;
  padding: clamp(0.85rem, 2vw, 1.15rem);
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  font-size: clamp(0.88rem, 1.4vw, 1.05rem);
  border: 1px solid var(--gray-200);
}

.instruction-item span {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  line-height: 1;
}

/* Cartão de orientação amarelo (mock) */
.warn-box {
  margin-top: clamp(1rem, 2.5vw, 1.75rem);
  padding: clamp(1rem, 2.5vw, 1.35rem);
  background: var(--warn-bg);
  border: 2px solid var(--warn-border);
  border-radius: var(--radius-sm);
  font-size: clamp(0.88rem, 1.4vw, 1.05rem);
  box-shadow: inset 0 0 0 1px rgba(255, 202, 40, 0.35);
}

.warn-box h4 {
  margin: 0 0 10px;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-weight: 800;
  color: var(--warn-title);
}

/* Stepper 3 passos (contrato / pagamento / confirmação) */
.progress {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding: 0 clamp(0.5rem, 2vw, 1rem);
}

.progress::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 12%;
  right: 12%;
  height: 3px;
  background: var(--step-line);
  border-radius: 2px;
  z-index: 0;
}

.progress-step {
  flex: 1;
  text-align: center;
  font-size: clamp(0.65rem, 1.1vw, 0.8rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  position: relative;
  z-index: 1;
  padding-top: 0;
}

.progress-step::before {
  content: "";
  display: block;
  width: clamp(14px, 2vw, 18px);
  height: clamp(14px, 2vw, 18px);
  margin: 0 auto 10px;
  border-radius: 50%;
  background: var(--gray-200);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--gray-200);
}

.progress-step.is-done::before {
  background: var(--green-600);
  box-shadow: 0 0 0 2px var(--green-50);
}

.progress-step.is-active::before {
  background: var(--purple-700);
  box-shadow: 0 0 0 3px var(--purple-100);
  transform: scale(1.15);
}

.progress-step.is-active {
  color: var(--purple-900);
}

.progress-step.is-done {
  color: var(--green-700);
}

.contract-scroll {
  max-height: min(320px, 40vh);
  overflow-y: auto;
  font-size: clamp(0.8rem, 1.2vw, 0.95rem);
  line-height: 1.55;
  color: var(--muted);
  padding: clamp(1rem, 2vw, 1.25rem);
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  border: 1px solid var(--gray-200);
}

.sig-label {
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--purple-900);
}

#signature-pad {
  width: 100%;
  height: clamp(180px, 32vh, 320px);
  border: 2px dashed #d1c4e9;
  border-radius: var(--radius-sm);
  touch-action: none;
  cursor: crosshair;
  background: var(--white);
}

.sig-actions {
  margin-top: 10px;
  display: flex;
  justify-content: flex-end;
}

.sig-actions button {
  background: none;
  border: none;
  color: var(--purple-700);
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  font-size: clamp(0.9rem, 1.3vw, 1rem);
}

/* Pagamento: em telas largas, PIX + resumo lado a lado */
.layout-payment {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2rem);
}

@media (min-width: 960px) {
  .layout-payment {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.layout-payment.is-pix-hidden #payment-pix-area {
  display: none;
}

@media (min-width: 960px) {
  .layout-payment.is-pix-hidden {
    grid-template-columns: 1fr 1fr;
  }
}

.payment-nonpix-msg {
  display: none;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--gray-50);
  border-radius: var(--radius);
  border: 2px dashed var(--gray-200);
  text-align: center;
  font-weight: 700;
  color: var(--muted);
}

.layout-payment.is-pix-hidden .payment-nonpix-msg {
  display: block;
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.65rem, 1.5vw, 1rem);
  justify-content: center;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.pm {
  padding: clamp(0.75rem, 2vw, 1.1rem) clamp(1rem, 2.5vw, 1.5rem);
  border-radius: var(--radius-sm);
  border: 2px solid var(--gray-200);
  background: var(--white);
  cursor: pointer;
  font-size: clamp(0.78rem, 1.3vw, 0.95rem);
  font-weight: 800;
  color: var(--muted);
  transition: border-color 0.2s, background 0.2s;
}

.pm:hover {
  border-color: #d1c4e9;
}

.pm.is-selected {
  border-color: var(--green-600);
  background: var(--green-50);
  color: var(--green-700);
  box-shadow: 0 0 0 1px var(--green-500);
}

.payment-step__intro {
  text-align: center;
  color: var(--muted);
  margin: 0 0 clamp(1rem, 2vw, 1.5rem);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.payment-timing-grid {
  display: grid;
  gap: clamp(0.85rem, 2vw, 1.25rem);
  max-width: 920px;
  margin: 0 auto;
}

@media (min-width: 720px) {
  .payment-timing-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.payment-choice {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 0.5rem;
  padding: clamp(1.1rem, 2.5vw, 1.5rem);
  border-radius: var(--radius);
  border: 2px solid var(--gray-200);
  background: var(--white);
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.payment-choice:hover {
  border-color: #d1c4e9;
  box-shadow: 0 4px 20px rgba(106, 13, 173, 0.08);
}

.payment-choice--now {
  border-color: rgba(0, 200, 83, 0.35);
}

.payment-choice--later {
  border-color: rgba(106, 13, 173, 0.25);
}

.payment-choice__title {
  font-weight: 800;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--purple-900);
}

.payment-choice__desc {
  font-size: clamp(0.82rem, 1.3vw, 0.95rem);
  color: var(--muted);
  line-height: 1.45;
}

.payment-subtitle {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-weight: 800;
  color: var(--purple-800);
  margin: clamp(1rem, 2vw, 1.5rem) 0 clamp(0.65rem, 1.5vw, 1rem);
  text-align: center;
}

.payment-address-card {
  margin-bottom: clamp(0.5rem, 1.5vw, 1rem);
  padding: clamp(1rem, 2.2vw, 1.35rem);
  background: linear-gradient(135deg, var(--gray-50) 0%, #f3e8ff 100%);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  text-align: left;
}

.payment-address-card__label {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--purple-700);
  margin-bottom: 0.5rem;
}

.payment-address-card__name {
  font-weight: 800;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--purple-900);
  margin-bottom: 0.35rem;
}

.payment-address-card__addr {
  font-size: clamp(0.88rem, 1.35vw, 1rem);
  color: var(--muted);
  line-height: 1.45;
}

.pix-box {
  text-align: center;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 0;
  border: 1px solid var(--gray-200);
}

.pix-box canvas {
  margin: 0 auto clamp(1rem, 2vw, 1.25rem);
  display: block;
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  max-width: 100%;
  height: auto;
}

#return-qr-canvas {
  width: min(280px, 100%);
  height: auto;
  aspect-ratio: 1;
}

.pix-status {
  font-weight: 800;
  color: var(--purple-800);
  margin-bottom: 8px;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}

.timer {
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  color: var(--green-700);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  letter-spacing: 0.05em;
}

.order-summary {
  display: flex;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: center;
  padding: clamp(1rem, 2.5vw, 1.35rem);
  background: var(--purple-50);
  border-radius: var(--radius);
  margin-top: 0;
  border: 1px solid var(--purple-100);
}

.order-summary img {
  width: clamp(72px, 10vw, 100px);
  height: clamp(72px, 10vw, 100px);
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid var(--white);
  box-shadow: var(--shadow-soft);
}

.layout-confirm {
  max-width: 900px;
  margin: 0 auto;
}

.success-icon {
  width: clamp(80px, 12vw, 110px);
  height: clamp(80px, 12vw, 110px);
  margin: 0 auto clamp(1rem, 2vw, 1.5rem);
  border-radius: 50%;
  background: linear-gradient(145deg, var(--green-500), var(--green-700));
  display: grid;
  place-items: center;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  box-shadow: var(--shadow-btn-green);
}

/* IA */
.layout-ai {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2rem);
}

@media (min-width: 1100px) {
  .layout-ai {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }
}

.ai-preview {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-200);
}

.ai-preview img {
  width: 100%;
  display: block;
  max-height: min(400px, 45vh);
  object-fit: cover;
}

.ai-box {
  position: absolute;
  left: 10%;
  top: 22%;
  width: 58%;
  height: 48%;
  border: 4px solid var(--purple-700);
  border-radius: 10px;
  box-shadow: 0 0 0 9999px rgba(49, 27, 146, 0.12) inset;
}

.ai-tag {
  position: absolute;
  left: 12px;
  top: -14px;
  background: linear-gradient(180deg, var(--purple-700), var(--purple-900));
  color: #fff;
  font-size: clamp(0.7rem, 1.1vw, 0.85rem);
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 8px;
  letter-spacing: 0.04em;
}

.video-thumb {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin: clamp(1rem, 2vw, 1.5rem) 0;
  border: 1px solid var(--gray-200);
}

.video-thumb img {
  width: 100%;
  height: clamp(140px, 22vh, 260px);
  object-fit: cover;
}

.video-thumb::after {
  content: "▶";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: #fff;
  background: rgba(49, 27, 146, 0.35);
}

.upsell-list {
  display: flex;
  flex-direction: column;
  gap: clamp(0.65rem, 1.5vw, 1rem);
}

.upsell-item {
  display: flex;
  align-items: center;
  gap: clamp(0.85rem, 2vw, 1.25rem);
  padding: clamp(0.85rem, 2vw, 1.1rem);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
}

.upsell-item img {
  width: clamp(52px, 6vw, 64px);
  height: clamp(52px, 6vw, 64px);
  object-fit: cover;
  border-radius: 10px;
}

.upsell-item button {
  margin-left: auto;
  padding: clamp(0.5rem, 1.2vw, 0.65rem) clamp(0.85rem, 2vw, 1.15rem);
  border-radius: 10px;
  border: none;
  background: linear-gradient(180deg, var(--purple-700), var(--purple-900));
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  font-size: clamp(0.78rem, 1.2vw, 0.9rem);
}

.upsell-item.is-added button {
  background: linear-gradient(180deg, var(--green-500), var(--green-600));
}

.toast {
  position: fixed;
  left: 50%;
  bottom: clamp(80px, 12vh, 140px);
  transform: translateX(-50%) translateY(12px);
  background: linear-gradient(180deg, var(--green-500), var(--green-600));
  color: #fff;
  padding: clamp(0.85rem, 2vw, 1.15rem) clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 999px;
  font-weight: 800;
  font-size: clamp(0.95rem, 1.6vw, 1.2rem);
  box-shadow: var(--shadow-btn-green);
  z-index: 100;
  max-width: min(90vw, 520px);
  text-align: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.28s ease,
    visibility 0.28s ease,
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.toast.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: var(--purple-800);
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  padding: 0 0 clamp(0.85rem, 2vw, 1.25rem);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
}

.back-link:hover {
  text-decoration: underline;
}

/* Resumo devolução simulada (tela após biometria de devolver) */
.return-summary-card {
  padding: clamp(0.9rem, 2.2vw, 1.2rem);
  background: linear-gradient(145deg, #fff8f0 0%, #fff 55%, #f3e8ff 100%);
  border-radius: 16px;
  border: 2px solid rgba(234, 88, 12, 0.35);
  box-shadow: 0 6px 24px rgba(26, 32, 44, 0.08);
  text-align: left;
}

.return-summary-head {
  display: flex;
  gap: clamp(0.75rem, 2vw, 1rem);
  align-items: center;
  margin-bottom: clamp(0.65rem, 1.5vw, 0.9rem);
}

.return-summary-img {
  width: clamp(64px, 16vw, 88px);
  height: clamp(64px, 16vw, 88px);
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.95);
  flex-shrink: 0;
}

.return-summary-tag {
  margin: 0 0 4px;
  font-size: clamp(0.68rem, 1.1vw, 0.78rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #c2410c;
}

.return-summary-equipment {
  margin: 0;
  font-size: clamp(0.95rem, 1.65vw, 1.1rem);
  font-weight: 800;
  color: var(--purple-900);
  line-height: 1.3;
}

.return-summary-list {
  margin: 0;
  padding-left: 1.15rem;
  font-size: clamp(0.85rem, 1.4vw, 0.98rem);
  color: var(--muted);
  line-height: 1.55;
}

.return-summary-list li {
  margin-bottom: 0.45rem;
}

.return-summary-list li:last-child {
  margin-bottom: 0;
}

.return-summary-list strong {
  color: var(--purple-900);
}

.return-summary-total {
  margin-top: clamp(1rem, 2vw, 1.35rem);
  padding-top: clamp(0.85rem, 1.8vw, 1.1rem);
  border-top: 1px dashed rgba(113, 128, 150, 0.45);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
}

.return-summary-total__lbl {
  font-weight: 800;
  color: var(--purple-900);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
}

.return-summary-total__val {
  font-weight: 800;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--green-700);
}

.return-summary-payment {
  margin-top: clamp(1.25rem, 2.5vw, 1.75rem);
  padding-top: clamp(1rem, 2vw, 1.25rem);
  border-top: 1px solid var(--gray-200);
}

.layout-return-payment:not(.is-pix-hidden) {
  grid-template-columns: 1fr;
}

.layout-return-payment:not(.is-pix-hidden) #return-payment-pix-area {
  display: block;
}

.layout-return-payment.is-pix-hidden #return-payment-pix-area {
  display: none;
}

.layout-return-payment.is-pix-hidden .payment-nonpix-msg {
  display: block;
}

.layout-return-payment:not(.is-pix-hidden) .payment-nonpix-msg {
  display: none;
}

.layout-return-payment.is-pix-hidden .return-payment-side {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(160px, 28vw, 220px);
}

.layout-return-payment:not(.is-pix-hidden) .return-payment-side {
  display: none;
}

.return-payment-card-msg {
  width: 100%;
  text-align: center;
  font-weight: 700;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  background: var(--gray-50);
  border-radius: var(--radius);
  border: 2px dashed var(--gray-200);
  line-height: 1.45;
}

/* Biometria: rosto grande + HUD (inspirado no mock) */
.bio-stage {
  position: relative;
  max-width: min(720px, 100%);
  margin: 0 auto;
}

.bio-face {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid var(--purple-700);
  box-shadow: 0 16px 48px rgba(94, 53, 177, 0.25);
}

.bio-face img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  background: linear-gradient(180deg, #e8f4fc 0%, #f5f0fa 100%);
}

.bio-hud {
  pointer-events: none;
  position: absolute;
  inset: clamp(-12px, -1.5vw, -20px);
  border-radius: 50%;
}

.bio-hud__corner {
  position: absolute;
  width: clamp(36px, 5vw, 56px);
  height: clamp(36px, 5vw, 56px);
  border: 4px solid var(--green-500);
  opacity: 0.85;
}

.bio-hud__corner--tl {
  top: 8%;
  left: 8%;
  border-right: none;
  border-bottom: none;
  border-radius: 8px 0 0 0;
}

.bio-hud__corner--tr {
  top: 8%;
  right: 8%;
  border-left: none;
  border-bottom: none;
  border-radius: 0 8px 0 0;
}

.bio-hud__corner--bl {
  bottom: 8%;
  left: 8%;
  border-right: none;
  border-top: none;
  border-radius: 0 0 0 8px;
}

.bio-hud__corner--br {
  bottom: 8%;
  right: 8%;
  border-left: none;
  border-top: none;
  border-radius: 0 0 8px 0;
}

.bio-hud__bar {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 72%;
  height: 6px;
  background: var(--gray-200);
  border-radius: 4px;
  overflow: hidden;
}

.bio-hud__bar--top {
  top: 4%;
}

.bio-hud__bar--bottom {
  bottom: 4%;
}

.bio-hud__bar-fill {
  height: 100%;
  width: 65%;
  background: linear-gradient(90deg, var(--purple-600), var(--green-500));
  border-radius: 4px;
  animation: bioBar 2s ease-in-out infinite;
}

@keyframes bioBar {
  0%,
  100% {
    width: 40%;
  }
  50% {
    width: 92%;
  }
}

.biometric-status {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: clamp(1.25rem, 3vw, 2rem);
}

.status-pill {
  font-size: clamp(0.72rem, 1.2vw, 0.88rem);
  font-weight: 800;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--green-50);
  color: var(--green-700);
  border: 1px solid rgba(0, 200, 83, 0.35);
}

.status-pill--pending {
  background: #fff8e1;
  color: #e65100;
  border-color: #ffe082;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(33, 33, 33, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 50;
  padding: clamp(1rem, 3vw, 2rem);
}

.modal-overlay.is-open {
  display: flex;
}

.modal-overlay--video {
  z-index: 120;
  align-items: center;
  justify-content: center;
  padding: clamp(0.5rem, 1.5vw, 1rem);
}

.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  max-width: min(480px, 100%);
  width: 100%;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--gray-200);
}

.modal h3 {
  margin: 0 0 1rem;
  color: var(--purple-900);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
}

.modal input {
  width: 100%;
  padding: clamp(0.85rem, 2vw, 1.1rem);
  margin-bottom: 12px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--gray-200);
  font-family: inherit;
  font-size: clamp(1rem, 1.5vw, 1.1rem);
}

.modal.modal--video {
  position: relative;
  width: min(1600px, 96vw);
  max-width: none;
  padding: 0;
  overflow: hidden;
  background: #0f0f0f;
  border: none;
  border-radius: 20px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.modal-video__close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 5;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.15s, transform 0.12s;
}

.modal-video__close:hover {
  background: rgba(0, 0, 0, 0.85);
}

.modal-video__close:active {
  transform: scale(0.95);
}

.modal-video__frame {
  aspect-ratio: 16 / 9;
  background: #000;
}

.modal-video__frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 2vw, 1rem);
  margin-top: clamp(1.25rem, 2.5vw, 2rem);
  justify-content: center;
}

.footer-links .btn {
  flex: 1;
  min-width: min(100%, 200px);
  max-width: 320px;
}

.text-center {
  text-align: center;
}

.mt-0 {
  margin-top: 0;
}

.pickup-card {
  margin-top: clamp(1.25rem, 2.5vw, 2rem);
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  background: var(--gray-50);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  text-align: left;
}

.pickup-card strong {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--purple-900);
}

#pickup-address {
  white-space: pre-line;
}

/* ========== Catálogo de produtos (mock lista) ========== */
.screen-catalog {
  --cat-purple: #6a0dad;
  --cat-purple-soft: #e8dff5;
  --cat-green: #32a832;
  --cat-navy: #1a202c;
  --cat-muted: #718096;
  --cat-bg: #f0f0f5;
  font-family: var(--font-home), var(--font);
  background: var(--cat-bg);
  min-height: 100vh;
  padding-bottom: clamp(100px, 18vh, 140px);
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.catalog-header {
  background: linear-gradient(180deg, #5b0fa8 0%, #3d0d7a 55%, #2d1b69 100%);
  padding: clamp(0.65rem, 1.5vw, 0.9rem) clamp(1rem, 3vw, 1.5rem);
  box-shadow: 0 4px 20px rgba(45, 27, 105, 0.35);
}

.catalog-header__inner {
  max-width: min(1600px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.catalog-header__back {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s;
}

.catalog-header__back:hover {
  background: rgba(255, 255, 255, 0.22);
}

.catalog-header__logo {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.catalog-header__spacer {
  width: 44px;
  height: 44px;
}

.catalog-body {
  padding: clamp(1rem, 2.5vw, 1.75rem) 0 clamp(1rem, 2vw, 1.5rem);
  max-width: 100%;
  overflow-x: hidden;
}

.catalog-body__inner {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 3vw, 2rem);
  max-width: 100%;
  overflow-x: hidden;
}

.catalog-devolu-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 1.75rem);
  background: #fff;
  border-radius: 20px;
  padding: clamp(1rem, 2.5vw, 1.5rem) clamp(1.15rem, 3vw, 2rem);
  border: 1px solid rgba(26, 32, 44, 0.06);
  box-shadow: 0 2px 16px rgba(26, 32, 44, 0.06);
}

@media (max-width: 720px) {
  .catalog-devolu-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .catalog-devolu-card__icon {
    margin-inline: auto;
  }
  .catalog-devolu-card__photo {
    order: -1;
    justify-self: center;
  }
}

.catalog-devolu-card__icon {
  width: clamp(56px, 8vw, 72px);
  height: clamp(56px, 8vw, 72px);
  border-radius: 50%;
  background: var(--cat-purple-soft);
  color: var(--cat-purple);
  display: grid;
  place-items: center;
  border: 2px solid rgba(106, 13, 173, 0.2);
}

.catalog-devolu-card__title {
  margin: 0 0 6px;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 800;
  color: var(--cat-navy);
}

.catalog-devolu-card__subtitle {
  margin: 0 0 clamp(0.85rem, 2vw, 1.15rem);
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  color: var(--cat-muted);
  font-weight: 500;
}

.catalog-devolu-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border: none;
  border-radius: 12px;
  background: var(--cat-purple);
  color: #fff;
  font-family: inherit;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(106, 13, 173, 0.35);
  transition: filter 0.15s, transform 0.12s;
}

.catalog-devolu-card__btn:hover {
  filter: brightness(1.06);
}

.catalog-devolu-card__btn:active {
  transform: scale(0.98);
}

.catalog-devolu-card__btn-arrow {
  width: 0.35em;
  height: 0.35em;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  transform: rotate(45deg);
}

.catalog-devolu-card__photo {
  width: clamp(120px, 22vw, 200px);
  height: clamp(120px, 22vw, 200px);
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.catalog-devolu-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalog-categories-wrap {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.catalog-categories {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 clamp(0.5rem, 2vw, 1rem) 6px;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: clamp(0.5rem, 2vw, 1rem);
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  touch-action: pan-x;
}

.cat-tile {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: clamp(72px, 9.5vw, 88px);
  padding: 0;
  padding-bottom: 10px;
  background: #fff;
  border-radius: 14px;
  cursor: pointer;
  text-align: center;
  font-family: inherit;
  box-shadow: 0 2px 10px rgba(26, 32, 44, 0.06);
  border: 2px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
  position: relative;
}

.cat-tile:hover {
  box-shadow: 0 4px 16px rgba(26, 32, 44, 0.1);
}

.cat-tile.is-active {
  border-color: rgba(106, 13, 173, 0.35);
  box-shadow: 0 4px 16px rgba(106, 13, 173, 0.12);
}

.cat-tile.is-active::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 4px;
  height: 4px;
  border-radius: 4px;
  background: var(--cat-purple);
}

.cat-tile__img {
  height: clamp(40px, 5.5vw, 48px);
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cat-tile__img img {
  display: block;
  max-width: 88%;
  max-height: 88%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.cat-tile__label {
  display: block;
  padding: 5px 4px 8px;
  font-size: clamp(0.6rem, 1vw, 0.72rem);
  font-weight: 700;
  color: var(--cat-navy);
  line-height: 1.2;
}

.catalog-featured-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.catalog-featured-head__title {
  margin: 0;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight: 800;
  color: var(--cat-navy);
}

.catalog-featured-head__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: none;
  background: none;
  padding: 8px 4px;
  font-family: inherit;
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  font-weight: 700;
  color: var(--cat-purple);
  cursor: pointer;
}

.catalog-featured-head__link:hover {
  text-decoration: underline;
}

.catalog-featured-head__link-arrow {
  width: 0.32em;
  height: 0.32em;
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg);
}

.catalog-product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(12px, 2.5vw, 18px);
}

@media (min-width: 1100px) {
  .catalog-product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.catalog-product-card {
  position: relative;
  cursor: pointer;
  background: #fff;
  border-radius: 18px;
  padding: clamp(12px, 2vw, 16px);
  border: 1px solid rgba(26, 32, 44, 0.06);
  box-shadow: 0 2px 12px rgba(26, 32, 44, 0.05);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: box-shadow 0.2s;
}

.catalog-product-card:focus-visible {
  outline: 3px solid rgba(106, 13, 173, 0.45);
  outline-offset: 2px;
}

.catalog-product-card:hover {
  box-shadow: 0 6px 20px rgba(26, 32, 44, 0.08);
}

.catalog-product-card__hammer {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--cat-purple);
  background: var(--cat-purple-soft);
  border: 1px solid rgba(106, 13, 173, 0.2);
  z-index: 1;
}

.catalog-product-card__hammer svg {
  width: 18px;
  height: 18px;
}

.catalog-product-card__img-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(120px, 22vw, 160px);
  padding: 8px 0 12px;
}

.catalog-product-card__img-wrap img {
  max-width: 100%;
  max-height: clamp(110px, 20vw, 150px);
  object-fit: contain;
}

.catalog-product-card__name {
  font-size: clamp(0.88rem, 1.45vw, 1.02rem);
  font-weight: 800;
  color: var(--cat-navy);
  line-height: 1.3;
  margin-bottom: 8px;
  padding-right: 28px;
}

.catalog-product-card__price-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 12px;
}

.catalog-product-card__price {
  font-size: clamp(1rem, 1.7vw, 1.15rem);
  font-weight: 800;
  color: var(--cat-purple);
}

.catalog-product-card__per {
  font-size: clamp(0.72rem, 1.2vw, 0.82rem);
  color: var(--cat-muted);
  font-weight: 500;
}

.catalog-product-card__footer {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  margin-top: auto;
}

.catalog-product-card__add {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--cat-purple);
  color: #fff;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(106, 13, 173, 0.35);
  transition: transform 0.12s, filter 0.15s;
}

.catalog-product-card__add:hover {
  filter: brightness(1.08);
}

.catalog-product-card__add:active {
  transform: scale(0.95);
}

.catalog-cart-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  background: #fff;
  border-radius: 22px 22px 0 0;
  box-shadow: 0 -6px 32px rgba(26, 32, 44, 0.1);
  padding: clamp(12px, 2.5vw, 16px) clamp(1rem, 4vw, 2rem) clamp(14px, 3vw, 20px);
}

.catalog-cart-bar__inner {
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 20px);
  max-width: min(1600px, 100%);
  margin: 0 auto;
}

.catalog-cart-bar__bag-wrap {
  position: relative;
  flex-shrink: 0;
}

.catalog-cart-bar__bag {
  width: clamp(48px, 6vw, 56px);
  height: clamp(48px, 6vw, 56px);
  border-radius: 12px;
  background: var(--cat-purple);
  color: #fff;
  display: grid;
  place-items: center;
}

.catalog-cart-bar__badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--cat-green);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  border: 2px solid #fff;
}

.catalog-cart-bar__totals {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.catalog-cart-bar__lbl {
  font-size: clamp(0.75rem, 1.2vw, 0.85rem);
  color: var(--cat-muted);
  font-weight: 600;
}

.catalog-cart-bar__val {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 800;
  color: var(--cat-navy);
}

.catalog-cart-bar__sub {
  font-size: clamp(0.72rem, 1.15vw, 0.8rem);
  color: var(--cat-muted);
  font-weight: 500;
}

.catalog-cart-bar__cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px clamp(16px, 3vw, 28px);
  border: none;
  border-radius: 14px;
  background: var(--cat-green);
  color: #fff;
  font-family: inherit;
  font-size: clamp(0.88rem, 1.5vw, 1.05rem);
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(50, 168, 50, 0.4);
  transition: filter 0.15s, transform 0.12s;
  max-width: min(100%, 340px);
}

.catalog-cart-bar__cta:hover:not(:disabled) {
  filter: brightness(1.05);
}

.catalog-cart-bar__cta:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
}

.catalog-cart-bar__cta-text {
  text-align: left;
  line-height: 1.25;
}

.catalog-cart-bar__cta-arrow {
  width: 0.4em;
  height: 0.4em;
  border-right: 3px solid #fff;
  border-top: 3px solid #fff;
  transform: rotate(45deg);
  flex-shrink: 0;
}

@media (max-width: 560px) {
  .catalog-cart-bar__inner {
    flex-wrap: wrap;
  }
  .catalog-cart-bar__cta {
    width: 100%;
    max-width: none;
    justify-content: center;
  }
}

/* ========== Tela produto: voltagem + instruções (mock mobile) ========== */
.screen-product-volt {
  --vp-purple: #5b0fa8;
  --vp-purple-deep: #2d1b69;
  --vp-green: #32a832;
  --vp-green-soft: #e8f8e9;
  --vp-navy: #1a202c;
  --vp-muted: #718096;
  --vp-bg: #f0f0f5;
  background: var(--vp-bg);
  min-height: 100vh;
  max-width: 100%;
  overflow-x: hidden;
}

.volt-product-header.catalog-header {
  flex-shrink: 0;
}

.volt-body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: clamp(96px, 20vh, 120px);
}

.volt-body__inner {
  padding-top: clamp(0.75rem, 2vw, 1.25rem);
  padding-bottom: clamp(1rem, 3vw, 2rem);
}

.volt-page-title {
  margin: 0 0 clamp(1rem, 2.5vw, 1.5rem);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 800;
  color: var(--vp-navy);
  line-height: 1.3;
}

.volt-product-card {
  display: flex;
  gap: clamp(1rem, 3vw, 1.75rem);
  align-items: stretch;
  background: #fff;
  border-radius: 20px;
  padding: clamp(1rem, 2.5vw, 1.35rem);
  box-shadow: 0 4px 20px rgba(26, 32, 44, 0.08);
  border: 1px solid rgba(26, 32, 44, 0.06);
  position: relative;
}

.volt-product-card__media {
  flex: 0 0 clamp(120px, 32vw, 200px);
  border-radius: 16px;
  overflow: hidden;
  background: var(--gray-100);
  align-self: center;
}

.volt-product-card__img {
  width: 100%;
  height: 100%;
  min-height: clamp(120px, 28vw, 180px);
  object-fit: contain;
  display: block;
}

.volt-product-card__main {
  flex: 1;
  min-width: 0;
  position: relative;
  padding-right: 36px;
}

.volt-product-card__name {
  margin: 0 0 10px;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 800;
  color: var(--vp-navy);
  line-height: 1.25;
}

.volt-product-card__daily {
  margin: 0;
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  font-weight: 600;
  color: var(--vp-muted);
}

.volt-product-card__daily-val {
  color: var(--vp-green);
  font-weight: 800;
}

.volt-product-card__tools {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 36px;
  height: 36px;
  color: var(--vp-purple);
  opacity: 0.85;
}

.volt-product-card__tools svg {
  width: 100%;
  height: 100%;
}

.volt-block-title {
  margin: clamp(1.35rem, 3vw, 1.75rem) 0 12px;
  font-size: clamp(0.92rem, 1.6vw, 1.05rem);
  font-weight: 700;
  color: var(--vp-navy);
}

.volt-block-title--gap {
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.volt-voltage-row {
  display: flex;
  gap: 12px;
}

.volt-rental-days-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.volt-rental-day-btn {
  flex: 1 1 calc(20% - 10px);
  min-width: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 12px 10px;
  border-radius: 14px;
  border: 2px solid #e2e8f0;
  background: #f7fafc;
  font-family: inherit;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s, box-shadow 0.2s;
}

.volt-rental-day-btn__num {
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 800;
  color: var(--vp-navy);
  line-height: 1.1;
}

.volt-rental-day-btn__lbl {
  font-size: clamp(0.68rem, 1.1vw, 0.78rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--vp-muted);
}

.volt-rental-day-btn.is-on {
  border-color: var(--vp-green);
  background: var(--vp-green-soft);
  box-shadow: 0 0 0 1px rgba(50, 168, 50, 0.25);
}

.volt-rental-day-btn.is-on .volt-rental-day-btn__num {
  color: var(--green-700);
}

.volt-rental-day-btn.is-on .volt-rental-day-btn__lbl {
  color: var(--green-700);
}

.volt-rental-day-btn--other .volt-rental-day-btn__num {
  font-size: clamp(0.88rem, 1.6vw, 1.05rem);
}

.volt-rental-custom {
  margin-top: 14px;
  padding: clamp(0.85rem, 2vw, 1.1rem);
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 2px 12px rgba(26, 32, 44, 0.05);
}

.volt-rental-custom__label {
  display: block;
  font-size: clamp(0.82rem, 1.3vw, 0.92rem);
  font-weight: 700;
  color: var(--vp-navy);
  margin-bottom: 8px;
}

.volt-rental-custom__field {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
}

.volt-rental-custom__input {
  width: clamp(100px, 28vw, 140px);
  padding: 12px 14px;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  font-family: inherit;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: var(--vp-navy);
}

.volt-rental-custom__input:focus {
  outline: none;
  border-color: var(--vp-green);
  box-shadow: 0 0 0 2px rgba(50, 168, 50, 0.2);
}

.volt-rental-custom__hint {
  font-size: clamp(0.75rem, 1.2vw, 0.85rem);
  color: var(--vp-muted);
  font-weight: 600;
}

.volt-voltage-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 2px solid #e2e8f0;
  background: #f7fafc;
  font-family: inherit;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 800;
  color: var(--vp-muted);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.volt-voltage-btn__ico {
  font-size: 1.25rem;
  opacity: 0.75;
}

.volt-voltage-btn.is-on {
  border-color: var(--vp-green);
  background: var(--vp-green-soft);
  color: var(--green-700);
  box-shadow: 0 0 0 1px rgba(50, 168, 50, 0.25);
}

.volt-voltage-btn.is-on .volt-voltage-btn__ico {
  opacity: 1;
  filter: grayscale(0);
}

.volt-voltage-btn__ok {
  margin-left: 4px;
  font-size: 1.1rem;
  color: var(--vp-green);
}

.volt-instruct {
  margin-top: clamp(1.5rem, 3.5vw, 2.25rem);
  padding-top: clamp(1.25rem, 3vw, 1.75rem);
  border-top: 1px solid rgba(226, 232, 240, 0.95);
}

.volt-instruct__kicker {
  margin: 0 0 6px;
  font-size: clamp(0.72rem, 1.2vw, 0.82rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(106, 13, 173, 0.75);
}

.volt-instruct__lead {
  margin: 0 0 clamp(0.85rem, 2vw, 1.15rem);
  font-size: clamp(1rem, 1.85vw, 1.18rem);
  font-weight: 800;
  color: var(--vp-navy);
  line-height: 1.35;
}

.volt-app-panel {
  background: #fff;
  border-radius: 18px;
  padding: clamp(0.75rem, 2vw, 1.1rem);
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 2px 14px rgba(26, 32, 44, 0.05);
}

.volt-app-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.instruction-app {
  display: flex;
  gap: clamp(14px, 2.5vw, 18px);
  align-items: center;
  padding: clamp(0.95rem, 2.2vw, 1.2rem) clamp(0.35rem, 1vw, 0.5rem);
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.instruction-app + .instruction-app {
  border-top: 1px solid #edf2f7;
}

.instruction-app__icon-wrap {
  flex-shrink: 0;
  width: clamp(52px, 11vw, 60px);
  height: clamp(52px, 11vw, 60px);
  border-radius: 14px;
  border: 2px solid rgba(106, 13, 173, 0.42);
  background: linear-gradient(145deg, rgba(106, 13, 173, 0.07), rgba(106, 13, 173, 0.02));
  display: grid;
  place-items: center;
  color: #6a0dad;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.instruction-app__svg {
  width: clamp(26px, 5.5vw, 30px);
  height: clamp(26px, 5.5vw, 30px);
  display: block;
}

.instruction-app__emoji {
  font-size: clamp(1.35rem, 2.8vw, 1.65rem);
  line-height: 1;
}

.instruction-app__body {
  min-width: 0;
  font-size: clamp(0.88rem, 1.5vw, 1rem);
  color: var(--vp-navy);
}

.instruction-app__body strong {
  display: block;
  font-size: clamp(0.98rem, 1.75vw, 1.12rem);
  font-weight: 800;
  margin-bottom: 5px;
  color: var(--vp-navy);
  letter-spacing: -0.01em;
}

.instruction-app__detail {
  margin: 0;
  color: var(--vp-muted);
  font-weight: 500;
  line-height: 1.5;
  font-size: clamp(0.84rem, 1.4vw, 0.96rem);
}

.volt-orient-card {
  margin-top: clamp(1.1rem, 2.5vw, 1.5rem);
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: clamp(1rem, 2.5vw, 1.3rem);
  background: linear-gradient(180deg, #fffef5 0%, #fffbeb 100%);
  border: 2px solid #ffca28;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(245, 127, 23, 0.08);
}

.volt-orient-card__ico {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 193, 7, 0.25);
  border: 1px solid rgba(245, 127, 23, 0.35);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  line-height: 1;
}

.volt-orient-card__text strong {
  display: block;
  font-size: clamp(1.02rem, 1.75vw, 1.14rem);
  font-weight: 800;
  color: var(--warn-title);
  margin-bottom: 8px;
}

.volt-orient-card__obs {
  margin: 0;
  font-size: clamp(0.88rem, 1.45vw, 1.02rem);
  color: var(--vp-navy);
  line-height: 1.5;
  font-weight: 500;
}

.volt-orient-card__obs strong {
  font-weight: 800;
  color: #c17900;
}

.volt-actions-row {
  display: flex;
  gap: 12px;
  margin-top: clamp(1.25rem, 3vw, 1.75rem);
  flex-wrap: wrap;
}

.volt-btn {
  flex: 1;
  min-width: min(100%, 160px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 14px;
  font-family: inherit;
  font-size: clamp(0.85rem, 1.5vw, 0.98rem);
  font-weight: 800;
  cursor: pointer;
  border: 2px solid transparent;
  transition: filter 0.15s, transform 0.12s;
}

.volt-btn:active {
  transform: scale(0.98);
}

.volt-btn__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.volt-btn__bag-svg {
  width: 1.2em;
  height: 1.2em;
  display: block;
}

.volt-btn--ghost {
  background: #edf2f7;
  border-color: rgba(106, 13, 173, 0.38);
  color: #5b0fa8;
}

.volt-btn--ghost:hover {
  filter: none;
  background: #e2e8f0;
  border-color: rgba(106, 13, 173, 0.55);
}

.volt-btn--ghost .volt-btn__bag-svg {
  stroke: currentColor;
}

.volt-btn--green .volt-btn__ico {
  font-size: 1.2rem;
  line-height: 1;
}

.volt-btn--green {
  background: var(--vp-green);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(50, 168, 50, 0.35);
}

.volt-btn--green:hover {
  filter: brightness(1.06);
}

.volt-btn__ico--light {
  filter: brightness(10);
}

.volt-video-block {
  margin-top: clamp(1.75rem, 4vw, 2.5rem);
  padding-top: clamp(1.25rem, 3vw, 1.75rem);
  border-top: 1px solid #e2e8f0;
}

.volt-video-block__title {
  margin: 0 0 8px;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  font-weight: 800;
  color: var(--vp-navy);
}

.volt-video-block__sub {
  margin: 0 0 clamp(1rem, 2vw, 1.35rem);
  font-size: clamp(0.82rem, 1.35vw, 0.95rem);
  color: var(--vp-muted);
}

.volt-video-block__sub a {
  color: var(--vp-purple);
  font-weight: 700;
}

.volt-video-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

@media (max-width: 640px) {
  .volt-video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.volt-video-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e2e8f0;
  transition: box-shadow 0.2s, transform 0.12s;
}

.volt-video-card:hover {
  box-shadow: 0 6px 18px rgba(45, 27, 105, 0.12);
  transform: translateY(-2px);
}

.volt-video-card:focus-visible {
  outline: 3px solid rgba(106, 13, 173, 0.45);
  outline-offset: 2px;
}

.volt-video-card__thumb-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #1a1523;
}

.volt-video-card__thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.volt-video-card__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 1.75rem;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
  background: rgba(0, 0, 0, 0.25);
}

.volt-video-card__label {
  display: block;
  padding: 8px 6px 10px;
  font-size: clamp(0.65rem, 1.15vw, 0.78rem);
  font-weight: 700;
  color: var(--vp-navy);
  line-height: 1.25;
  text-align: center;
}

.volt-sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  padding: clamp(12px, 2.5vw, 16px) clamp(1rem, 4vw, 1.5rem) clamp(14px, 3vw, 18px);
  background: linear-gradient(180deg, #5b0fa8 0%, #2d1b69 100%);
  box-shadow: 0 -8px 28px rgba(45, 27, 105, 0.35);
}

.volt-sticky-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  max-width: min(1600px, 100%);
  margin: 0 auto;
}

.volt-sticky-bar__left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.volt-sticky-bar__bag {
  position: relative;
  color: #fff;
  flex-shrink: 0;
}

.volt-sticky-bar__badge {
  position: absolute;
  top: -6px;
  right: -8px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--vp-green);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  border: 2px solid #2d1b69;
}

.volt-sticky-bar__price {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.volt-sticky-bar__price-val {
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 800;
  color: #fff;
}

.volt-sticky-bar__price-lbl {
  font-size: clamp(0.72rem, 1.2vw, 0.82rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.volt-sticky-bar__cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border: none;
  border-radius: 999px;
  background: var(--vp-green);
  color: #fff;
  font-family: inherit;
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(50, 168, 50, 0.4);
  transition: filter 0.15s, transform 0.12s;
}

.volt-sticky-bar__cta:hover {
  filter: brightness(1.06);
}

.volt-sticky-bar__cta-arrow {
  width: 0.35em;
  height: 0.35em;
  border-right: 3px solid #fff;
  border-top: 3px solid #fff;
  transform: rotate(45deg);
}
