:root {
  --azul-noite: #274e76;
  --azul-base: #395d81;
  --azul-claro: #64acdd;
  --azul-gelo: #eef7fd;
  --preto-logo: #05080b;
  --branco: #ffffff;
  --texto: #112033;
  --texto-suave: #5d7085;
  --borda: rgba(39, 78, 118, 0.16);
  --sombra: 0 18px 45px rgba(17, 32, 51, 0.12);
  --radius: 22px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--texto);
  background: linear-gradient(180deg, var(--branco), var(--azul-gelo));
  line-height: 1.6;
  overflow-x: hidden;
}

img,
svg,
video,
iframe {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 999;
  background: var(--preto-logo);
  color: var(--branco);
  padding: 10px 14px;
  border-radius: 999px;
}

.skip-link:focus {
  left: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(135deg, rgba(238, 247, 253, 0.72), rgba(100, 172, 221, 0.28));
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.46);
  box-shadow: 0 16px 36px rgba(39, 78, 118, 0.12);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.tw-hero-copy h1 {
  letter-spacing: 10px
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 128px;
  display: block;
  filter: drop-shadow(0 8px 16px rgba(39, 78, 118, 0.18));
}

.menu-toggle {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(39, 78, 118, 0.22);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.52);
  color: var(--azul-noite);
  box-shadow: 0 10px 26px rgba(39, 78, 118, 0.12);
  cursor: pointer;
  padding: 15px ;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  width: 20px;
  height: 2px;
  display: block;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle::before {
  transform: translateY(-7px);
}

.menu-toggle::after {
  transform: translateY(7px);
}

.menu-toggle.is-open span {
  opacity: 0;
}

.menu-toggle.is-open::before {
  transform: translateY(2px) rotate(45deg);
}

.menu-toggle.is-open::after {
  transform: translateY(-2px) rotate(-45deg);
}

.site-nav {
  position: absolute;
  inset: 76px 16px auto 16px;
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 20px;
  box-shadow: 0 18px 45px rgba(39, 78, 118, 0.16);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
}

.site-nav.is-open {
  display: flex;
  animation: slideDown 0.22s ease both;
}

.site-nav a {
  padding: 13px 14px;
  color: var(--azul-noite);
  border: 1px solid rgb(129, 189, 240);
  font-weight: 700;
  border-radius: 14px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  background: var(--azul-gelo);
  color: var(--preto-logo);
  transform: translateX(3px);
}

.hero {
  position: relative;
  padding: 76px 0 44px;
  color: var(--branco);
  background:
    radial-gradient(circle at 18% 22%, rgba(100, 172, 221, 0.42), transparent 28%),
    linear-gradient(135deg, var(--azul-noite), var(--azul-base));
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -150px;
  bottom: -130px;
  border-radius: 50%;
  border: 55px solid rgba(100, 172, 221, 0.20);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 32px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: linear-gradient(135deg, #0b7dff, #005ee8);
  color: var(--azul-gelo);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  margin: 16px 0 18px;
  font-size: clamp(2.15rem, 10vw, 4.9rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.hero p {
  max-width: 660px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 4vw, 1.22rem);
}

.hero-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
  animation: float 4.5s ease-in-out infinite;
}

.hero-device {
  min-height: 250px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(238, 247, 253, 0.78));
}

.printer-icon {
  width: min(240px, 70vw);
}

.actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 13px 20px;
  border: 0;
  border-radius: 999px;
  color: var(--branco);
  background: linear-gradient(135deg, var(--azul-claro), var(--azul-noite));
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(39, 78, 118, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(39, 78, 118, 0.30);
  filter: brightness(1.04);
}

.btn.secondary {
  color: var(--azul-noite);
  background: var(--branco);
}

.btn.ghost {
  color: var(--azul-noite);
  background: transparent;
  border: 1px solid var(--borda);
  box-shadow: none;
}

.info-strip {
  padding: 16px 0;
  color: var(--azul-noite);
  background: var(--azul-gelo);
  border-bottom: 1px solid var(--borda);
  font-weight: 900;
  text-align: center;
}

.section {
  padding: 58px 0;
}

.section.alt {
  background: rgba(238, 247, 253, 0.78);
}

.section-header {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-header h2,
.content h2 {
  margin: 0 0 12px;
  color: var(--azul-noite);
  font-size: clamp(1.8rem, 7vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.section-header p,
.content p {
  margin: 0;
  color: var(--texto-suave);
}

.grid {
  display: grid;
  gap: 18px;
}

.card {
  padding: 22px;
  border: 1px solid var(--borda);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 35px rgba(39, 78, 118, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(100, 172, 221, 0.45);
  box-shadow: var(--sombra);
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.icon-box {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--azul-gelo), rgba(100, 172, 221, 0.28));
}

.icon-box svg {
  width: 42px;
  height: 42px;
}

.card h3 {
  margin: 0 0 10px;
  color: var(--preto-logo);
  font-size: 1.22rem;
  line-height: 1.2;
}

.card p {
  margin: 0 0 18px;
  color: var(--texto-suave);
}

.card .btn {
  margin-top: auto;
}

.product-grid {
  display: grid;
  gap: 16px;
}

.product-card {
  padding: 14px;
  overflow: hidden;
}

.product-media {
  min-height: 160px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 18px;
  background: linear-gradient(145deg, var(--azul-gelo), var(--branco));
}

.product-card h3 {
  font-size: 1rem;
}

.badge {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 10px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--azul-noite);
  background: rgba(100, 172, 221, 0.16);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.split {
  display: grid;
  gap: 28px;
  align-items: center;
}

.feature-panel {
  padding: 24px;
  border-radius: calc(var(--radius) + 8px);
  color: var(--branco);
  background:
    radial-gradient(circle at 18% 10%, rgba(100, 172, 221, 0.42), transparent 32%),
    linear-gradient(135deg, var(--azul-noite), var(--azul-base));
  box-shadow: var(--sombra);
}

.feature-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-panel li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.feature-panel li::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--azul-claro);
}

.contact-band {
  color: var(--branco);
  background:
    radial-gradient(circle at 88% 20%, rgba(100, 172, 221, 0.32), transparent 28%),
    linear-gradient(135deg, var(--azul-noite), var(--preto-logo));
}

.contact-grid {
  display: grid;
  gap: 18px;
}

.contact-box {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.contact-box h2,
.contact-box h3 {
  margin-top: 0;
}

.page-hero {
  padding: 58px 0 42px;
  text-align: center;
  color: var(--branco);
  background:
    radial-gradient(circle at 15% 15%, rgba(100, 172, 221, 0.40), transparent 28%),
    linear-gradient(135deg, var(--azul-noite), var(--azul-base));
}

.page-hero p {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.84);
}

.form-card {
  max-width: 980px;
  margin: 0 auto;
  padding: 18px;
}

.form-grid {
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  color: var(--azul-noite);
  font-size: 0.91rem;
  font-weight: 800;
}

.input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--borda);
  border-radius: 14px;
  color: var(--texto);
  background: var(--branco);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.input:focus,
select:focus,
textarea:focus {
  border-color: var(--azul-claro);
  box-shadow: 0 0 0 4px rgba(100, 172, 221, 0.18);
}

textarea {
  min-height: 126px;
  resize: vertical;
}

.notice {
  padding: 16px;
  border: 1px solid rgba(100, 172, 221, 0.35);
  border-radius: 18px;
  color: var(--azul-noite);
  background: var(--azul-gelo);
}

.os-box {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.site-footer {
  padding: 44px 0 24px;
  color: rgba(255, 255, 255, 0.82);
  background: var(--preto-logo);
}

.footer-grid {
  display: grid;
  gap: 26px;
}

.footer-logo {
  width: 138px;
  padding: 8px;
  border-radius: 16px;
  background: var(--azul-base);
}

.site-footer h2,
.site-footer h3 {
  margin: 0 0 12px;
  color: var(--branco);
}

.newsletter {
  display: grid;
  gap: 10px;
}

.success {
  display: none;
  color: var(--azul-claro);
  font-weight: 800;
}

.success.show {
  display: block;
}

.footer-bottom {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (min-width: 580px) {
  .actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-card {
    padding: 28px;
  }
}

@media (min-width: 760px) {
  .grid.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .grid.two,
  .split,
  .contact-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1020px) {
  .menu-toggle {
    display: none;
  }

  .site-header {
    background: linear-gradient(135deg, rgba(238, 247, 253, 0.70), rgba(100, 172, 221, 0.26));
  }

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-nav a {
    padding: 10px 12px;
    font-size: 0.92rem;
    color: var(--azul-noite);
  }

  .site-nav a:hover,
  .site-nav a.active {
    transform: translateY(-1px);
  }

  .hero {
    padding: 110px 0 76px;
  }

  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .section {
    padding: 82px 0;
  }

  .product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}

.form-status.error,
.success.error {
  color: #8a1f11;
  background: #fff1ed;
  border-color: rgba(138, 31, 17, 0.22);
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.privacy-content h2 {
  margin-top: 28px;
}

.privacy-content ul {
  padding-left: 20px;
}

.form-steps {
  display: grid;
  gap: 20px;
}

.step-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.step-tab {
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--borda);
  border-radius: 14px;
  color: var(--azul-noite);
  font-weight: 800;
  background: var(--branco);
  cursor: pointer;
}

.step-tab.active {
  border-color: var(--azul-claro);
  color: var(--branco);
  background: linear-gradient(135deg, var(--azul-base), var(--azul-claro));
}

.form-step {
  display: grid;
  gap: 16px;
}

.form-step[hidden],
.form-step:not(.active) {
  display: none !important;
}

.step-tab[aria-disabled="true"] {
  opacity: 0.55;
  cursor: not-allowed;
}

.form-step h2 {
  margin: 0;
  color: var(--azul-noite);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.form-step p {
  margin: 0;
  color: var(--texto-suave);
}

.form-grid.two-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field-help {
  color: var(--texto-suave);
  font-size: 0.82rem;
}

.step-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.step-actions.split {
  justify-content: space-between;
}

.btn.ghost {
  color: var(--azul-noite);
  background: var(--azul-gelo);
  box-shadow: none;
}

.review-box {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(100, 172, 221, 0.35);
  border-radius: 18px;
  background: #fff;
}

.review-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--borda);
}

.review-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.review-item strong {
  color: var(--azul-noite);
}

@media (max-width: 720px) {
  .step-tabs,
  .form-grid.two-columns {
    grid-template-columns: 1fr;
  }

  .step-actions,
  .step-actions.split {
    justify-content: stretch;
  }

  .step-actions .btn {
    width: 100%;
  }

  .review-item {
    grid-template-columns: 1fr;
  }
}

.field-label {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--azul-noite);
  font-weight: 800;
}

.radio-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--borda);
  border-radius: 14px;
  background: var(--branco);
  color: var(--azul-noite);
  font-weight: 700;
  cursor: pointer;
}

.radio-option input {
  width: 18px;
  height: 18px;
  accent-color: var(--azul-base);
}

@media (max-width: 720px) {
  .radio-group {
    grid-template-columns: 1fr;
  }
}

/* Botão flutuante WhatsApp */
.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(37, 211, 102, 0.94);
  box-shadow: 0 12px 30px rgba(17, 32, 51, 0.22);
  font-weight: 800;
  font-size: 0.92rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(17, 32, 51, 0.28);
}

.floating-whatsapp svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  flex: 0 0 auto;
}

.align-start {
  align-items: start;
}

@media (max-width: 560px) {
  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 48px;
    height: 48px;
    justify-content: center;
    padding: 0;
  }

  .floating-whatsapp span {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }
}

/* Escolha de atendimento e pedido de suprimentos */
.request-choice {
  max-width: 980px;
  margin: 0 auto 22px;
  padding: 24px;
}

.request-choice h2 {
  margin: 8px 0 6px;
  color: var(--azul-noite);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.request-choice p {
  margin: 0 0 18px;
  color: var(--texto-suave);
}

.choice-grid {
  display: grid;
  gap: 14px;
}

.choice-card {
  display: grid;
  gap: 6px;
  min-height: 112px;
  padding: 18px;
  border: 1px solid var(--borda);
  border-radius: 18px;
  text-align: left;
  color: var(--azul-noite);
  background: var(--branco);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.choice-card:hover,
.choice-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--sombra);
  outline: none;
}

.choice-card.active {
  border-color: var(--azul-claro);
  color: var(--branco);
  background: linear-gradient(135deg, var(--azul-base), var(--azul-claro));
}

.choice-card strong {
  font-size: 1.05rem;
}

.choice-card span {
  color: inherit;
  opacity: 0.86;
}

.request-panel {
  margin-top: 0;
}

.request-panel[hidden],
.request-panel:not(.active) {
  display: none !important;
}

.supply-options {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.check-card {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid var(--borda);
  border-radius: 14px;
  color: var(--azul-noite);
  background: var(--branco);
  font-weight: 750;
  cursor: pointer;
}

.check-card input {
  width: 18px;
  height: 18px;
  accent-color: var(--azul-base);
}

.optional {
  font-weight: 600;
  color: var(--texto-suave);
}

@media (min-width: 760px) {
  .choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .supply-options {
    grid-template-columns: 1fr;
  }
}

/* Catálogo premium de impressoras */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.printers-premium-section {
  position: relative;
  isolation: isolate;
}

.printers-premium-section::before {
  content: "";
  position: absolute;
  inset: 40px 0 auto;
  height: 360px;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 20%, rgba(100, 172, 221, .24), transparent 32%),
    radial-gradient(circle at 82% 16%, rgba(39, 78, 118, .14), transparent 34%);
  filter: blur(8px);
}

.printers-premium-header {
  max-width: 820px;
  margin-bottom: 28px;
}

.printer-smart-panel {
  display: grid;
  gap: 16px;
  padding: 18px;
  margin-bottom: 18px;
  border: 1px solid rgba(39, 78, 118, .12);
  border-radius: 26px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 18px 48px rgba(17, 32, 51, .10);
  backdrop-filter: blur(18px);
}

.printer-search-wrap {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  min-height: 58px;
  border: 1px solid rgba(39, 78, 118, .13);
  border-radius: 20px;
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
  overflow: hidden;
}

.printer-search-wrap > span {
  display: grid;
  place-items: center;
  color: var(--azul-noite);
  font-size: 1.25rem;
  font-weight: 900;
}

.printer-search-input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 14px 16px 14px 0;
  background: transparent;
  color: var(--texto);
}

.printer-search-input::placeholder {
  color: rgba(93, 112, 133, .78);
}

.printer-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.printer-filter-chip {
  border: 1px solid rgba(39, 78, 118, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  color: var(--azul-noite);
  padding: 9px 13px;
  cursor: pointer;
  font-weight: 800;
  font-size: .88rem;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.printer-filter-chip:hover,
.printer-filter-chip:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(39, 78, 118, .12);
}

.printer-filter-chip.is-active {
  color: #fff;
  background: linear-gradient(135deg, #0b7dff, #005ee8);
  border-color: transparent;
  box-shadow: 0 14px 30px rgba(39, 78, 118, .18);
}

.printer-premium-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 22px;
}

.printer-premium-stats div {
  padding: 16px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255,255,255,.92), rgba(238,247,253,.86));
  border: 1px solid rgba(39, 78, 118, .10);
  box-shadow: 0 12px 28px rgba(17, 32, 51, .08);
}

.printer-premium-stats strong {
  display: block;
  color: var(--azul-noite);
  font-size: clamp(1.4rem, 4vw, 2.15rem);
  line-height: 1;
}

.printer-premium-stats span {
  color: var(--texto-suave);
  font-weight: 700;
  font-size: .9rem;
}

.premium-category-grid {
  display: grid;
  gap: 18px;
}

.printer-category,
.premium-category-card {
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(39, 78, 118, .11);
  background: rgba(255,255,255,.88);
  box-shadow: 0 16px 38px rgba(17, 32, 51, .10);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.premium-category-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 54px rgba(17, 32, 51, .14);
  border-color: rgba(100, 172, 221, .38);
}

.premium-category-toggle {
  width: 100%;
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(238,247,253,.78));
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.premium-category-media {
  position: relative;
  min-height: 104px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(100, 172, 221, .18), rgba(39, 78, 118, .07)),
    #fff;
  border: 1px solid rgba(39, 78, 118, .10);
  overflow: hidden;
}

.premium-category-media::after {
  content: "";
  position: absolute;
  inset: auto 20px 14px;
  height: 9px;
  border-radius: 999px;
  background: rgba(17, 32, 51, .12);
  filter: blur(7px);
}

.premium-category-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px 16px 24px;
  opacity: .82;
  filter: saturate(.95) drop-shadow(0 10px 18px rgba(39,78,118,.12));
  transition: transform .24s ease, opacity .24s ease;
}

.premium-category-card:hover .premium-category-media img,
.premium-category-card.is-open .premium-category-media img {
  transform: scale(1.06);
  opacity: 1;
}

.brand-logo-pill {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 9px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  color: var(--azul-noite);
  font-weight: 900;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(39,78,118,.11);
}

.premium-category-copy {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.premium-category-copy strong {
  color: var(--azul-noite);
  font-size: clamp(1.16rem, 2.6vw, 1.58rem);
  line-height: 1.1;
}

.premium-category-copy small {
  color: var(--texto-suave);
  line-height: 1.45;
}

.category-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--azul-noite);
  color: #fff;
  font-size: 1.35rem;
  font-weight: 900;
  transition: transform .25s ease, background .25s ease;
}

.printer-category.is-open .category-arrow {
  background: var(--azul-claro);
  transform: rotate(180deg);
}

.premium-category-panel {
  padding: 0 18px 18px;
  animation: premiumPanelIn .25s ease both;
}

@keyframes premiumPanelIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.premium-printer-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.premium-printer-card {
  position: relative;
  display: grid;
  grid-template-rows: 118px minmax(0, 1fr) auto;
  gap: 12px;
  min-width: 0;
  padding: 12px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(39,78,118,.10);
  box-shadow: 0 12px 28px rgba(17, 32, 51, .08);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
  animation: printerCardIn .28s ease both;
}

.premium-printer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 46px rgba(17, 32, 51, .14);
  border-color: rgba(100,172,221,.34);
}

.premium-printer-card.is-new {
  animation: printerCardIn .34s ease both;
}

@keyframes printerCardIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.premium-printer-photo {
  position: relative;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 78%, rgba(17, 32, 51, .12), transparent 31%),
    linear-gradient(135deg, #f8fbff, #eef7fd);
  border: 1px solid rgba(39,78,118,.08);
  overflow: hidden;
}

.premium-printer-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  filter: drop-shadow(0 10px 14px rgba(17,32,51,.12));
  transition: transform .24s ease;
}

.premium-printer-card:hover .premium-printer-photo img {
  transform: scale(1.06);
}

.premium-printer-content {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.premium-printer-topline {
  min-height: 24px;
}

.printer-seal {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  align-items: center;
  border-radius: 999px;
  padding: 4px 8px;
  background: rgba(100, 172, 221, .16);
  color: var(--azul-noite);
  font-size: .68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.printer-seal.soft {
  background: rgba(39,78,118,.07);
  color: var(--texto-suave);
}

.premium-printer-card h3 {
  margin: 0;
  color: var(--azul-noite);
  font-size: .98rem;
  line-height: 1.22;
}

.premium-printer-card p {
  margin: 0;
  color: var(--texto-suave);
  font-size: .82rem;
  line-height: 1.38;
}

.printer-mini-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 2px;
}

.printer-mini-tags span {
  border-radius: 999px;
  padding: 3px 7px;
  background: rgba(238,247,253,.95);
  color: var(--azul-base);
  font-size: .68rem;
  font-weight: 800;
}

.printer-price-icon,
.premium-price-icon {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  background: #19b85a;
  color: #fff;
  box-shadow: 0 12px 24px rgba(25, 184, 90, .24);
  transition: transform .22s ease, background .22s ease, box-shadow .22s ease;
  flex: 0 0 auto;
}

.printer-price-icon:hover,
.printer-price-icon:focus-visible,
.premium-price-icon:hover,
.premium-price-icon:focus-visible {
  background: #149b4b;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 16px 30px rgba(25, 184, 90, .30);
}

.printer-price-icon svg,
.premium-price-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.tooltip {
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%) translateX(4px);
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  border-radius: 999px;
  padding: 7px 10px;
  background: var(--azul-noite);
  color: #fff;
  font-size: .76rem;
  font-weight: 800;
  transition: opacity .18s ease, transform .18s ease;
}

.premium-price-icon:hover .tooltip,
.premium-price-icon:focus-visible .tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.premium-show-more {
  width: 100%;
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.premium-show-more span {
  opacity: .78;
  font-size: .9em;
}

.printer-empty-state {
  margin: 22px 0 0;
  padding: 18px;
  border-radius: 20px;
  background: #fff;
  color: var(--texto-suave);
  border: 1px solid rgba(39,78,118,.12);
  box-shadow: 0 12px 28px rgba(17, 32, 51, .08);
  text-align: center;
  font-weight: 700;
}

@media (max-width: 1120px) {
  .premium-printer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .printer-premium-stats {
    grid-template-columns: 1fr;
  }

  .premium-category-toggle {
    grid-template-columns: 96px minmax(0, 1fr) 38px;
    gap: 12px;
    padding: 14px;
  }

  .premium-category-media {
    min-height: 84px;
    border-radius: 18px;
  }

  .premium-category-panel {
    padding: 0 14px 14px;
  }

  .premium-printer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .printer-smart-panel {
    padding: 14px;
    border-radius: 22px;
  }

  .printer-filter-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
  }

  .printer-filter-chip {
    flex: 0 0 auto;
  }

  .premium-category-toggle {
    grid-template-columns: 74px minmax(0, 1fr) 34px;
    gap: 10px;
  }

  .premium-category-media {
    min-height: 72px;
    border-radius: 16px;
  }

  .premium-category-media img {
    padding: 8px 8px 22px;
  }

  .brand-logo-pill {
    left: 6px;
    right: 6px;
    bottom: 6px;
    min-height: 24px;
    font-size: .58rem;
    letter-spacing: .04em;
  }

  .premium-category-copy .badge {
    width: max-content;
  }

  .premium-category-copy small {
    font-size: .82rem;
  }

  .category-arrow {
    width: 34px;
    height: 34px;
    font-size: 1.05rem;
  }

  .premium-printer-grid {
    grid-template-columns: 1fr;
  }

  .premium-printer-card {
    grid-template-columns: 82px minmax(0, 1fr) 42px;
    grid-template-rows: auto;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 18px;
  }

  .premium-printer-photo {
    width: 82px;
    height: 72px;
    border-radius: 14px;
  }

  .premium-printer-photo img {
    padding: 7px;
  }

  .premium-printer-card h3 {
    font-size: .94rem;
  }

  .premium-printer-card p,
  .printer-mini-tags {
    display: none;
  }

  .premium-printer-topline {
    min-height: auto;
  }

  .printer-seal {
    font-size: .62rem;
    padding: 3px 7px;
  }

  .printer-price-icon,
  .premium-price-icon {
    width: 42px;
    height: 42px;
  }

  .tooltip {
    display: none;
  }
}

@media (max-width: 390px) {
  .premium-category-toggle {
    grid-template-columns: 66px minmax(0, 1fr) 32px;
  }

  .premium-printer-card {
    grid-template-columns: 70px minmax(0, 1fr) 38px;
  }

  .premium-printer-photo {
    width: 70px;
    height: 62px;
  }

  .premium-price-icon {
    width: 38px;
    height: 38px;
  }

  .premium-price-icon svg {
    width: 21px;
    height: 21px;
  }
}


/* =========================================================
   HOME TECHWEL — layout principal reconstruído (front only)
   Escopo: somente body.home-page para não quebrar páginas internas.
   ========================================================= */
.home-page {
  --tw-navy: #001f44;
  --tw-navy-2: #003a73;
  --tw-blue: #006dff;
  --tw-blue-2: #55b5ff;
  --tw-ice: #f3fbff;
  --tw-ice-2: #eaf6fd;
  --tw-text: #07192f;
  --tw-muted: #64778d;
  --tw-line: rgba(0, 64, 130, .11);
  --tw-shadow: 0 24px 70px rgba(0, 43, 91, .12);
  background: #f6fbff;
  color: var(--tw-text);
}
.home-page .container {
  width: min(100% - 48px, 1210px);
}
.home-page .site-header.home-header {
  position: sticky;
  top: 0;
  z-index: 60;
  height: 112px;
  display: flex;
  align-items: center;
  background: rgba(246, 252, 255, .88);
  border-bottom: 1px solid rgba(22, 103, 179, .08);
  box-shadow: 0 18px 60px rgba(0, 52, 108, .08);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}
.home-page .home-header-inner {
  min-height: 112px;
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  align-items: center;
  gap: 28px;
}
.home-page .home-brand img {
  width: 154px;
  filter: drop-shadow(0 12px 22px rgba(0, 58, 115, .16));
}
.home-page .home-nav {
  position: static;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}
.home-page .home-nav a {
  padding: 12px 18px;
  border: 0;
  border-radius: 13px;
  color: #102f52;
  background: rgba(255,255,255,.58);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: -.01em;
  box-shadow: inset 0 0 0 1px rgba(0, 109, 255, .05);
  transition: .22s ease;
  white-space: nowrap;
}
.home-page .home-nav a:hover,
.home-page .home-nav a.active {
  color: #fff;
  background: linear-gradient(135deg, #006dff, #0054d4);
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(0, 109, 255, .22);
}
.home-page .menu-toggle { display: none; }

.tw-hero {
  position: relative;
  min-height: 675px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  color: #fff;
  background: #061f3f;
}
.tw-hero-bg,
.tw-hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tw-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 30, 68, .96) 0%, rgba(0, 43, 94, .9) 36%, rgba(0, 39, 85, .50) 62%, rgba(0, 19, 42, .38) 100%);
}
.tw-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 580px) minmax(360px, 1fr);
  align-items: center;
  min-height: 675px;
  padding: 68px 0 70px;
}
.tw-hero-copy { max-width: 620px; }
.tw-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 16px;
  border-radius: 999px;
  color: #e7f5ff;
  background: rgba(41, 139, 229, .27);
  border: 1px solid rgba(140, 202, 255, .25);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.tw-hero h1 {
  max-width: 600px;
  margin: 22px 0 22px;
  font-size: clamp(3.25rem, 6.2vw, 5.75rem);
  line-height: .91;
  letter-spacing: -.075em;
  font-weight: 950;
}
.tw-hero h1 span,
.tw-section-heading em,
.tw-about-copy em {
  color: #2a89ff;
  font-style: normal;
}
.tw-hero p {
  max-width: 540px;
  margin: 0;
  color: rgba(255,255,255,.86);
  font-size: 17px;
  line-height: 1.72;
}
.tw-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}
.tw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 26px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: .01em;
  text-transform: uppercase;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.tw-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.tw-btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #0b7dff, #005ee8);
  box-shadow: 0 18px 34px rgba(0, 109, 255, .32);
}
.tw-btn-outline {
  color: #fff;
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.42);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
}
.tw-btn:hover { transform: translateY(-2px); }
.tw-installment {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px !important;
  font-size: 13px !important;
  font-weight: 900;
}
.tw-installment span {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  color: #74c8ff;
  background: rgba(85, 181, 255, .16);
}
.tw-hero-metrics {
  align-self: end;
  justify-self: end;
  width: min(100%, 640px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 64px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(2, 29, 61, .62);
  box-shadow: 0 28px 80px rgba(0,0,0,.22);
  backdrop-filter: blur(16px) saturate(130%);
  -webkit-backdrop-filter: blur(16px) saturate(130%);
  overflow: hidden;
}
.tw-hero-metrics div {
  min-height: 132px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 3px;
  padding: 18px 16px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.15);
}
.tw-hero-metrics div:last-child { border-right: 0; }
.tw-metric-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
  border-radius: 999px;
  color: #61baff;
  background: rgba(34, 128, 230, .18);
  font-weight: 900;
}
.tw-hero-metrics strong {
  color: #fff;
  font-size: 14px;
  font-weight: 950;
}
.tw-hero-metrics small {
  color: rgba(255,255,255,.78);
  font-size: 12px;
  font-weight: 750;
}
.tw-section {
  padding: 74px 0;
  background: #f8fcff;
}
.tw-section-heading {
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}
.tw-section-heading span,
.tw-about-copy span {
  display: block;
  margin-bottom: 14px;
  color: #006dff;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.tw-section-heading h2 {
  margin: 0;
  color: #091a31;
  font-size: clamp(2rem, 3.8vw, 3.15rem);
  line-height: 1.12;
  letter-spacing: -.052em;
  font-weight: 950;
}
.tw-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tw-service-card,
.tw-product-card,
.tw-info-card {
  border: 1px solid var(--tw-line);
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 60px rgba(0, 52, 108, .08);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.tw-service-card:hover,
.tw-product-card:hover,
.tw-info-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,109,255,.18);
  box-shadow: 0 26px 78px rgba(0, 62, 128, .14);
}
.tw-service-card {
  min-height: 315px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  border-radius: 18px;
}
.tw-card-icon {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 50%;
  color: #0b6eea;
  background: #eef7ff;
}
.tw-card-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.tw-service-card h3 {
  margin: 0 0 14px;
  color: #07192f;
  font-size: 20px;
  line-height: 1.18;
  font-weight: 950;
  letter-spacing: -.03em;
}
.tw-service-card p {
  margin: 0 0 28px;
  color: var(--tw-muted);
  line-height: 1.78;
}
.tw-service-card a,
.tw-product-card a {
  margin-top: auto;
  color: #006dff;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}
.tw-products {
  padding-top: 44px;
  background: linear-gradient(180deg, #f8fcff 0%, #eef8ff 100%);
}
.tw-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.tw-product-card {
  display: flex;
  flex-direction: column;
  min-height: 438px;
  padding: 18px;
  border-radius: 17px;
}
.tw-product-card figure {
  height: 190px;
  display: grid;
  place-items: center;
  margin: 0 0 18px;
  border-radius: 17px;
  background: linear-gradient(180deg, #f6fbff, #fff);
  overflow: hidden;
}
.tw-product-card figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.tw-price-badge {
  align-self: flex-start;
  margin-bottom: 12px;
  padding: 7px 11px;
  border-radius: 999px;
  color: #0b477a;
  background: #e6f5ff;
  font-size: 10px;
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
}
.tw-product-card h3 {
  min-height: 48px;
  margin: 0 0 10px;
  color: #07192f;
  font-size: 15.5px;
  line-height: 1.24;
  font-weight: 950;
  letter-spacing: -.025em;
}
.tw-product-card p {
  margin: 0 0 24px;
  color: var(--tw-muted);
  font-size: 14px;
}
.tw-product-card a {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  color: #15466f;
  background: #eaf6ff;
}
.tw-about {
  padding-top: 58px;
  background: #f8fcff;
}
.tw-about-panel {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr) 340px;
  gap: 38px;
  align-items: center;
  min-height: 470px;
  padding: 40px;
  border-radius: 18px;
  color: #fff;
  background:
    radial-gradient(circle at 74% 18%, rgba(0, 109, 255, .34), transparent 28%),
    linear-gradient(135deg, #002b62 0%, #00356d 54%, #001c3e 100%);
  box-shadow: 0 30px 85px rgba(0, 48, 108, .22);
  overflow: hidden;
}
.tw-about-image {
  height: 360px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 22px 55px rgba(0,0,0,.22);
}
.tw-about-image img,
.tw-about-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tw-about-copy h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(1.9rem, 3vw, 2.65rem);
  line-height: 1.08;
  letter-spacing: -.055em;
  font-weight: 950;
}
.tw-about-copy p {
  max-width: 495px;
  margin: 0 0 16px;
  color: rgba(255,255,255,.78);
  line-height: 1.72;
}
.tw-about-copy .tw-btn { margin-top: 12px; min-height: 52px; }
.tw-about-list {
  display: grid;
  gap: 22px;
}
.tw-about-list div {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
}
.tw-about-list span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #78c6ff;
  background: rgba(96, 186, 255, .13);
  font-size: 22px;
}
.tw-about-list p {
  margin: 0;
  color: rgba(255,255,255,.88);
  font-weight: 850;
  line-height: 1.48;
}
.tw-contact-cards {
  padding-top: 28px;
  background: #f8fcff;
}
.tw-info-grid {
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  gap: 24px;
}
.tw-info-card {
  position: relative;
  min-height: 220px;
  padding: 40px 42px;
  border-radius: 18px;
  overflow: hidden;
}
.tw-info-icon {
  color: #0b6eea;
  font-size: 32px;
  margin-bottom: 12px;
}
.tw-info-card h2 {
  margin: 0 0 26px;
  color: #153b62;
  font-size: 21px;
  font-weight: 950;
  letter-spacing: -.025em;
}
.tw-info-card p {
  max-width: 560px;
  margin: 0 0 12px;
  color: #2c4968;
  font-weight: 760;
}
.tw-watermark {
  position: absolute;
  right: 38px;
  bottom: 18px;
  color: rgba(0, 109, 255, .08);
  font-size: 120px;
  line-height: 1;
  pointer-events: none;
}
.tw-newsletter-band {
  padding: 0 0 72px;
  background: #f8fcff;
}
.tw-newsletter {
  display: grid;
  grid-template-columns: 1fr 1.65fr;
  align-items: center;
  gap: 34px;
  padding: 28px;
  border-radius: 16px;
  background: linear-gradient(135deg, #00306d, #001c40);
  box-shadow: 0 28px 72px rgba(0, 48, 108, .18);
}
.tw-news-title {
  display: flex;
  align-items: center;
  gap: 18px;
}
.tw-news-title span {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, #0b7dff, #005be5);
  font-size: 28px;
}
.tw-news-title h2 {
  margin: 0;
  color: #fff;
  font-size: 19px;
  font-weight: 950;
}
.tw-news-fields {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 12px;
  align-items: start;
}
.tw-news-fields .input {
  min-height: 56px;
  border: 0;
  border-radius: 10px;
  background: #fff;
}
.tw-news-fields .tw-btn {
  min-height: 56px;
  border-radius: 10px;
}
.tw-privacy {
  grid-column: 1 / -1;
  color: rgba(255,255,255,.72);
  font-size: 11px;
  font-weight: 650;
}
.tw-privacy a { color: #74c8ff; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.home-page .site-footer.home-footer {
  padding: 58px 0 24px;
  background: linear-gradient(135deg, #020914, #001a35 60%, #00070f);
}
.tw-footer-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr;
  gap: 54px;
}
.tw-footer-logo {
  width: 170px;
  margin-bottom: 20px;
  filter: drop-shadow(0 10px 20px rgba(0,109,255,.15));
}
.home-page .home-footer h3 {
  margin: 0 0 22px;
  color: #fff;
  font-size: 20px;
}
.home-page .home-footer p {
  color: rgba(255,255,255,.72);
  line-height: 1.8;
}
.tw-socials {
  display: flex;
  gap: 14px;
}
.tw-socials a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: #006dff;
  font-weight: 900;
}
.tw-footer-bottom {
  margin-top: 52px;
}
.home-page .floating-whatsapp {
  right: 28px;
  bottom: 28px;
  min-height: 54px;
  padding: 0 24px;
  background: #24d366;
  border: 1px solid rgba(255,255,255,.36);
  box-shadow: 0 18px 50px rgba(0,0,0,.22);
  font-size: 15px;
  font-weight: 950;
}

@media (max-width: 1180px) {
  .home-page .site-header.home-header { height: 96px; }
  .home-page .home-header-inner { min-height: 96px; grid-template-columns: 132px minmax(0, 1fr); }
  .home-page .home-brand img { width: 128px; }
  .home-page .home-nav { gap: 6px; }
  .home-page .home-nav a { padding: 10px 11px; font-size: 12px; }
  .tw-hero-inner { grid-template-columns: 1fr; align-content: center; }
  .tw-hero-metrics { justify-self: start; margin: 40px 0 0; }
  .tw-about-panel { grid-template-columns: 280px 1fr; }
  .tw-about-list { grid-column: 1 / -1; grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 920px) {
  .home-page .site-header.home-header { height: auto; }
  .home-page .home-header-inner {
    min-height: 82px;
    display: flex;
    justify-content: space-between;
  }
  .home-page .menu-toggle { display: inline-grid; }
  .home-page .home-nav {
    position: absolute;
    inset: 82px 18px auto 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 14px;
    border-radius: 20px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 24px 60px rgba(0, 37, 82, .16);
    backdrop-filter: blur(18px);
  }
  .home-page .home-nav.is-open { display: flex; }
  .home-page .home-nav a { text-align: center; }
  .tw-hero { min-height: auto; }
  .tw-hero-inner { min-height: 640px; padding: 58px 0; }
  .tw-hero h1 { font-size: clamp(3rem, 11vw, 4.6rem); }
  .tw-hero-metrics { width: 100%; grid-template-columns: repeat(2, 1fr); }
  .tw-hero-metrics div:nth-child(2) { border-right: 0; }
  .tw-hero-metrics div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.15); }
  .tw-service-grid, .tw-product-grid, .tw-info-grid, .tw-newsletter, .tw-footer-grid { grid-template-columns: 1fr; }
  .tw-product-grid { max-width: 520px; margin-inline: auto; }
  .tw-about-panel { grid-template-columns: 1fr; padding: 26px; }
  .tw-about-image { height: 290px; }
  .tw-about-list { grid-template-columns: 1fr; }
  .tw-news-fields { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .home-page .container { width: min(100% - 28px, 1210px); }
  .home-page .home-brand img { width: 118px; }
  .tw-hero-inner { min-height: auto; padding: 44px 0 36px; }
  .tw-hero-overlay { background: linear-gradient(90deg, rgba(0, 30, 68, .98), rgba(0, 41, 91, .86)); }
  .tw-eyebrow { font-size: 10px; padding: 7px 11px; }
  .tw-hero h1 { margin-top: 18px; font-size: clamp(2.55rem, 13vw, 3.7rem); }
  .tw-hero p { font-size: 15px; line-height: 1.62; }
  .tw-actions { display: grid; gap: 12px; }
  .tw-btn { width: 100%; min-height: 54px; }
  .tw-hero-metrics { margin-top: 32px; border-radius: 16px; }
  .tw-hero-metrics div { min-height: 105px; padding: 14px 10px; }
  .tw-metric-icon { width: 38px; height: 38px; }
  .tw-section { padding: 54px 0; }
  .tw-section-heading { margin-bottom: 28px; }
  .tw-section-heading h2 { font-size: clamp(1.75rem, 9vw, 2.45rem); }
  .tw-service-card { min-height: auto; padding: 26px; }
  .tw-product-card { min-height: auto; }
  .tw-about-panel { border-radius: 16px; padding: 18px; }
  .tw-about-image { height: 230px; }
  .tw-about-copy h2 { font-size: 1.9rem; }
  .tw-about-list div { grid-template-columns: 46px 1fr; gap: 12px; }
  .tw-about-list span { width: 46px; height: 46px; }
  .tw-info-card { min-height: auto; padding: 28px; }
  .tw-newsletter { padding: 20px; }
  .tw-news-title { align-items: flex-start; }
  .tw-news-title span { width: 52px; height: 52px; flex: 0 0 auto; }
  .home-page .floating-whatsapp { right: 14px; bottom: 14px; max-width: calc(100vw - 28px); min-height: 48px; padding: 0 14px; font-size: 13px; }
}

/* =========================================================
   CONTATO TECHWEL — visual alinhado com a nova home
   Escopo: somente body.contact-page para não afetar backend/páginas internas.
   ========================================================= */
.contact-page {
  background: #f6fbff;
}
.contact-page .site-header.home-header {
  position: sticky;
  top: 0;
  z-index: 60;
}
.tw-contact-hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  color: #fff;
  background: #061f3f;
}
.tw-contact-bg,
.tw-contact-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tw-contact-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 84% 20%, rgba(85,181,255,.26), transparent 34%),
    linear-gradient(90deg, rgba(0, 30, 68, .97) 0%, rgba(0, 43, 94, .92) 42%, rgba(0, 39, 85, .62) 70%, rgba(0, 19, 42, .48) 100%);
}
.tw-contact-hero-inner {
  position: relative;
  z-index: 2;
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 610px) minmax(340px, 475px);
  gap: 64px;
  align-items: center;
  padding: 72px 0;
}
.tw-contact-copy h1 {
  max-width: 640px;
  margin: 22px 0 22px;
  font-size: clamp(3.2rem, 6vw, 5.45rem);
  line-height: .92;
  letter-spacing: -.075em;
  font-weight: 950;
}
.tw-contact-copy p {
  max-width: 570px;
  margin: 0;
  color: rgba(255,255,255,.86);
  font-size: 17px;
  line-height: 1.75;
}
.tw-contact-main-card {
  justify-self: end;
  width: min(100%, 475px);
  padding: 34px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 22px;
  background: rgba(2, 29, 61, .66);
  box-shadow: 0 34px 90px rgba(0,0,0,.28);
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
}
.tw-main-card-label {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #bfe7ff;
  background: rgba(85,181,255,.12);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.tw-contact-main-card h2 {
  margin: 0 0 24px;
  color: #fff;
  font-size: 31px;
  line-height: 1.08;
  letter-spacing: -.05em;
  font-weight: 950;
}
.tw-contact-main-card ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.tw-contact-main-card li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.08);
}
.tw-contact-main-card li > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #78c6ff;
  background: rgba(96, 186, 255, .14);
  font-size: 19px;
}
.tw-contact-main-card strong {
  display: block;
  color: #fff;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 950;
  overflow-wrap: anywhere;
}
.tw-contact-main-card small {
  display: block;
  margin-top: 2px;
  color: rgba(255,255,255,.65);
  font-size: 12px;
  font-weight: 750;
}
.tw-contact-methods {
  background: #f8fcff;
}
.tw-contact-method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tw-contact-method-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  border: 1px solid var(--tw-line);
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 60px rgba(0, 52, 108, .08);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.tw-contact-method-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,109,255,.18);
  box-shadow: 0 26px 78px rgba(0, 62, 128, .14);
}
.tw-contact-method-card h3 {
  margin: 0 0 14px;
  color: #07192f;
  font-size: 21px;
  line-height: 1.18;
  font-weight: 950;
  letter-spacing: -.03em;
}
.tw-contact-method-card p {
  margin: 0 0 28px;
  color: var(--tw-muted);
  line-height: 1.78;
}
.tw-contact-method-card a {
  margin-top: auto;
  color: #006dff;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}
.tw-contact-location {
  padding: 0 0 74px;
  background: #f8fcff;
}
.tw-location-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: 40px;
  align-items: center;
  padding: 42px;
  border-radius: 20px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 20%, rgba(0, 109, 255, .34), transparent 28%),
    linear-gradient(135deg, #002b62 0%, #00356d 54%, #001c3e 100%);
  box-shadow: 0 30px 85px rgba(0, 48, 108, .20);
  overflow: hidden;
}
.tw-location-copy span {
  display: block;
  margin-bottom: 14px;
  color: #74c8ff;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.tw-location-copy h2 {
  max-width: 580px;
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(2rem, 3.7vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -.055em;
  font-weight: 950;
}
.tw-location-copy p {
  max-width: 500px;
  margin: 0 0 28px;
  color: rgba(255,255,255,.78);
  line-height: 1.75;
  font-weight: 760;
}
.tw-map-card {
  min-height: 310px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  padding: 34px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.16);
  background:
    linear-gradient(135deg, rgba(255,255,255,.14), rgba(255,255,255,.07)),
    radial-gradient(circle at 50% 45%, rgba(116,200,255,.20), transparent 28%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
}
.tw-map-pin {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(135deg, #0b7dff, #005be5);
  box-shadow: 0 18px 40px rgba(0,0,0,.20);
  font-size: 36px;
}
.tw-map-card strong {
  color: #fff;
  font-size: 23px;
  font-weight: 950;
}
.tw-map-card p {
  margin: 8px 0 18px;
  color: rgba(255,255,255,.78);
  line-height: 1.65;
}
.tw-map-card small {
  color: rgba(255,255,255,.58);
  font-weight: 800;
}
.contact-page .tw-contact-info {
  padding-top: 0;
}
.contact-page .tw-newsletter-band {
  padding-top: 0;
}
.contact-page .privacy-check.tw-privacy {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.contact-page .privacy-check.tw-privacy input {
  flex: 0 0 auto;
  margin-top: 2px;
}

@media (max-width: 1180px) {
  .tw-contact-hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    align-content: center;
  }
  .tw-contact-main-card {
    justify-self: start;
  }
}
@media (max-width: 920px) {
  .tw-contact-hero,
  .tw-contact-hero-inner {
    min-height: auto;
  }
  .tw-contact-hero-inner {
    padding: 58px 0;
  }
  .tw-contact-copy h1 {
    font-size: clamp(3rem, 11vw, 4.5rem);
  }
  .tw-contact-method-grid,
  .tw-location-panel {
    grid-template-columns: 1fr;
  }
  .tw-contact-method-grid {
    max-width: 560px;
    margin-inline: auto;
  }
  .tw-location-panel {
    padding: 28px;
  }
}
@media (max-width: 620px) {
  .tw-contact-overlay {
    background: linear-gradient(90deg, rgba(0,30,68,.98), rgba(0,41,91,.88));
  }
  .tw-contact-hero-inner {
    padding: 44px 0 36px;
  }
  .tw-contact-copy h1 {
    margin-top: 18px;
    font-size: clamp(2.5rem, 13vw, 3.6rem);
  }
  .tw-contact-copy p {
    font-size: 15px;
    line-height: 1.62;
  }
  .tw-contact-main-card {
    padding: 20px;
    border-radius: 18px;
  }
  .tw-contact-main-card h2 {
    font-size: 25px;
  }
  .tw-contact-main-card li {
    grid-template-columns: 42px minmax(0, 1fr);
    padding: 12px;
  }
  .tw-contact-main-card li > span {
    width: 42px;
    height: 42px;
    font-size: 17px;
  }
  .tw-contact-method-card {
    min-height: auto;
    padding: 26px;
  }
  .tw-contact-location {
    padding-bottom: 54px;
  }
  .tw-location-panel {
    width: min(100% - 28px, 1210px);
    padding: 20px;
    border-radius: 16px;
  }
  .tw-location-copy h2 {
    font-size: 2rem;
  }
  .tw-map-card {
    min-height: auto;
    padding: 24px 18px;
  }
  .tw-map-pin {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    font-size: 28px;
  }
}

/* =========================================================
   Solicitação de Serviços — visual profissional responsivo
   Escopo: somente body.request-page
   ========================================================= */
.request-page {
  background:
    radial-gradient(circle at 10% 0%, rgba(100, 172, 221, 0.18), transparent 28%),
    linear-gradient(180deg, #f8fcff 0%, #eef7fd 44%, #ffffff 100%);
}

.request-page .tw-request-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  padding: clamp(76px, 8vw, 116px) 0 clamp(54px, 6vw, 86px);
  background:
    linear-gradient(90deg, rgba(4, 34, 68, 0.96), rgba(18, 77, 124, 0.88)),
    radial-gradient(circle at 80% 15%, rgba(100, 172, 221, 0.38), transparent 34%);
}

.request-page .tw-request-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.10) 0 1px, transparent 1px 100%),
    radial-gradient(circle at 84% 56%, rgba(100, 172, 221, 0.26), transparent 34%);
  background-size: 90px 90px, auto;
  opacity: 0.38;
  pointer-events: none;
}

.request-page .tw-request-hero::after {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  right: -170px;
  bottom: -230px;
  border: 72px solid rgba(100, 172, 221, 0.18);
  border-radius: 999px;
  pointer-events: none;
}

.request-page .tw-request-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.72fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: center;
}

.request-page .tw-request-copy h1 {
  max-width: 780px;
  margin: 18px 0 18px;
  font-size: clamp(2.7rem, 5.8vw, 5.75rem);
  line-height: 0.92;
  letter-spacing: -0.075em;
  font-weight: 900;
}

.request-page .tw-request-copy p {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
  line-height: 1.75;
}

.request-page .tw-request-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.request-page .tw-request-hero-card {
  position: relative;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255,255,255,.18), rgba(255,255,255,.08));
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.request-page .tw-request-hero-card > span,
.request-page .tw-section-kicker {
  display: inline-flex;
  width: fit-content;
  color: #0866d8;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.request-page .tw-request-hero-card > span {
  color: #9fdbff;
}

.request-page .tw-request-hero-card h2 {
  margin: 8px 0 18px;
  font-size: clamp(1.55rem, 2.2vw, 2.25rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.request-page .tw-request-hero-card ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
  counter-reset: requestStep;
}

.request-page .tw-request-hero-card li {
  position: relative;
  min-height: 72px;
  padding: 16px 16px 16px 70px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  background: rgba(4, 31, 62, 0.30);
  counter-increment: requestStep;
}

.request-page .tw-request-hero-card li::before {
  content: counter(requestStep);
  position: absolute;
  left: 16px;
  top: 17px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, #64acdd, #0b6dff);
  box-shadow: 0 14px 30px rgba(0, 110, 255, .22);
  font-weight: 900;
}

.request-page .tw-request-hero-card strong,
.request-page .tw-request-hero-card small {
  display: block;
}

.request-page .tw-request-hero-card small {
  color: rgba(255,255,255,.68);
  margin-top: 2px;
}

.request-page .tw-request-main {
  padding: clamp(54px, 7vw, 92px) 0 clamp(70px, 8vw, 110px);
}

.request-page .tw-request-shell {
  display: grid;
  gap: 28px;
}

.request-page .tw-request-choice {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 24px;
  align-items: center;
  padding: clamp(24px, 3.3vw, 38px);
  border: 1px solid rgba(39, 78, 118, 0.14);
  border-radius: 34px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 24px 70px rgba(19, 66, 108, 0.10);
}

.request-page .tw-request-choice h2 {
  margin: 8px 0 10px;
  color: #0f2a45;
  font-size: clamp(2rem, 3.7vw, 3.65rem);
  line-height: .98;
  letter-spacing: -0.06em;
}

.request-page .tw-request-choice p {
  max-width: 560px;
  margin: 0;
  color: #61758d;
  font-size: 1.06rem;
}

.request-page .tw-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.request-page .choice-card {
  min-height: 168px;
  text-align: left;
  padding: 22px;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff, #f4fbff);
  border: 1px solid rgba(39, 78, 118, .14);
  color: #123452;
  box-shadow: 0 16px 42px rgba(39, 78, 118, .08);
  transform: none;
}

.request-page .choice-card:hover,
.request-page .choice-card:focus-visible {
  transform: translateY(-5px);
  box-shadow: 0 24px 56px rgba(39, 78, 118, .14);
}

.request-page .choice-card.active {
  color: #ffffff;
  background: linear-gradient(135deg, #0a64f7, #274e76 78%);
  border-color: rgba(255,255,255,.22);
  box-shadow: 0 28px 64px rgba(10, 100, 247, .22);
}

.request-page .tw-choice-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 18px;
  background: rgba(100,172,221,.18);
  font-size: 1.35rem;
}

.request-page .choice-card.active .tw-choice-icon {
  background: rgba(255,255,255,.18);
}

.request-page .choice-card strong {
  font-size: 1.12rem;
  line-height: 1.15;
}

.request-page .choice-card span:last-child {
  color: inherit;
  opacity: .76;
  line-height: 1.5;
}

.request-page .tw-request-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: start;
}

.request-page .tw-request-content {
  min-width: 0;
}

.request-page .tw-request-form {
  padding: clamp(24px, 3.5vw, 42px);
  border-radius: 34px;
  border: 1px solid rgba(39, 78, 118, .14);
  background: rgba(255,255,255,.94);
  box-shadow: 0 28px 80px rgba(19, 66, 108, .12);
}

.request-page .tw-form-head {
  margin-bottom: 18px;
}

.request-page .tw-form-head h2,
.request-page .form-step h2 {
  margin: 8px 0 8px;
  color: #0f2a45;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.request-page .tw-form-head p,
.request-page .form-step > p {
  margin: 0 0 18px;
  color: #62758a;
}

.request-page .notice {
  border: 1px solid rgba(10, 100, 247, .13);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(238,247,253,.95), rgba(255,255,255,.86));
  color: #49647f;
  padding: 16px 18px;
}

.request-page .step-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 26px 0 28px;
  padding: 8px;
  border-radius: 22px;
  background: #eef7fd;
  border: 1px solid rgba(39, 78, 118, .12);
}

.request-page .step-tab {
  min-height: 54px;
  border-radius: 16px;
  border: 0;
  background: transparent;
  color: #274e76;
  font-weight: 900;
  cursor: pointer;
}

.request-page .step-tab.active {
  color: #ffffff;
  background: linear-gradient(135deg, #0b6dff, #274e76);
  box-shadow: 0 14px 30px rgba(11, 109, 255, .18);
}

.request-page .form-grid {
  gap: 18px;
}

.request-page .field label,
.request-page .field-label {
  color: #132f4c;
  font-weight: 900;
  margin-bottom: 7px;
}

.request-page .input,
.request-page textarea {
  min-height: 56px;
  border-radius: 18px;
  border: 1px solid rgba(39, 78, 118, .18);
  background: #f9fdff;
  color: #102a44;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.request-page textarea {
  min-height: 150px;
  resize: vertical;
}

.request-page .input:focus,
.request-page textarea:focus {
  outline: none;
  background: #ffffff;
  border-color: rgba(10,100,247,.56);
  box-shadow: 0 0 0 4px rgba(10,100,247,.10);
}

.request-page .field-help,
.request-page .optional {
  color: #6b7f95;
}

.request-page .radio-group,
.request-page .supply-options {
  gap: 12px;
}

.request-page .radio-option,
.request-page .check-card {
  border-radius: 18px;
  border: 1px solid rgba(39,78,118,.14);
  background: #f9fdff;
  color: #183552;
}

.request-page .radio-option:hover,
.request-page .check-card:hover {
  border-color: rgba(10,100,247,.34);
  box-shadow: 0 12px 28px rgba(39,78,118,.08);
}

.request-page .review-box {
  border-radius: 22px;
  border: 1px solid rgba(39,78,118,.12);
  background: linear-gradient(180deg, #f8fcff, #ffffff);
  padding: 18px;
}

.request-page .privacy-check.tw-privacy {
  border: 1px solid rgba(39,78,118,.14);
  border-radius: 20px;
  background: #f7fbff;
  padding: 16px 18px;
  color: #3c5770;
}

.request-page .privacy-check.tw-privacy a {
  color: #0866d8;
  font-weight: 900;
}

.request-page .step-actions {
  margin-top: 24px;
}

.request-page .step-actions.split {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.request-page .tw-request-sidebar {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 16px;
}

.request-page .tw-side-card {
  padding: 24px;
  border-radius: 28px;
  background: rgba(255,255,255,.90);
  border: 1px solid rgba(39,78,118,.13);
  box-shadow: 0 22px 58px rgba(19,66,108,.10);
}

.request-page .tw-side-card h3 {
  margin: 0 0 10px;
  color: #0f2a45;
  font-size: 1.35rem;
  line-height: 1.1;
  letter-spacing: -.035em;
}

.request-page .tw-side-card p,
.request-page .tw-side-card li {
  color: #607489;
}

.request-page .tw-side-card ul {
  margin: 0;
  padding-left: 18px;
}

.request-page .tw-side-card li + li {
  margin-top: 9px;
}

.request-page .tw-side-card-dark {
  color: #ffffff;
  background:
    radial-gradient(circle at 86% 12%, rgba(100,172,221,.32), transparent 34%),
    linear-gradient(145deg, #062746, #0a4b8f 70%, #0b6dff);
  border-color: rgba(255,255,255,.14);
}

.request-page .tw-side-card-dark span {
  color: #9fdbff;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 900;
}

.request-page .tw-side-card-dark h3,
.request-page .tw-side-card-dark p {
  color: #ffffff;
}

.request-page .tw-side-card-dark p {
  opacity: .78;
}

@media (max-width: 1060px) {
  .request-page .tw-request-hero-inner,
  .request-page .tw-request-choice,
  .request-page .tw-request-layout {
    grid-template-columns: 1fr;
  }

  .request-page .tw-request-sidebar {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .request-page .tw-request-hero {
    padding-top: 54px;
  }

  .request-page .tw-request-copy h1 {
    letter-spacing: -0.055em;
  }

  .request-page .tw-choice-grid,
  .request-page .step-tabs,
  .request-page .tw-request-sidebar {
    grid-template-columns: 1fr;
  }

  .request-page .choice-card {
    min-height: auto;
  }

  .request-page .tw-request-form,
  .request-page .tw-request-choice {
    border-radius: 26px;
  }

  .request-page .step-actions.split,
  .request-page .step-actions {
    display: grid;
  }

  .request-page .step-actions .tw-btn,
  .request-page .tw-request-actions .tw-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .request-page .tw-request-main {
    padding-top: 38px;
  }

  .request-page .tw-request-hero-card,
  .request-page .tw-request-choice,
  .request-page .tw-request-form,
  .request-page .tw-side-card {
    padding: 20px;
  }

  .request-page .tw-request-hero-card li {
    padding-left: 58px;
  }

  .request-page .tw-request-hero-card li::before {
    left: 12px;
  }

  .request-page .step-tab {
    min-height: 48px;
    font-size: .92rem;
  }

  .request-page .floating-whatsapp span {
    display: none;
  }
}

/* =========================================================
   CONSULTAR OS TECHWEL — visual alinhado com home/contato/solicitação
   Escopo: somente body.os-page para não afetar backend nem outras páginas.
   ========================================================= */
.os-page {
  background: #f6fbff;
}
.os-page .site-header.home-header {
  position: sticky;
  top: 0;
  z-index: 60;
}
.tw-os-hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  color: #ffffff;
  background: #061f3f;
}
.tw-os-bg,
.tw-os-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tw-os-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(85,181,255,.30), transparent 34%),
    linear-gradient(90deg, rgba(0, 30, 68, .98) 0%, rgba(0, 43, 94, .93) 40%, rgba(0, 39, 85, .62) 72%, rgba(0, 19, 42, .52) 100%);
}
.tw-os-hero-inner {
  position: relative;
  z-index: 2;
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 620px) minmax(340px, 480px);
  gap: 64px;
  align-items: center;
  padding: 72px 0;
}
.tw-os-copy h1 {
  max-width: 660px;
  margin: 22px 0 22px;
  font-size: clamp(3.15rem, 5.9vw, 5.35rem);
  line-height: .92;
  letter-spacing: -.075em;
  font-weight: 950;
}
.tw-os-copy p {
  max-width: 570px;
  margin: 0;
  color: rgba(255,255,255,.86);
  font-size: 17px;
  line-height: 1.75;
}
.tw-os-access-card {
  position: relative;
  padding: 34px;
  border-radius: 22px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(255,255,255,.36);
  box-shadow: 0 30px 90px rgba(0, 18, 42, .30);
  color: #091a31;
  overflow: hidden;
}
.tw-os-access-card::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -92px;
  top: -96px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0,109,255,.20), transparent 66%);
}
.tw-main-card-label {
  position: relative;
  display: inline-flex;
  margin-bottom: 12px;
  color: #006dff;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.tw-os-access-card h2 {
  position: relative;
  margin: 0 0 12px;
  color: #07192f;
  font-size: 31px;
  line-height: 1.05;
  letter-spacing: -.05em;
  font-weight: 950;
}
.tw-os-access-card p {
  position: relative;
  margin: 0 0 24px;
  color: #607489;
  line-height: 1.68;
}
.tw-os-credential-list {
  position: relative;
  display: grid;
  gap: 12px;
  margin: 0 0 22px;
}
.tw-os-credential-list div {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 16px;
  border-radius: 16px;
  background: #f2f9ff;
  border: 1px solid rgba(0,109,255,.10);
}
.tw-os-credential-list span {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, #0b7dff, #005ee8);
  font-size: 13px;
  font-weight: 950;
}
.tw-os-credential-list strong {
  display: block;
  color: #0a233e;
  font-weight: 950;
  line-height: 1.1;
}
.tw-os-credential-list small {
  display: block;
  margin-top: 5px;
  color: #657a90;
  line-height: 1.35;
}
.tw-os-card-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  border-radius: 13px;
  color: #ffffff;
  background: linear-gradient(135deg, #0b7dff, #005ee8);
  box-shadow: 0 18px 34px rgba(0,109,255,.24);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}
.tw-os-guide {
  background: linear-gradient(180deg, #f8fcff 0%, #eef8ff 100%);
}
.tw-os-step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tw-os-step-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  border-radius: 18px;
  border: 1px solid var(--tw-line);
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 60px rgba(0, 52, 108, .08);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.tw-os-step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,109,255,.18);
  box-shadow: 0 26px 78px rgba(0, 62, 128, .14);
}
.tw-os-step-card > span {
  margin-bottom: 12px;
  color: #006dff;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.tw-os-step-card h3 {
  margin: 0 0 14px;
  color: #07192f;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -.035em;
  font-weight: 950;
}
.tw-os-step-card p {
  margin: 0;
  color: #61778d;
  line-height: 1.78;
}
.tw-os-panel-section {
  padding: 34px 0 72px;
  background: #f8fcff;
}
.tw-os-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 40px;
  align-items: center;
  min-height: 395px;
  padding: 42px;
  border-radius: 20px;
  color: #ffffff;
  background:
    radial-gradient(circle at 78% 16%, rgba(0,109,255,.34), transparent 28%),
    linear-gradient(135deg, #002b62 0%, #00356d 54%, #001c3e 100%);
  box-shadow: 0 30px 85px rgba(0, 48, 108, .22);
  overflow: hidden;
}
.tw-os-panel-copy span {
  display: block;
  margin-bottom: 14px;
  color: #74c8ff;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.tw-os-panel-copy h2 {
  max-width: 640px;
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(2rem, 3.8vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -.055em;
  font-weight: 950;
}
.tw-os-panel-copy p {
  max-width: 610px;
  margin: 0;
  color: rgba(255,255,255,.78);
  line-height: 1.72;
}
.tw-os-support-card {
  padding: 28px;
  border-radius: 18px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.tw-os-support-card h3 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -.035em;
  font-weight: 950;
}
.tw-os-support-card p {
  margin: 0 0 14px;
  color: rgba(255,255,255,.82);
  line-height: 1.65;
  font-weight: 760;
}
.tw-os-support-card strong {
  color: #ffffff;
  font-size: 22px;
  font-weight: 950;
}
.os-page .tw-newsletter-band {
  padding-top: 0;
}
@media (max-width: 1060px) {
  .tw-os-hero-inner,
  .tw-os-panel {
    grid-template-columns: 1fr;
  }
  .tw-os-access-card {
    max-width: 620px;
  }
  .tw-os-panel {
    gap: 28px;
  }
}
@media (max-width: 920px) {
  .tw-os-hero,
  .tw-os-hero-inner {
    min-height: auto;
  }
  .tw-os-hero-inner {
    padding: 58px 0;
  }
  .tw-os-copy h1 {
    font-size: clamp(3rem, 11vw, 4.55rem);
  }
  .tw-os-step-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-inline: auto;
  }
  .tw-os-step-card {
    min-height: auto;
  }
}
@media (max-width: 620px) {
  .tw-os-overlay {
    background: linear-gradient(90deg, rgba(0,30,68,.98), rgba(0,41,91,.88));
  }
  .tw-os-hero-inner {
    padding: 44px 0 36px;
  }
  .tw-os-copy h1 {
    margin-top: 18px;
    font-size: clamp(2.48rem, 12vw, 3.55rem);
  }
  .tw-os-copy p {
    font-size: 15px;
    line-height: 1.62;
  }
  .tw-os-access-card,
  .tw-os-step-card,
  .tw-os-panel,
  .tw-os-support-card {
    border-radius: 16px;
  }
  .tw-os-access-card,
  .tw-os-step-card {
    padding: 24px;
  }
  .tw-os-panel {
    padding: 22px;
  }
  .tw-os-credential-list div {
    grid-template-columns: 44px minmax(0, 1fr);
    padding: 14px;
  }
  .tw-os-credential-list span {
    width: 44px;
    height: 44px;
  }
  .tw-os-panel-section {
    padding-bottom: 54px;
  }
}

/* Página Impressoras — identidade visual premium alinhada à nova TechWel */
.printers-page {
  background:
    radial-gradient(circle at 10% 0%, rgba(100, 172, 221, .18), transparent 34%),
    linear-gradient(180deg, #f7fcff 0%, #eef8ff 46%, #ffffff 100%);
}

.printers-page .site-header.home-header {
  position: sticky;
  top: 0;
  z-index: 60;
}

.tw-printers-page {
  overflow: hidden;
}

.tw-printers-hero {
  position: relative;
  min-height: 675px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  color: #ffffff;
  background: #061f3f;
  isolation: isolate;
}

.tw-printers-hero::before,
.tw-printers-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.tw-printers-hero::before {
  width: 620px;
  height: 620px;
  right: -255px;
  top: 118px;
  border-radius: 999px;
  border: 74px solid rgba(85, 181, 255, .11);
  z-index: 0;
}

.tw-printers-hero::after {
  width: 450px;
  height: 450px;
  right: -122px;
  top: 178px;
  border-radius: 999px;
  border: 56px solid rgba(85, 181, 255, .08);
  z-index: 0;
}

.tw-printers-hero-media,
.tw-printers-hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tw-printers-hero-media {
  z-index: -3;
}

.tw-printers-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 83% 14%, rgba(85,181,255,.22), transparent 28%),
    linear-gradient(90deg, rgba(0, 27, 58, .975) 0%, rgba(4, 40, 82, .94) 42%, rgba(9, 55, 106, .72) 70%, rgba(3, 27, 58, .56) 100%);
}

.tw-printers-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .16;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, #000, transparent 86%);
}

.tw-printers-hero-inner {
  position: relative;
  z-index: 1;
  min-height: 675px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, .88fr);
  gap: 56px;
  align-items: center;
}

.tw-page-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 8px 14px;
  margin-bottom: 18px;
  border-radius: 999px;
  color: #dff4ff;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.13);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .075em;
  text-transform: uppercase;
}

.tw-printers-hero-copy h1 {
  max-width: 720px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(3.05rem, 5.9vw, 5.75rem);
  line-height: .94;
  letter-spacing: -.075em;
  font-weight: 950;
}

.tw-printers-hero-copy p {
  max-width: 630px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.80);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.7;
}

.tw-printers-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.tw-printers-actions .btn {
  min-height: 56px;
  border-radius: 16px;
  padding-inline: 24px;
  box-shadow: 0 18px 40px rgba(0,0,0,.16);
}

.tw-printers-actions .btn-primary {
  color: #083057;
  background: linear-gradient(135deg, #ffffff, #dff4ff);
}

.tw-printers-actions .btn-ghost {
  color: #ffffff;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.22);
}

.tw-printers-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.tw-printers-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  color: rgba(255,255,255,.88);
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.14);
  font-size: 12px;
  font-weight: 850;
}

.tw-printers-showcase {
  position: relative;
  min-height: 520px;
}

.tw-printers-orbit {
  position: absolute;
  inset: 42px 18px 26px;
  border-radius: 44px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255,255,255,.45), transparent 24%),
    linear-gradient(150deg, rgba(255,255,255,.22), rgba(255,255,255,.08));
  border: 1px solid rgba(255,255,255,.18);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.16),
    0 34px 90px rgba(0,0,0,.22);
  backdrop-filter: blur(18px);
}

.tw-featured-printer,
.tw-printers-note {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(255,255,255,.34);
  background: rgba(255,255,255,.92);
  box-shadow: 0 24px 70px rgba(0, 20, 48, .24);
  backdrop-filter: blur(18px);
}

.tw-featured-printer img {
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 16px 22px rgba(8, 42, 82, .18));
}

.tw-featured-main {
  left: 50%;
  top: 54%;
  width: min(360px, 78%);
  min-height: 380px;
  transform: translate(-50%, -50%);
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 8px;
  padding: 30px;
  border-radius: 36px;
}

.tw-featured-main span {
  padding: 7px 12px;
  border-radius: 999px;
  color: #0a477a;
  background: #e9f7ff;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.tw-featured-main img {
  width: 100%;
  height: 230px;
}

.tw-featured-main strong {
  margin-top: 6px;
  color: #082a52;
  font-size: 29px;
  line-height: 1;
  letter-spacing: -.04em;
  font-weight: 950;
}

.tw-featured-main small {
  color: #62768a;
  font-weight: 760;
}

.tw-featured-card {
  width: 178px;
  min-height: 164px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 8px;
  padding: 16px;
  border-radius: 26px;
}

.tw-featured-card img {
  width: 132px;
  height: 86px;
}

.tw-featured-card strong {
  color: #082a52;
  font-size: 14px;
  line-height: 1.15;
  text-align: center;
  font-weight: 950;
}

.tw-card-a {
  left: 2%;
  top: 78px;
  transform: rotate(-5deg);
}

.tw-card-b {
  right: 0;
  bottom: 70px;
  transform: rotate(5deg);
}

.tw-printers-note {
  left: 4%;
  bottom: 54px;
  max-width: 230px;
  padding: 18px 20px;
  border-radius: 22px;
  color: #082a52;
}

.tw-printers-note strong {
  display: block;
  font-size: 17px;
  line-height: 1.1;
  font-weight: 950;
}

.tw-printers-note span {
  display: block;
  margin-top: 4px;
  color: #62768a;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 730;
}

.tw-printers-benefits {
  position: relative;
  z-index: 2;
  margin-top: -38px;
  padding: 0 0 64px;
}

.tw-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.tw-benefit-grid article {
  min-height: 190px;
  padding: 28px;
  border-radius: 24px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(39,78,118,.10);
  box-shadow: 0 24px 70px rgba(17,32,51,.10);
}

.tw-benefit-grid article span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--azul-noite), var(--azul-claro));
  font-size: 12px;
  font-weight: 950;
}

.tw-benefit-grid h2 {
  margin: 0 0 9px;
  color: #082a52;
  font-size: 22px;
  line-height: 1.12;
  letter-spacing: -.035em;
  font-weight: 950;
}

.tw-benefit-grid p {
  margin: 0;
  color: #607387;
  line-height: 1.62;
}

.tw-printers-catalog {
  padding-top: 38px;
  background:
    radial-gradient(circle at 5% 12%, rgba(100, 172, 221, .14), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f3faff 100%);
}

.tw-catalog-heading {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 34px;
  align-items: end;
}

.tw-catalog-heading h2 {
  max-width: 760px;
}

.tw-catalog-mini-card {
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(135deg, #082a52, #164f7f);
  color: #ffffff;
  box-shadow: 0 22px 54px rgba(8,42,82,.18);
}

.tw-catalog-mini-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: -.035em;
  font-weight: 950;
}

.tw-catalog-mini-card span {
  color: rgba(255,255,255,.76);
  line-height: 1.55;
  font-size: 14px;
}

.tw-printers-catalog .printer-smart-panel {
  position: sticky;
  top: 90px;
  z-index: 4;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1fr);
  align-items: center;
  margin: 28px 0 18px;
  padding: 14px;
  border-radius: 24px;
  background: rgba(255,255,255,.84);
  border-color: rgba(39,78,118,.10);
  box-shadow: 0 22px 60px rgba(17,32,51,.12);
}

.tw-printers-catalog .printer-premium-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 20px 0 24px;
}

.tw-printers-catalog .printer-premium-stats div {
  position: relative;
  overflow: hidden;
  padding: 20px 22px;
  border-radius: 24px;
}

.tw-printers-catalog .printer-premium-stats div::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -58px;
  top: -62px;
  border-radius: 999px;
  background: rgba(100,172,221,.18);
}

.tw-printers-catalog .premium-category-grid {
  gap: 20px;
}

.tw-printers-catalog .premium-category-card {
  border-radius: 28px;
  border-color: rgba(39,78,118,.10);
  background: rgba(255,255,255,.94);
}

.tw-printers-catalog .premium-category-toggle {
  grid-template-columns: 156px minmax(0, 1fr) 48px;
  gap: 22px;
  padding: 20px;
}

.tw-printers-catalog .premium-category-media {
  min-height: 122px;
  border-radius: 24px;
}

.tw-printers-catalog .premium-category-copy strong {
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  letter-spacing: -.04em;
}

.tw-printers-catalog .premium-category-copy small {
  max-width: 700px;
  font-size: .98rem;
}

.tw-printers-catalog .category-arrow {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #082a52, #164f7f);
}

.tw-printers-catalog .premium-category-panel {
  padding: 0 20px 20px;
}

.tw-printers-catalog .premium-printer-card {
  border-radius: 24px;
}

.tw-printers-catalog .premium-printer-photo {
  min-height: 126px;
}

@media (max-width: 1080px) {
  .tw-printers-hero-inner,
  .tw-catalog-heading,
  .tw-printers-catalog .printer-smart-panel {
    grid-template-columns: 1fr;
  }

  .tw-printers-hero-inner {
    gap: 36px;
  }

  .tw-printers-showcase {
    min-height: 440px;
    max-width: 620px;
    width: 100%;
    margin-inline: auto;
  }

  .tw-catalog-mini-card {
    max-width: 520px;
  }

  .tw-printers-catalog .printer-smart-panel {
    position: relative;
    top: auto;
  }
}

@media (max-width: 860px) {
  .tw-printers-hero {
    min-height: auto;
    padding: 54px 0 70px;
  }

  .tw-benefit-grid {
    grid-template-columns: 1fr;
    max-width: 640px;
    margin-inline: auto;
  }

  .tw-benefit-grid article {
    min-height: auto;
  }

  .tw-printers-catalog .premium-category-toggle {
    grid-template-columns: 104px minmax(0, 1fr) 40px;
    gap: 14px;
    padding: 14px;
  }

  .tw-printers-catalog .premium-category-media {
    min-height: 86px;
    border-radius: 18px;
  }

  .tw-printers-catalog .category-arrow {
    width: 40px;
    height: 40px;
  }

  .tw-printers-catalog .printer-premium-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .tw-printers-hero {
    padding: 42px 0 62px;
  }

  .tw-printers-hero-copy h1 {
    font-size: clamp(2.55rem, 12vw, 3.75rem);
    letter-spacing: -.065em;
  }

  .tw-printers-hero-copy p {
    font-size: 15px;
    line-height: 1.62;
  }

  .tw-printers-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .tw-printers-actions .btn {
    width: 100%;
  }

  .tw-printers-proof {
    gap: 8px;
  }

  .tw-printers-showcase {
    min-height: 350px;
  }

  .tw-printers-orbit {
    inset: 32px 0 20px;
    border-radius: 30px;
  }

  .tw-featured-main {
    width: 74%;
    min-height: 275px;
    padding: 20px;
    border-radius: 26px;
  }

  .tw-featured-main img {
    height: 152px;
  }

  .tw-featured-main strong {
    font-size: 22px;
  }

  .tw-featured-card {
    width: 132px;
    min-height: 118px;
    padding: 12px;
    border-radius: 20px;
  }

  .tw-featured-card img {
    width: 100px;
    height: 62px;
  }

  .tw-featured-card strong {
    font-size: 12px;
  }

  .tw-card-a {
    left: -8px;
    top: 34px;
  }

  .tw-card-b {
    right: -8px;
    bottom: 34px;
  }

  .tw-printers-note {
    left: 50%;
    bottom: 12px;
    width: min(240px, 82%);
    transform: translateX(-50%);
    padding: 14px 16px;
    border-radius: 18px;
    text-align: center;
  }

  .tw-printers-benefits {
    padding-bottom: 42px;
  }

  .tw-benefit-grid article {
    padding: 22px;
    border-radius: 20px;
  }

  .tw-printers-catalog {
    padding-top: 26px;
  }

  .tw-catalog-heading {
    gap: 20px;
  }

  .tw-catalog-mini-card {
    padding: 18px;
    border-radius: 18px;
  }

  .tw-printers-catalog .premium-category-toggle {
    grid-template-columns: 76px minmax(0, 1fr) 34px;
    gap: 10px;
  }

  .tw-printers-catalog .premium-category-copy strong {
    font-size: 1.06rem;
  }

  .tw-printers-catalog .premium-category-copy small {
    font-size: .78rem;
  }

  .tw-printers-catalog .premium-category-panel {
    padding: 0 12px 12px;
  }
}

@media (max-width: 420px) {
  .tw-printers-showcase {
    min-height: 320px;
  }

  .tw-featured-main {
    width: 78%;
  }

  .tw-featured-card {
    width: 112px;
  }

  .tw-featured-card img {
    width: 86px;
  }

  .tw-printers-note {
    display: none;
  }
}

/* =========================================================
   SUPRIMENTOS TECHWEL — visual premium alinhado com home/impressoras
   Escopo: body.supplies-page. Backend preservado.
   ========================================================= */
.supplies-page {
  background:
    radial-gradient(circle at 8% 0%, rgba(100, 172, 221, .18), transparent 34%),
    linear-gradient(180deg, #f7fcff 0%, #eef8ff 46%, #ffffff 100%);
}
.supplies-page .site-header.home-header {
  position: sticky;
  top: 0;
  z-index: 60;
}
.tw-supplies-page { overflow: hidden; }
.tw-supplies-hero {
  position: relative;
  min-height: 675px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  color: #ffffff;
  background: #061f3f;
  isolation: isolate;
}
.tw-supplies-hero::before,
.tw-supplies-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.tw-supplies-hero::before {
  width: 620px;
  height: 620px;
  right: -260px;
  top: 112px;
  border-radius: 999px;
  border: 74px solid rgba(85, 181, 255, .11);
  z-index: 0;
}
.tw-supplies-hero::after {
  width: 450px;
  height: 450px;
  right: -118px;
  top: 178px;
  border-radius: 999px;
  border: 56px solid rgba(85, 181, 255, .08);
  z-index: 0;
}
.tw-supplies-hero-media,
.tw-supplies-hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tw-supplies-hero-media { z-index: -3; }
.tw-supplies-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 84% 14%, rgba(85,181,255,.23), transparent 28%),
    linear-gradient(90deg, rgba(0, 27, 58, .98) 0%, rgba(4, 40, 82, .95) 42%, rgba(9, 55, 106, .73) 70%, rgba(3, 27, 58, .58) 100%);
}
.tw-supplies-hero-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .15;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, #000, transparent 86%);
}
.tw-supplies-hero-inner {
  position: relative;
  z-index: 1;
  min-height: 675px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, .88fr);
  gap: 56px;
  align-items: center;
}
.tw-supplies-copy h1 {
  max-width: 760px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(3.05rem, 5.65vw, 5.65rem);
  line-height: .94;
  letter-spacing: -.075em;
  font-weight: 950;
}
.tw-supplies-copy p {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.82);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.72;
}
.tw-supplies-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}
.tw-supplies-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.tw-supplies-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  color: rgba(255,255,255,.88);
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.15);
  font-size: 13px;
  font-weight: 850;
}
.tw-supplies-showcase {
  position: relative;
  min-height: 490px;
}
.tw-supplies-showcase::before {
  content: "";
  position: absolute;
  inset: 50px 22px 60px 22px;
  border-radius: 44px;
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.20);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.16), 0 34px 90px rgba(0, 16, 37, .22);
  backdrop-filter: blur(8px);
}
.tw-supply-feature,
.tw-supply-float,
.tw-supply-note {
  position: absolute;
  border-radius: 26px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 26px 70px rgba(0, 30, 70, .24);
}
.tw-supply-feature-main {
  inset: 84px 54px auto 54px;
  min-height: 318px;
  padding: 28px;
  display: grid;
  align-content: start;
  justify-items: center;
  color: var(--tw-text);
}
.tw-supply-feature-main span {
  justify-self: start;
  display: inline-flex;
  padding: 9px 14px;
  margin-bottom: 2px;
  border-radius: 999px;
  color: #074579;
  background: #e5f5ff;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.tw-supply-feature-main img {
  width: min(100%, 350px);
  margin: -10px auto -4px;
  display: block;
}
.tw-supply-feature-main strong {
  color: #061b34;
  font-size: 23px;
  font-weight: 950;
}
.tw-supply-feature-main small {
  color: var(--tw-muted);
  font-weight: 700;
}
.tw-supply-float {
  width: 210px;
  padding: 14px;
  transform: rotate(-4deg);
  color: #062344;
}
.tw-supply-float img {
  width: 100%;
  display: block;
  border-radius: 18px;
}
.tw-supply-float strong {
  display: block;
  margin: 4px 0 2px;
  text-align: center;
  color: #073969;
  font-size: 15px;
  font-weight: 950;
}
.tw-supply-float-a { left: 0; top: 22px; }
.tw-supply-float-b { right: 0; bottom: 16px; transform: rotate(5deg); }
.tw-supply-note {
  left: 56px;
  bottom: 14px;
  max-width: 285px;
  padding: 18px 20px;
  color: #082344;
  background: rgba(255,255,255,.94);
}
.tw-supply-note strong {
  display: block;
  margin-bottom: 4px;
  font-size: 18px;
  font-weight: 950;
}
.tw-supply-note span {
  color: var(--tw-muted);
  font-size: 13px;
  font-weight: 700;
}
.tw-supplies-benefits {
  padding: 34px 0 72px;
  background: linear-gradient(180deg, #f7fcff, #ffffff);
}
.tw-supplies-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.tw-supplies-benefit-grid article {
  padding: 28px;
  border-radius: 24px;
  background: rgba(255,255,255,.80);
  border: 1px solid rgba(0, 64, 130, .09);
  box-shadow: 0 22px 52px rgba(0, 43, 91, .08);
}
.tw-supplies-benefit-grid span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 14px;
  color: #006dff;
  background: #e8f5ff;
  font-weight: 950;
}
.tw-supplies-benefit-grid h2 {
  margin: 0 0 10px;
  color: #082344;
  font-size: 21px;
  font-weight: 950;
}
.tw-supplies-benefit-grid p {
  margin: 0;
  color: var(--tw-muted);
  line-height: 1.7;
}
.tw-supplies-list {
  padding-top: 34px;
  background:
    radial-gradient(circle at 14% 10%, rgba(85,181,255,.11), transparent 28%),
    #f8fcff;
}
.tw-supply-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}
.tw-supply-card {
  min-height: 100%;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0, 64, 130, .10);
  box-shadow: 0 24px 64px rgba(0, 43, 91, .10);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.tw-supply-card:hover {
  transform: translateY(-7px);
  border-color: rgba(0, 109, 255, .22);
  box-shadow: 0 34px 80px rgba(0, 43, 91, .16);
}
.tw-supply-card figure {
  margin: 0 0 18px;
  border-radius: 22px;
  overflow: hidden;
  background: #f2f9ff;
}
.tw-supply-card figure img {
  width: 100%;
  display: block;
}
.tw-supply-card h3 {
  min-height: 56px;
  margin: 14px 0 10px;
  color: #07192f;
  font-size: 20px;
  font-weight: 950;
  line-height: 1.18;
}
.tw-supply-card p {
  min-height: 76px;
  margin: 0 0 22px;
  color: var(--tw-muted);
  line-height: 1.68;
}
.tw-supply-card a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  color: #17456f;
  background: #eaf6ff;
  border: 1px solid #cde5f7;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .035em;
}
.tw-supplies-cta {
  padding: 56px 0 72px;
  background: #f8fcff;
}
.tw-supplies-cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 42px;
  border-radius: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 84% 10%, rgba(85,181,255,.28), transparent 26%),
    linear-gradient(135deg, #00306d, #001c40);
  box-shadow: 0 30px 80px rgba(0, 48, 108, .18);
}
.tw-supplies-cta-panel h2 {
  margin: 14px 0 12px;
  color: #fff;
  font-size: clamp(2rem, 3.1vw, 3rem);
  line-height: 1.02;
  letter-spacing: -.055em;
  font-weight: 950;
}
.tw-supplies-cta-panel p {
  max-width: 720px;
  margin: 0;
  color: rgba(255,255,255,.78);
  line-height: 1.72;
}

@media (max-width: 1180px) {
  .tw-supplies-hero-inner { grid-template-columns: 1fr; padding: 54px 0; }
  .tw-supplies-showcase { min-height: 520px; max-width: 620px; width: 100%; }
  .tw-supply-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 920px) {
  .tw-supplies-hero { min-height: auto; }
  .tw-supplies-hero-inner { min-height: auto; }
  .tw-supplies-copy h1 { font-size: clamp(2.9rem, 11vw, 4.6rem); }
  .tw-supplies-benefit-grid { grid-template-columns: 1fr; }
  .tw-supplies-cta-panel { grid-template-columns: 1fr; padding: 30px; }
}
@media (max-width: 640px) {
  .tw-supplies-actions { flex-direction: column; }
  .tw-supplies-actions .tw-btn { width: 100%; }
  .tw-supplies-proof { display: grid; }
  .tw-supplies-showcase { min-height: auto; padding: 24px 0 0; }
  .tw-supplies-showcase::before { inset: 40px 0 0; }
  .tw-supply-feature,
  .tw-supply-float,
  .tw-supply-note { position: relative; inset: auto; width: 100%; transform: none; margin: 14px 0; }
  .tw-supply-feature-main { min-height: auto; }
  .tw-supply-grid { grid-template-columns: 1fr; }
  .tw-supply-card h3,
  .tw-supply-card p { min-height: auto; }
}

/* =========================================================
   HOME — formulário rápido em 3 etapas no hero
   Mantém o backend existente usando form_type=solicitacao_servicos.
   ========================================================= */
.tw-home-request-card {
  grid-column: 2;
  grid-row: 1;
  align-self: start;
  justify-self: end;
  width: min(100%, 430px);
  margin-top: 26px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(248,252,255,.96), rgba(226,241,252,.90));
  color: var(--tw-text);
  box-shadow: 0 30px 80px rgba(0, 20, 50, .30);
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
  overflow: hidden;
}
.tw-quick-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px 14px;
  border-bottom: 1px solid rgba(0, 68, 140, .10);
}
.tw-quick-card-head span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #0067e8;
  background: rgba(0,109,255,.10);
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
  white-space: nowrap;
}
.tw-quick-card-head strong {
  color: #092442;
  font-size: 20px;
  line-height: 1.05;
  letter-spacing: -.04em;
  text-align: right;
}
.tw-quick-form {
  padding: 16px 20px 20px;
}
.tw-quick-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}
.tw-quick-steps button {
  height: 34px;
  border: 0;
  border-radius: 999px;
  color: #315979;
  background: rgba(0, 62, 126, .08);
  font-weight: 950;
  cursor: pointer;
  transition: .2s ease;
}
.tw-quick-steps button.active {
  color: #fff;
  background: linear-gradient(135deg, #0b7dff, #005ee8);
  box-shadow: 0 12px 22px rgba(0,109,255,.22);
}
.tw-quick-steps button[aria-disabled="true"] {
  opacity: .55;
  cursor: not-allowed;
}
.tw-quick-step {
  display: grid;
  gap: 10px;
}
.tw-quick-step[hidden] { display: none; }
.tw-quick-step label {
  display: grid;
  gap: 7px;
  color: #163a5a;
  font-size: 12px;
  font-weight: 900;
}
.tw-quick-step input:not([type="checkbox"]),
.tw-quick-step textarea {
  width: 100%;
  border: 1px solid rgba(0, 80, 160, .14);
  border-radius: 14px;
  background: rgba(255,255,255,.88);
  color: #092442;
  font: inherit;
  font-size: 13px;
  font-weight: 750;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.70);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.tw-quick-step input:not([type="checkbox"]) {
  min-height: 44px;
  padding: 0 13px;
}
.tw-quick-step textarea {
  min-height: 78px;
  padding: 12px 13px;
  resize: vertical;
}
.tw-quick-step input:focus,
.tw-quick-step textarea:focus {
  border-color: rgba(0,109,255,.55);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(0,109,255,.12);
}
.tw-quick-step small {
  color: #668097;
  font-size: 11px;
  line-height: 1.45;
}
.tw-quick-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.tw-quick-next,
.tw-quick-submit,
.tw-quick-back {
  min-height: 44px;
  border: 0;
  border-radius: 14px;
  padding: 0 18px;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .02em;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.tw-quick-next,
.tw-quick-submit {
  color: #fff;
  background: linear-gradient(135deg, #0b7dff, #005ee8);
  box-shadow: 0 16px 28px rgba(0,109,255,.24);
}
.tw-quick-back {
  color: #174261;
  background: rgba(0,62,126,.09);
}
.tw-quick-next:hover,
.tw-quick-submit:hover,
.tw-quick-back:hover { transform: translateY(-1px); }
.tw-quick-actions {
  display: grid;
  grid-template-columns: .72fr 1fr;
  gap: 10px;
  margin-top: 2px;
}
.tw-quick-review {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid rgba(0,80,160,.10);
  border-radius: 16px;
  background: rgba(255,255,255,.72);
}
.tw-quick-review div {
  display: grid;
  gap: 2px;
}
.tw-quick-review strong {
  color: #0067e8;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.tw-quick-review span {
  color: #17354f;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}
.tw-quick-consent {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 9px !important;
  color: #435f76 !important;
  font-size: 11px !important;
  line-height: 1.35;
  font-weight: 750 !important;
}
.tw-quick-consent input { margin-top: 2px; }
.tw-quick-form .form-status {
  display: none;
  margin: 12px 0 0;
  padding: 10px 12px;
  border-radius: 13px;
  color: #063a22;
  background: rgba(35, 206, 117, .14);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.45;
}
.tw-quick-form .form-status.show { display: block; }
.tw-quick-form .form-status.error {
  color: #651a1a;
  background: rgba(255, 91, 91, .15);
}
.tw-quick-form .form-status a {
  color: inherit;
  font-weight: 950;
  text-decoration: underline;
}

@media (min-width: 1181px) {
  .tw-home-request-card + .tw-hero-metrics {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    margin-bottom: 38px;
  }
  .tw-home-request-card ~ .tw-hero-metrics {
    width: min(100%, 640px);
  }
}

@media (max-width: 1180px) {
  .tw-home-request-card {
    grid-column: auto;
    grid-row: auto;
    justify-self: start;
    width: min(100%, 520px);
    margin-top: 34px;
  }
}

@media (max-width: 920px) {
  .tw-home-request-card {
    width: 100%;
    max-width: 560px;
    border-radius: 20px;
  }
  .tw-quick-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .tw-home-request-card {
    margin-top: 28px;
    border-radius: 18px;
  }
  .tw-quick-card-head {
    padding: 16px 16px 12px;
  }
  .tw-quick-card-head strong {
    font-size: 18px;
  }
  .tw-quick-form {
    padding: 14px 16px 16px;
  }
  .tw-quick-actions {
    grid-template-columns: 1fr;
  }
  .tw-quick-next,
  .tw-quick-submit,
  .tw-quick-back {
    width: 100%;
  }
}

/* =========================================================
   SEJA UM TÉCNICO TECHWEL — visual alinhado com a nova identidade
   Escopo: somente body.technician-page. Backend preservado.
   ========================================================= */
.technician-page {
  background:
    radial-gradient(circle at 8% 0%, rgba(100, 172, 221, .18), transparent 34%),
    linear-gradient(180deg, #f7fcff 0%, #eef8ff 46%, #ffffff 100%);
}
.technician-page .site-header.home-header {
  position: sticky;
  top: 0;
  z-index: 60;
}
.tw-technician-page {
  overflow: hidden;
}
.tw-technician-hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  color: #ffffff;
  background: #061f3f;
  isolation: isolate;
}
.tw-technician-bg,
.tw-technician-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tw-technician-bg {
  z-index: -3;
}
.tw-technician-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 84% 14%, rgba(85,181,255,.23), transparent 28%),
    linear-gradient(90deg, rgba(0, 27, 58, .98) 0%, rgba(4, 40, 82, .95) 42%, rgba(9, 55, 106, .73) 70%, rgba(3, 27, 58, .58) 100%);
}
.tw-technician-grid-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .14;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, #000, transparent 86%);
}
.tw-technician-hero::before,
.tw-technician-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  z-index: 0;
}
.tw-technician-hero::before {
  width: 620px;
  height: 620px;
  right: -260px;
  top: 112px;
  border: 74px solid rgba(85, 181, 255, .11);
}
.tw-technician-hero::after {
  width: 450px;
  height: 450px;
  right: -118px;
  top: 178px;
  border: 56px solid rgba(85, 181, 255, .08);
}
.tw-technician-hero-inner {
  position: relative;
  z-index: 1;
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .72fr);
  gap: 54px;
  align-items: center;
}
.tw-technician-copy h1 {
  max-width: 760px;
  margin: 22px 0 0;
  color: #ffffff;
  font-size: clamp(3.05rem, 5.65vw, 5.7rem);
  line-height: 1.02;
  letter-spacing: -.04em;
  font-weight: 950;
}
.tw-technician-copy h1 span {
  color: #2f93ff;
}
.tw-technician-copy p {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.84);
  font-size: clamp(1rem, 1.45vw, 1.16rem);
  line-height: 1.72;
}
.tw-technician-card {
  position: relative;
  padding: 34px;
  border-radius: 32px;
  color: #ffffff;
  background: rgba(4, 31, 67, .62);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 34px 90px rgba(0, 16, 37, .28);
  backdrop-filter: blur(16px) saturate(145%);
  -webkit-backdrop-filter: blur(16px) saturate(145%);
}
.tw-technician-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.10);
  pointer-events: none;
}
.tw-technician-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 14px;
  border-radius: 999px;
  color: #dff4ff;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .075em;
  text-transform: uppercase;
}
.tw-technician-card h2 {
  margin: 20px 0 12px;
  color: #ffffff;
  font-size: clamp(1.7rem, 2.2vw, 2.35rem);
  line-height: 1.08;
  letter-spacing: -.045em;
}
.tw-technician-card p {
  margin: 0;
  color: rgba(255,255,255,.78);
  line-height: 1.65;
}
.tw-technician-card ul {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}
.tw-technician-card li {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 50px;
  padding: 10px 12px;
  border-radius: 18px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.13);
  color: rgba(255,255,255,.90);
  font-weight: 850;
}
.tw-technician-card li span {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, #1182ff, #0066df);
  font-size: 12px;
  font-weight: 950;
  flex: 0 0 auto;
}
.tw-technician-intro {
  padding-top: 92px;
}
.tw-technician-intro-grid,
.tw-technician-form-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  gap: 42px;
  align-items: start;
}
.tw-technician-text,
.tw-technician-benefits,
.tw-technician-form,
.tw-technician-form-heading {
  border: 1px solid rgba(0, 64, 130, .10);
  box-shadow: 0 24px 70px rgba(0, 43, 91, .10);
}
.tw-technician-text,
.tw-technician-benefits {
  border-radius: 30px;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.tw-technician-text {
  padding: 38px;
}
.tw-technician-text > span,
.tw-technician-form-heading > span {
  display: block;
  margin-bottom: 12px;
  color: #006dff;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.tw-technician-text h2,
.tw-technician-form-heading h2 {
  margin: 0;
  color: #07192f;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: -.055em;
}
.tw-technician-text p,
.tw-technician-form-heading p {
  margin: 18px 0 0;
  color: #64778d;
  font-size: 1.02rem;
  line-height: 1.75;
}
.tw-technician-notice {
  margin-top: 24px;
  padding: 18px 20px;
  border-radius: 20px;
  color: #12365c;
  background: #e9f6ff;
  border: 1px solid rgba(0,109,255,.11);
  font-weight: 800;
}
.tw-technician-benefits {
  display: grid;
  gap: 14px;
  padding: 28px;
}
.tw-technician-benefits div {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: 20px;
  background: rgba(242, 249, 255, .88);
  border: 1px solid rgba(0,109,255,.09);
}
.tw-technician-benefits span {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  border-radius: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, #1182ff, #0066df);
  font-weight: 950;
}
.tw-technician-benefits p {
  margin: 0;
  color: #2f4f70;
  font-weight: 750;
  line-height: 1.45;
}
.tw-technician-form-section {
  padding-top: 34px;
}
.tw-technician-form-heading {
  min-height: 100%;
  padding: 38px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 90% 8%, rgba(0,109,255,.12), transparent 34%),
    #ffffff;
}
.tw-technician-form {
  padding: 30px;
  border-radius: 30px;
  background: rgba(255,255,255,.92);
}
.tw-technician-form .input {
  border-radius: 16px;
  min-height: 52px;
  border-color: rgba(0, 64, 130, .16);
  background: #f8fcff;
}
.tw-technician-form .input:focus {
  outline: none;
  border-color: rgba(0,109,255,.50);
  box-shadow: 0 0 0 4px rgba(0,109,255,.10);
}
.tw-technician-fields {
  gap: 16px;
}
.technician-page .tw-newsletter-band {
  padding-top: 54px;
}

@media (max-width: 1080px) {
  .tw-technician-hero-inner,
  .tw-technician-intro-grid,
  .tw-technician-form-grid {
    grid-template-columns: 1fr;
  }
  .tw-technician-card {
    max-width: 620px;
  }
}

@media (max-width: 720px) {
  .tw-technician-hero,
  .tw-technician-hero-inner {
    min-height: auto;
  }
  .tw-technician-hero-inner {
    padding: 52px 0 48px;
    gap: 30px;
  }
  .tw-technician-copy h1 {
    font-size: clamp(2.55rem, 13vw, 3.75rem);
    line-height: 1.03;
    letter-spacing: -.04em;
  }
  .tw-technician-copy p {
    font-size: .98rem;
  }
  .tw-technician-card,
  .tw-technician-text,
  .tw-technician-benefits,
  .tw-technician-form,
  .tw-technician-form-heading {
    border-radius: 24px;
  }
  .tw-technician-card,
  .tw-technician-text,
  .tw-technician-form-heading {
    padding: 24px;
  }
  .tw-technician-form {
    padding: 20px;
  }
  .tw-technician-intro {
    padding-top: 58px;
  }
  .tw-technician-intro-grid,
  .tw-technician-form-grid {
    gap: 22px;
  }
  .tw-technician-text h2,
  .tw-technician-form-heading h2 {
    font-size: clamp(2rem, 9vw, 2.75rem);
    line-height: 1.07;
  }
  .tw-technician-benefits {
    padding: 18px;
  }
}

@media (max-width: 520px) {
  .tw-technician-card li,
  .tw-technician-benefits div {
    align-items: flex-start;
  }
  .tw-technician-fields {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   LGPD / PRIVACIDADE / COOKIES — TechWel
   ========================================================= */
.privacy-page {
  background: #f6fbff;
  color: #07192f;
}
.privacy-page .site-header.home-header {
  position: sticky;
  top: 0;
  z-index: 60;
}
.tw-privacy-hero {
  position: relative;
  overflow: hidden;
  padding: 118px 0 76px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 16%, rgba(85,181,255,.28), transparent 31%),
    radial-gradient(circle at 18% 10%, rgba(255,255,255,.13), transparent 24%),
    linear-gradient(135deg, #061f3f 0%, #003a73 52%, #07192f 100%);
}
.tw-privacy-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 110px;
  background: linear-gradient(180deg, transparent, #f6fbff);
  pointer-events: none;
}
.tw-privacy-hero .container {
  position: relative;
  z-index: 1;
}
.tw-privacy-hero h1 {
  max-width: 900px;
  margin: 18px 0 18px;
  color: #fff;
  font-size: clamp(3rem, 6vw, 5.35rem);
  line-height: 1.02;
  letter-spacing: -.045em;
  font-weight: 950;
}
.tw-privacy-hero p {
  max-width: 780px;
  margin: 0;
  color: rgba(255,255,255,.84);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.75;
}
.tw-privacy-content {
  padding: 70px 0 100px;
}
.tw-privacy-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: start;
}
.tw-privacy-card,
.tw-privacy-side {
  border: 1px solid rgba(0,109,255,.10);
  background: rgba(255,255,255,.90);
  box-shadow: 0 24px 70px rgba(0,43,91,.10);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.tw-privacy-card {
  padding: clamp(28px, 4vw, 54px);
  border-radius: 34px;
}
.tw-privacy-card h2 {
  margin: 34px 0 12px;
  color: #07192f;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.12;
  letter-spacing: -.035em;
  font-weight: 950;
}
.tw-privacy-card h2:first-child { margin-top: 0; }
.tw-privacy-card h3 {
  margin: 24px 0 8px;
  color: #003a73;
  font-size: 1.05rem;
  font-weight: 950;
}
.tw-privacy-card p {
  margin: 0 0 14px;
  color: #526a82;
  font-size: 1rem;
  line-height: 1.78;
}
.tw-privacy-card a {
  color: #006dff;
  font-weight: 900;
  text-decoration: none;
}
.tw-privacy-card a:hover { text-decoration: underline; }
.tw-privacy-side {
  position: sticky;
  top: 130px;
  display: grid;
  gap: 12px;
  padding: 24px;
  border-radius: 28px;
}
.tw-privacy-side div {
  padding: 22px;
  margin-bottom: 4px;
  border-radius: 22px;
  background: linear-gradient(180deg, #f2f9ff, #fff);
  border: 1px solid rgba(0,109,255,.09);
}
.tw-privacy-side strong {
  display: block;
  margin-bottom: 8px;
  color: #07192f;
  font-size: 1.08rem;
  font-weight: 950;
}
.tw-privacy-side p {
  margin: 0;
  color: #64778d;
  line-height: 1.6;
}
.tw-privacy-side .tw-btn {
  width: 100%;
  justify-content: center;
}
.tw-footer-link-button {
  appearance: none;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
  text-align: left;
}
.tw-footer-link-button:hover { text-decoration: underline; }
.tw-footer-bottom small {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

/* Banner de cookies */
.tw-cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.tw-cookie-card {
  width: min(100%, 980px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 22px;
  border-radius: 28px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(0,109,255,.14);
  box-shadow: 0 28px 80px rgba(0,35,80,.22);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  pointer-events: auto;
}
.tw-cookie-text strong {
  display: block;
  margin-bottom: 6px;
  color: #07192f;
  font-size: 1rem;
  font-weight: 950;
}
.tw-cookie-text p {
  margin: 0;
  max-width: 680px;
  color: #526a82;
  font-size: .92rem;
  line-height: 1.55;
}
.tw-cookie-text a {
  display: inline-flex;
  margin-top: 8px;
  color: #006dff;
  font-size: .88rem;
  font-weight: 900;
  text-decoration: none;
}
.tw-cookie-text a:hover { text-decoration: underline; }
.tw-cookie-options {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 12px;
  border-radius: 18px;
  background: #f2f9ff;
  border: 1px solid rgba(0,109,255,.09);
}
.tw-cookie-options label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 12px;
  border-radius: 14px;
  background: #fff;
  color: #102f52;
  font-size: .9rem;
  font-weight: 800;
}
.tw-cookie-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}
.tw-cookie-actions button {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-weight: 950;
  font-size: .86rem;
  transition: .22s ease;
}
.tw-cookie-primary {
  color: #fff;
  background: linear-gradient(135deg, #006dff, #0054d4);
  box-shadow: 0 14px 28px rgba(0,109,255,.25);
}
.tw-cookie-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(0,109,255,.32);
}
.tw-cookie-secondary {
  color: #003a73;
  background: #eef7ff;
  box-shadow: inset 0 0 0 1px rgba(0,109,255,.10);
}
.tw-cookie-secondary:hover { background: #e0f1ff; }

@media (max-width: 920px) {
  .tw-privacy-hero { padding: 90px 0 54px; }
  .tw-privacy-layout { grid-template-columns: 1fr; }
  .tw-privacy-side { position: static; }
}
@media (max-width: 760px) {
  .tw-cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
  .tw-cookie-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px;
    border-radius: 22px;
  }
  .tw-cookie-options { grid-template-columns: 1fr; }
  .tw-cookie-actions { justify-content: stretch; }
  .tw-cookie-actions button { width: 100%; }
}
@media (max-width: 620px) {
  .tw-privacy-hero { padding: 72px 0 44px; }
  .tw-privacy-hero h1 {
    font-size: clamp(2.55rem, 12vw, 3.6rem);
    line-height: 1.04;
    letter-spacing: -.035em;
  }
  .tw-privacy-card {
    border-radius: 24px;
    padding: 24px 20px;
  }
  .tw-privacy-side {
    border-radius: 24px;
    padding: 18px;
  }
}

/* Dobra Bulk Ink - Home */
.tw-bulk-ink {
  padding-top: 42px;
  padding-bottom: 42px;
  background: linear-gradient(180deg, #f8fcff 0%, #eef8ff 100%);
}
.tw-bulk-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
  gap: 36px;
  align-items: center;
  padding: 38px;
  border: 1px solid rgba(0, 109, 255, .13);
  border-radius: 24px;
  background:
    radial-gradient(circle at 12% 12%, rgba(42, 137, 255, .12), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(245,251,255,.94));
  box-shadow: 0 24px 78px rgba(0, 52, 108, .10);
  overflow: hidden;
}
.tw-bulk-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, #006dff, #37a7ff, #006dff);
}
.tw-bulk-copy {
  position: relative;
  z-index: 1;
}
.tw-bulk-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin-bottom: 14px;
  padding: 7px 13px;
  border-radius: 999px;
  color: #006dff;
  background: #eaf6ff;
  font-size: 11px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.tw-bulk-copy h2 {
  max-width: 680px;
  margin: 0 0 16px;
  color: #07192f;
  font-size: clamp(2rem, 3.6vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -.055em;
  font-weight: 950;
}
.tw-bulk-copy h2 em {
  color: #2a89ff;
  font-style: normal;
}
.tw-bulk-copy p {
  max-width: 620px;
  margin: 0 0 22px;
  color: var(--tw-muted);
  font-size: 16px;
  line-height: 1.78;
}
.tw-bulk-benefits {
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}
.tw-bulk-benefits li {
  position: relative;
  min-height: 38px;
  display: flex;
  align-items: center;
  padding-left: 46px;
  color: #143451;
  font-weight: 850;
  line-height: 1.45;
}
.tw-bulk-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #0b7dff, #005ee8);
  box-shadow: 0 10px 24px rgba(0, 109, 255, .22);
  font-size: 15px;
  font-weight: 950;
}
.tw-bulk-whatsapp {
  min-height: 54px;
}
.tw-bulk-image {
  position: relative;
  min-height: 345px;
  display: grid;
  place-items: center;
  margin: 0;
  border-radius: 22px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(0, 109, 255, .09), 0 20px 54px rgba(0, 52, 108, .10);
  overflow: hidden;
}
.tw-bulk-image::after {
  content: "Bulk Ink";
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #0b477a;
  background: rgba(234, 246, 255, .94);
  border: 1px solid rgba(0, 109, 255, .12);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.tw-bulk-image img {
  width: 100%;
  height: 100%;
  max-height: 390px;
  object-fit: contain;
  padding: 22px;
}

@media (max-width: 920px) {
  .tw-bulk-card {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 28px;
  }
  .tw-bulk-image {
    min-height: 290px;
    order: -1;
  }
  .tw-bulk-copy h2 {
    font-size: clamp(1.85rem, 7vw, 2.65rem);
  }
}

@media (max-width: 620px) {
  .tw-bulk-ink {
    padding-top: 28px;
    padding-bottom: 38px;
  }
  .tw-bulk-card {
    border-radius: 18px;
    padding: 18px;
  }
  .tw-bulk-image {
    min-height: 230px;
    border-radius: 16px;
  }
  .tw-bulk-image img {
    padding: 14px;
  }
  .tw-bulk-copy p {
    font-size: 15px;
    line-height: 1.64;
  }
  .tw-bulk-benefits li {
    align-items: flex-start;
    padding-left: 42px;
    font-size: 14px;
  }
  .tw-bulk-benefits li::before {
    width: 30px;
    height: 30px;
  }
}

/* Dobra Localização - Home */
.tw-store-location {
  padding-top: 46px;
  padding-bottom: 58px;
  background: linear-gradient(180deg, rgba(238, 247, 253, .42), rgba(255,255,255,.82));
}
.tw-location-card {
  display: grid;
  grid-template-columns: minmax(310px, .86fr) minmax(0, 1.14fr);
  gap: 34px;
  align-items: stretch;
  padding: 28px;
  border: 1px solid rgba(39, 78, 118, .14);
  border-radius: 28px;
  background:
    radial-gradient(circle at 90% 10%, rgba(100, 172, 221, .18), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.97), rgba(247,252,255,.94));
  box-shadow: 0 24px 74px rgba(17, 32, 51, .10);
  overflow: hidden;
}
.tw-location-photo {
  position: relative;
  height: 100%;
  min-height: 430px;
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  background: var(--azul-gelo);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.58), 0 18px 42px rgba(17, 32, 51, .12);
}
.tw-location-photo::after {
  content: "Techwel Uberlândia";
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--branco);
  background: rgba(17, 32, 51, .72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .02em;
}
.tw-location-photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  display: block;
}
.tw-location-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 8px 4px;
}
.tw-location-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  margin-bottom: 14px;
  padding: 7px 13px;
  border-radius: 999px;
  color: var(--azul-noite);
  background: rgba(100, 172, 221, .16);
  border: 1px solid rgba(100, 172, 221, .22);
  font-size: 11px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.tw-location-content h2 {
  max-width: 700px;
  margin: 0 0 16px;
  color: #07192f;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.08;
  letter-spacing: -.052em;
  font-weight: 950;
}
.tw-location-content p {
  max-width: 700px;
  margin: 0 0 26px;
  color: var(--texto-suave);
  font-size: 16px;
  line-height: 1.76;
}
.tw-maps-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  max-width: 720px;
  padding: 14px;
  border: 1px solid rgba(39, 78, 118, .14);
  border-radius: 22px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 16px 38px rgba(17, 32, 51, .09);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.tw-maps-card:hover {
  transform: translateY(-2px);
  border-color: rgba(100, 172, 221, .38);
  box-shadow: 0 22px 48px rgba(17, 32, 51, .12);
}
.tw-maps-preview {
  position: relative;
  min-height: 132px;
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(39, 78, 118, .08) 1px, transparent 1px),
    linear-gradient(rgba(39, 78, 118, .08) 1px, transparent 1px),
    linear-gradient(135deg, #edf8ff, #dff0fb);
  background-size: 28px 28px, 28px 28px, auto;
}
.tw-maps-road {
  position: absolute;
  display: block;
  border-radius: 999px;
  background: rgba(100, 172, 221, .78);
  box-shadow: 0 0 0 5px rgba(100, 172, 221, .10);
}
.tw-maps-road-one {
  width: 145px;
  height: 9px;
  left: -18px;
  top: 48px;
  transform: rotate(24deg);
}
.tw-maps-road-two {
  width: 150px;
  height: 8px;
  right: -34px;
  top: 76px;
  transform: rotate(-18deg);
}
.tw-maps-road-three {
  width: 92px;
  height: 7px;
  left: 54px;
  bottom: 28px;
  transform: rotate(-38deg);
  background: rgba(39, 78, 118, .52);
}
.tw-maps-pin {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border-radius: 50% 50% 50% 8px;
  color: var(--branco);
  background: linear-gradient(135deg, var(--azul-noite), var(--azul-claro));
  box-shadow: 0 14px 30px rgba(39, 78, 118, .28);
  rotate: -45deg;
  font-size: 20px;
  font-weight: 950;
}
.tw-maps-pin::first-letter {
  rotate: 45deg;
}
.tw-maps-copy {
  min-width: 0;
}
.tw-maps-copy strong,
.tw-maps-copy small,
.tw-maps-copy b {
  display: block;
}
.tw-maps-copy strong {
  color: var(--texto);
  font-size: 18px;
  line-height: 1.3;
  font-weight: 950;
}
.tw-maps-copy small {
  margin-top: 4px;
  color: var(--texto-suave);
  font-size: 14px;
  line-height: 1.45;
}
.tw-maps-copy b {
  margin-top: 14px;
  color: var(--azul-noite);
  font-size: 14px;
  font-weight: 950;
}
.tw-maps-copy b span {
  color: var(--azul-claro);
}

@media (max-width: 920px) {
  .tw-location-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 22px;
  }
  .tw-location-photo,
  .tw-location-photo img {
    min-height: 360px;
  }
  .tw-location-content h2 {
    font-size: clamp(1.85rem, 6vw, 2.5rem);
  }
}

@media (max-width: 620px) {
  .tw-store-location {
    padding-top: 34px;
    padding-bottom: 42px;
  }
  .tw-location-card {
    border-radius: 20px;
    padding: 16px;
  }
  .tw-location-photo {
    border-radius: 16px;
  }
  .tw-location-photo,
  .tw-location-photo img {
    min-height: 320px;
  }
  .tw-location-photo::after {
    left: 12px;
    bottom: 12px;
    font-size: 11px;
  }
  .tw-location-content {
    padding: 0;
  }
  .tw-location-content p {
    font-size: 15px;
    line-height: 1.64;
  }
  .tw-maps-card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 12px;
    border-radius: 18px;
  }
  .tw-maps-preview {
    min-height: 118px;
    border-radius: 15px;
  }
  .tw-maps-copy strong {
    font-size: 16px;
  }
}




.tw-hero-copy h1 {
  letter-spacing: -0.025em;
}

.tw-contact-copy h1, .tw-request-copy h1 {
letter-spacing: -0.05em;
}

.tw-os-copy h1 {
  letter-spacing: -0.025em;
}

.tw-printers-hero-copy h1 {
    letter-spacing: -0.01em;

}

.tw-supplies-copy h1 {
    letter-spacing: -0.025em;

}

.tw-about-video-wrap {
  position: relative;
}

.tw-about-image img,
.tw-about-image video {
  display: block;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}

.tw-video-toggle {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(0, 31, 68, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
  cursor: pointer;
  font-size: 22px;
  font-weight: 900;
  transition: transform .2s ease, background .2s ease, opacity .2s ease, visibility .2s ease;
}

.tw-video-toggle:hover {
  transform: translate(-50%, -50%) scale(1.05);
  background: rgba(0, 109, 255, 0.90);
}

/* quando o vídeo estiver tocando, esconda o botão */
.tw-about-video-wrap.is-playing .tw-video-toggle {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* desktop: quando passar o mouse no vídeo, mostra de novo */
.tw-about-video-wrap.is-playing:hover .tw-video-toggle {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* mobile: classe controlada via JS */
.tw-about-video-wrap.is-playing.is-controls-visible .tw-video-toggle {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Botão pós-envio para salvar o chamado em PDF */
.tw-chamado-download {
  margin-top: 14px;
  padding: 14px;
  display: grid;
  gap: 10px;
  border: 1px solid rgba(25, 86, 140, 0.18);
  border-radius: 14px;
  background: #f6fbff;
  color: #24445f;
}

.tw-chamado-download span {
  font-size: 0.94rem;
  line-height: 1.45;
}

.tw-chamado-download-btn {
  width: fit-content;
}

@media (max-width: 620px) {
  .tw-chamado-download-btn {
    width: 100%;
  }
}

/* Modal pós-envio: Ordem de Serviço/PDF na página Solicitação de Serviços */
.tw-modal-open {
  overflow: hidden;
}

.tw-chamado-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(4, 22, 43, 0.68);
  backdrop-filter: blur(8px);
}

.tw-chamado-modal {
  width: min(520px, 100%);
  padding: 30px;
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(3, 25, 50, 0.28);
  color: #12314f;
  text-align: center;
}

.tw-chamado-modal-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, #14c98b, #0f7bf2);
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 900;
}

.tw-chamado-modal h2 {
  margin: 0 0 10px;
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.15;
  color: #082b4d;
}

.tw-chamado-modal p {
  margin: 0 auto 20px;
  max-width: 390px;
  color: #496176;
  line-height: 1.55;
}

.tw-chamado-modal-btn {
  width: 100%;
  justify-content: center;
}

.tw-chamado-modal small {
  display: block;
  margin-top: 12px;
  color: #6f8396;
  line-height: 1.45;
}

@media (max-width: 620px) {
  .tw-chamado-modal {
    padding: 24px 18px;
    border-radius: 22px;
  }
}


/* Ajuste TechWel: catálogo de impressoras em carrossel horizontal */
.printer-category-carousel {
  position: relative;
  margin-top: 4px;
}

.printer-category-carousel .premium-category-grid {
  display: flex !important;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  padding: 6px 8px 22px;
  margin-inline: -8px;
  scrollbar-width: thin;
}

.printer-category-carousel .premium-category-card {
  flex: 0 0 min(980px, calc(100vw - 72px));
  scroll-snap-align: start;
}

.printer-carousel-nav {
  position: absolute;
  z-index: 5;
  top: 76px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, #082a52, #164f7f);
  box-shadow: 0 18px 38px rgba(8, 42, 82, .24);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease, opacity .2s ease, box-shadow .2s ease;
}

.printer-carousel-prev { left: -18px; }
.printer-carousel-next { right: -18px; }

.printer-carousel-nav:hover,
.printer-carousel-nav:focus-visible {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 22px 46px rgba(8, 42, 82, .30);
}

.printer-carousel-nav:disabled {
  opacity: .34;
  cursor: default;
  transform: none;
}

.printer-detail-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--azul-noite);
  background: rgba(100, 172, 221, .14);
  font-size: .78rem;
  font-weight: 900;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
}

.printer-detail-link:hover,
.printer-detail-link:focus-visible {
  background: rgba(100, 172, 221, .24);
  transform: translateY(-1px);
}

.printer-detail-main {
  background:
    radial-gradient(circle at 20% 0%, rgba(100,172,221,.16), transparent 34%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 46%, #eef7fd 100%);
}

.printer-detail-hero {
  position: relative;
  overflow: hidden;
  padding: 130px 0 72px;
  background:
    radial-gradient(circle at 78% 24%, rgba(100,172,221,.28), transparent 30%),
    linear-gradient(135deg, #001b3a 0%, #073a6b 52%, #0f5f9a 100%);
}

.printer-detail-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 54px;
  align-items: center;
}

.printer-back-link {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 16px;
  color: rgba(255,255,255,.84);
  font-weight: 800;
  text-decoration: none;
}

.printer-detail-copy h1 {
  max-width: 820px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.7rem, 6vw, 5.4rem);
  line-height: .94;
  letter-spacing: -.07em;
  font-weight: 950;
}

.printer-detail-copy p {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255,255,255,.82);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.72;
}

.printer-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.printer-detail-tags span {
  padding: 8px 12px;
  border-radius: 999px;
  color: #eaf7ff;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.printer-detail-gallery {
  min-height: 450px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 128px;
  gap: 16px;
  padding: 16px;
  border-radius: 42px;
  background:
    radial-gradient(circle at 20% 16%, rgba(255,255,255,.95), rgba(255,255,255,.70) 44%, rgba(226,244,255,.82) 100%);
  border: 1px solid rgba(255,255,255,.42);
  box-shadow: 0 34px 90px rgba(0, 18, 44, .30);
  backdrop-filter: blur(18px);
}

.printer-gallery-main,
.printer-gallery-side figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(11,66,111,.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.70), 0 18px 44px rgba(8,42,82,.12);
}

.printer-gallery-main {
  min-height: 420px;
  border-radius: 32px;
}

.printer-gallery-main::after {
  content: "";
  position: absolute;
  inset: auto 12% 12% 12%;
  height: 20px;
  border-radius: 999px;
  background: rgba(9,35,65,.15);
  filter: blur(12px);
}

.printer-gallery-main img {
  position: relative;
  z-index: 1;
  max-width: 94%;
  max-height: 330px;
  object-fit: contain;
  filter: drop-shadow(0 22px 28px rgba(8, 42, 82, .18));
}

.printer-gallery-side {
  display: grid;
  gap: 14px;
}

.printer-gallery-side figure {
  min-height: 0;
  border-radius: 24px;
}

.printer-gallery-side img {
  width: 92%;
  height: 132px;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(8, 42, 82, .14));
}

.printer-gallery-side figure:first-child img { transform: scale(1.12) translateY(2px); }
.printer-gallery-side figure:last-child img { transform: scale(.92); }

.printer-detail-section,
.printer-detail-benefits {
  padding: 72px 0;
}

.printer-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.printer-detail-card {
  min-height: 180px;
  padding: 24px;
  border-radius: 28px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(39,78,118,.10);
  box-shadow: 0 18px 42px rgba(17, 32, 51, .09);
}

.printer-detail-card.main-info-card {
  grid-column: span 2;
  background: linear-gradient(135deg, #ffffff, #eef7fd);
}

.printer-detail-card h2,
.printer-detail-card strong {
  display: block;
  margin: 0 0 10px;
  color: var(--azul-noite);
  font-weight: 950;
}

.printer-detail-card h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -.055em;
}

.printer-detail-card p {
  margin: 0;
  color: var(--texto-suave);
  line-height: 1.65;
}

@media (max-width: 980px) {
  .printer-category-carousel .premium-category-card { flex-basis: min(760px, calc(100vw - 50px)); }
  .printer-carousel-prev { left: 2px; }
  .printer-carousel-next { right: 2px; }
  .printer-detail-hero-inner,
  .printer-detail-grid { grid-template-columns: 1fr; }
  .printer-detail-card.main-info-card { grid-column: auto; }
}

@media (max-width: 640px) {
  .printer-category-carousel .premium-category-grid { padding-inline: 0; margin-inline: 0; }
  .printer-category-carousel .premium-category-card { flex-basis: 92vw; }
  .printer-carousel-nav { display: none; }
  .printer-detail-hero { padding: 104px 0 54px; }
  .printer-detail-gallery { grid-template-columns: 1fr; min-height: auto; border-radius: 30px; padding: 12px; }
  .printer-gallery-main { min-height: 280px; border-radius: 24px; }
  .printer-gallery-main img { max-height: 230px; }
  .printer-gallery-side { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .printer-gallery-side img { height: 110px; }
  .printer-detail-section, .printer-detail-benefits { padding: 48px 0; }
}


.tw-printers-benefits {
  margin-top: 50px;
}

@media (min-width: 1100px) {
  .tw-printers-hero-copy {
  margin-top: 50px;
  margin-bottom: 50px;
}
}

.show-more-printers {
  background: linear-gradient(135deg, #0b7dff, #005ee8);
}

.printer-detail-link {
    background: linear-gradient(135deg, #0b7dff, #005ee8);
    color: white;
}

.printer-detail-link:hover {
  background-color: var(--tw-blue);
  color: black;
}

/* Ajustes finos do novo catálogo solicitado */
.printer-filter-chip[data-printer-filter="plotter"]::before { content: "▱"; margin-right: 6px; opacity: .72; }
.tw-featured-main strong { text-align: center; }
.tw-featured-main small { text-align: center; }
