/* ============================================
   HardInfo — Landing Page
   Paleta: vermelho da marca (#ee1c1c) + branco
   ============================================ */

:root {
  /* Cores da marca */
  --red: #ee1c1c;
  --red-dark: #c81212;
  --red-darker: #a50f0f;
  --red-soft: #ffe8e8;
  --red-softer: #fff5f5;

  /* Neutros */
  --ink: #14161a;
  --ink-mid: #3d434d;
  --ink-soft: #6b7280;
  --white: #ffffff;        /* superfícies: cartões, formulário, painéis */
  --bg: #eceef2;           /* fundo da página */
  --bg-alt: #e3e6ec;       /* seções alternadas */
  --campo: #f7f8fa;        /* campos de formulário e chips dentro dos cartões */
  --border: #d9dde3;
  --border-strong: #c5cbd4;

  /* Forma */
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 26px;
  --radius-pill: 999px;

  /* Sombras */
  --shadow-xs: 0 2px 8px rgba(20, 22, 26, .05);
  --shadow-sm: 0 6px 18px rgba(20, 22, 26, .07);
  --shadow: 0 14px 36px rgba(20, 22, 26, .09);
  --shadow-lg: 0 28px 64px rgba(20, 22, 26, .13);
  --shadow-red: 0 12px 28px rgba(238, 28, 28, .28);
  --shadow-red-lg: 0 20px 44px rgba(238, 28, 28, .32);

  /* Espaçamento fluido */
  --section-y: clamp(60px, 8vw, 110px);
  --gutter: clamp(18px, 4vw, 28px);
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img, svg, video { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }

h1, h2, h3 { line-height: 1.15; letter-spacing: -.02em; font-weight: 800; }

::selection { background: var(--red); color: var(--white); }

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Acessibilidade: link de atalho */
.skip-link {
  position: absolute;
  top: -100px;
  left: 12px;
  z-index: 999;
  background: var(--red);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 0 0 12px 12px;
  font-weight: 600;
  transition: top .25s;
}
.skip-link:focus { top: 0; }

/* ===== Layout ===== */
.container {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); }
.section-alt { background: var(--bg-alt); }

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(38px, 5vw, 58px);
}
.section-head h2 {
  font-size: clamp(1.7rem, 4.2vw, 2.6rem);
  margin-bottom: 14px;
}
.section-head p {
  color: var(--ink-soft);
  font-size: clamp(.98rem, 2vw, 1.08rem);
}

.tag {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--red);
  background: var(--red-soft);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.brand-inline, .hl { color: var(--red); }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(236, 238, 242, .86);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s, border-color .3s, background .3s;
}
.site-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-xs);
  background: rgba(236, 238, 242, .96);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 78px;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { display: block; flex-shrink: 0; }
.brand-logo img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 11px;
  box-shadow: var(--shadow-red);
  transition: transform .3s;
}
.brand:hover .brand-logo img { transform: rotate(-6deg) scale(1.05); }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-weight: 800;
  font-size: 1.42rem;
  color: var(--red);
  letter-spacing: -.03em;
}
.brand-name-alt { color: var(--ink); }
.brand-tagline {
  font-size: .7rem;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  position: relative;
  font-size: .95rem;
  font-weight: 600;
  color: var(--ink-mid);
  padding: 9px 14px;
  border-radius: var(--radius-pill);
  transition: color .2s, background .2s;
}
.nav a:not(.nav-cta):hover { color: var(--red); background: var(--red-softer); }
.nav-cta {
  margin-left: 8px;
  background: var(--red);
  color: var(--white) !important;
  padding: 11px 22px !important;
  box-shadow: var(--shadow-red);
  transition: background .2s, transform .2s, box-shadow .2s;
}
.nav-cta:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red-lg);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--border);
  align-items: center;
  transition: background .2s, border-color .2s;
}
.nav-toggle:hover { background: var(--red-softer); border-color: var(--red-soft); }
.nav-toggle span {
  width: 20px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s, opacity .25s;
}

/* ===== Botões ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: .97rem;
  font-weight: 700;
  padding: 15px 28px;
  border-radius: var(--radius-pill);
  text-align: center;
  transition: background .22s, color .22s, transform .22s, box-shadow .22s, border-color .22s;
  will-change: transform;
}
.btn svg { flex-shrink: 0; }

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-red);
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-red-lg);
}
.btn-outline {
  background: var(--white);
  color: var(--ink);
  border: 2px solid var(--border-strong);
}
.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.btn-ghost {
  background: transparent;
  color: var(--ink-mid);
  border: 2px solid var(--border-strong);
}
.btn-ghost:hover { border-color: var(--red); color: var(--red); }
.btn-light {
  background: var(--white);
  color: var(--red);
  box-shadow: var(--shadow);
}
.btn-light:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn-block { width: 100%; }

/* ===== Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(48px, 7vw, 88px) clamp(60px, 8vw, 104px);
  background: var(--bg);
}
.hero-glow {
  position: absolute;
  inset: -20% -10% auto auto;
  width: min(760px, 90vw);
  height: min(760px, 90vw);
  background: radial-gradient(circle, rgba(238, 28, 28, .16), transparent 62%);
  pointer-events: none;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(20, 22, 26, .045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(20, 22, 26, .045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 40%, #000 35%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 40%, #000 35%, transparent 78%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: clamp(34px, 5vw, 64px);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: .84rem;
  font-weight: 700;
  color: var(--red-dark);
  background: var(--white);
  border: 1px solid var(--red-soft);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-xs);
  margin-bottom: 22px;
}
.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(238, 28, 28, .18);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(238, 28, 28, .18); }
  50% { box-shadow: 0 0 0 8px rgba(238, 28, 28, .06); }
}

.hero-text h1 {
  font-size: clamp(2.05rem, 5.6vw, 3.55rem);
  margin-bottom: 20px;
}
.lead {
  font-size: clamp(1rem, 2.2vw, 1.13rem);
  color: var(--ink-soft);
  max-width: 540px;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
}
.hero-badges li {
  position: relative;
  padding-left: 26px;
  font-size: .92rem;
  font-weight: 600;
  color: var(--ink-mid);
}
.hero-badges li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--red-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ee1c1c' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 11px no-repeat;
}

/* Cartão do hero */
.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 340px;
}
.hero-card {
  position: relative;
  z-index: 2;
  width: min(340px, 100%);
  text-align: center;
  padding: 40px 32px 34px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  animation: floatCard 6s ease-in-out infinite;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.hero-card-logo {
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.hero-card-logo img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: var(--shadow-red-lg);
}
.hero-card-title {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -.02em;
}
.hero-card-sub {
  font-size: .84rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 22px;
}
.hero-card-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  text-align: left;
}
.hero-card-list span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .84rem;
  font-weight: 600;
  color: var(--ink-mid);
  background: var(--campo);
  border-radius: 10px;
  padding: 9px 11px;
}
.hero-card-list i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

.float-chip {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .83rem;
  font-weight: 700;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--border);
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow);
  white-space: nowrap;
}
.float-chip svg { color: var(--red); }
.chip-1 {
  top: 8%;
  left: -4%;
  animation: floatChip 5s ease-in-out infinite;
}
.chip-2 {
  bottom: 10%;
  right: -4%;
  animation: floatChip 5s ease-in-out .8s infinite;
}
@keyframes floatChip {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-11px); }
}

/* ===== Faixa de palavras-chave ===== */
.marquee-band {
  background: var(--ink);
  color: var(--white);
  padding-block: 18px;
  overflow: hidden;
}
.marquee-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 34px;
}
.marquee-inner span {
  position: relative;
  font-size: .87rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .82);
  white-space: nowrap;
}
.marquee-inner span:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -19px;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
}

/* ===== Cards de serviços ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
  gap: clamp(16px, 2.4vw, 24px);
}
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 26px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), #ff7a7a);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.card:hover::before { transform: scaleX(1); }

/* Cards em destaque (serviços principais) */
.card-highlight {
  border-color: var(--red-soft);
  background: linear-gradient(170deg, var(--red-softer) 0%, var(--white) 42%);
}
.card-highlight::before { transform: scaleX(1); }
.card-flag {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--white);
  background: var(--red);
  padding: 5px 11px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-red);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  color: var(--red);
  background: var(--red-soft);
  border-radius: 15px;
  margin-bottom: 20px;
  transition: background .3s, color .3s, transform .3s;
}
.card-icon svg { width: 27px; height: 27px; }
.card:hover .card-icon {
  background: var(--red);
  color: var(--white);
  transform: scale(1.06) rotate(-4deg);
}
.card h3 { font-size: 1.13rem; margin-bottom: 10px; }
.card > p { font-size: .93rem; color: var(--ink-soft); margin-bottom: 18px; }

.card-list { margin-top: auto; display: grid; gap: 8px; }
.card-list li {
  position: relative;
  padding-left: 20px;
  font-size: .86rem;
  font-weight: 600;
  color: var(--ink-mid);
}
.card-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: .62em;
  width: 8px;
  height: 8px;
  border: 2px solid var(--red);
  border-radius: 50%;
}

/* ===== Diferenciais ===== */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(14px, 2vw, 22px);
}
.feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform .28s, box-shadow .28s;
}
.feature:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.feature-icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  color: var(--red);
  background: var(--red-soft);
  border-radius: 13px;
}
.feature-icon svg { width: 23px; height: 23px; }
.feature h3 { font-size: 1.03rem; margin-bottom: 5px; }
.feature p { font-size: .9rem; color: var(--ink-soft); }

/* ===== Passos ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(216px, 1fr));
  gap: clamp(18px, 2.5vw, 26px);
  counter-reset: step;
}
.step {
  position: relative;
  text-align: center;
  padding: 30px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform .28s, box-shadow .28s;
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); }
.step-num {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin: 0 auto 16px;
  font-size: 1.22rem;
  font-weight: 800;
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: 50%;
  box-shadow: var(--shadow-red);
}
.step h3 { font-size: 1.06rem; margin-bottom: 7px; }
.step p { font-size: .9rem; color: var(--ink-soft); }

/* ===== Sobre ===== */
.about-inner {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  align-items: center;
  gap: clamp(32px, 5vw, 62px);
}
.about-visual { display: grid; place-items: center; }
.about-badge {
  display: grid;
  place-items: center;
  gap: 16px;
  padding: clamp(34px, 5vw, 54px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.about-badge img {
  width: clamp(92px, 12vw, 112px);
  height: clamp(92px, 12vw, 112px);
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-red-lg);
}
.about-badge-text {
  font-size: .8rem;
  font-weight: 700;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: .1em;
  text-align: center;
}
.about-text h2 {
  font-size: clamp(1.6rem, 3.8vw, 2.4rem);
  margin-bottom: 18px;
}
.about-text p { color: var(--ink-soft); margin-bottom: 16px; }
.about-text strong { color: var(--ink); }
.about-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 26px; }

/* ===== Faixa CTA ===== */
.cta-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--red), var(--red-darker));
  color: var(--white);
  padding-block: clamp(44px, 6vw, 66px);
}
.cta-band::after {
  content: "";
  position: absolute;
  inset: -50% -10% auto auto;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(255, 255, 255, .14), transparent 60%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.cta-inner h2 { font-size: clamp(1.5rem, 3.6vw, 2.1rem); margin-bottom: 6px; }
.cta-inner p { color: rgba(255, 255, 255, .9); font-size: 1rem; }

/* ===== FAQ ===== */
.faq {
  max-width: 800px;
  margin-inline: auto;
  display: grid;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
}
.faq-item[open] {
  border-color: var(--red-soft);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 19px 22px;
  font-size: .99rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  transition: color .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--red-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ee1c1c' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center / 12px no-repeat;
  transition: transform .3s, background-color .3s;
}
.faq-item summary:hover { color: var(--red); }
.faq-item[open] summary { color: var(--red); }
.faq-item[open] summary::after { transform: rotate(135deg); }
.faq-body {
  padding: 0 22px 20px;
  font-size: .94rem;
  color: var(--ink-soft);
}

/* ===== Contato ===== */
.contato {
  position: relative;
  background:
    radial-gradient(circle at 8% 92%, var(--red-soft), transparent 42%),
    var(--bg);
}
.contato-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  align-items: start;
  gap: clamp(20px, 3vw, 34px);
}
.contato-info { display: grid; gap: 13px; }
.info-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 19px 21px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.info-card:not(.info-static):hover {
  transform: translateY(-3px);
  border-color: var(--red-soft);
  box-shadow: var(--shadow-sm);
}
.info-icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  color: var(--red);
  background: var(--red-soft);
  border-radius: 12px;
}
.info-card span:last-child {
  display: flex;
  flex-direction: column;
  font-size: .95rem;
  font-weight: 600;
  color: var(--ink-mid);
  line-height: 1.4;
}
.info-card strong {
  font-size: .74rem;
  font-weight: 700;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
  padding: clamp(24px, 3.4vw, 36px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.field { display: flex; flex-direction: column; }
.field-full { grid-column: 1 / -1; }
.field label {
  font-size: .86rem;
  font-weight: 700;
  margin-bottom: 7px;
}
.field input,
.field select,
.field textarea {
  font-size: .95rem;
  padding: 13px 15px;
  background: var(--campo);
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-sm);
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.field textarea { resize: vertical; min-height: 108px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(238, 28, 28, .12);
}
.field input::placeholder,
.field textarea::placeholder { color: #a1a7b0; }
.field input.invalid { border-color: var(--red); background: var(--red-softer); }
.form .btn-block { grid-column: 1 / -1; margin-top: 4px; }
.form-note {
  grid-column: 1 / -1;
  font-size: .8rem;
  color: var(--ink-soft);
  text-align: center;
}

/* Campo anti-spam: escondido de gente, visível para robô */
.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* Mensagens de retorno do formulário */
.form-status {
  grid-column: 1 / -1;
  display: none;
  font-size: .89rem;
  font-weight: 600;
  line-height: 1.5;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
}
.form-status.sucesso,
.form-status.erro,
.form-status.aviso { display: block; }

.form-status.sucesso {
  color: #14653a;
  background: #e7f8ef;
  border-color: #bde8d1;
}
.form-status.erro {
  color: var(--red-darker);
  background: var(--red-softer);
  border-color: var(--red-soft);
}
.form-status.aviso {
  color: #8a5300;
  background: #fff6e5;
  border-color: #ffe0a8;
}
.form-status a { color: inherit; font-weight: 800; text-decoration: underline; }

.btn:disabled { opacity: .75; cursor: default; transform: none !important; }

/* ===== Footer ===== */
.site-footer { background: var(--ink); color: #b9bfc7; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: clamp(26px, 3.4vw, 44px);
  padding-block: clamp(46px, 6vw, 68px) clamp(30px, 4vw, 42px);
}
.footer-logo-row { display: flex; align-items: center; gap: 11px; margin-bottom: 15px; }
.footer-logo-row img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}
.footer-name { font-size: 1.32rem; }
.footer-name .brand-name-alt { color: var(--white); }
.footer-brand p { font-size: .9rem; line-height: 1.7; max-width: 320px; }
.footer-endereco { font-style: normal; font-size: .84rem; line-height: 1.6; color: #8d949d; margin-top: 12px; }
.footer-col h3 {
  font-size: .8rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 16px;
}
.footer-col ul { display: grid; gap: 10px; }
.footer-col li { font-size: .9rem; }
.footer-col a { transition: color .2s, padding-left .2s; }
.footer-col a:hover { color: var(--white); padding-left: 4px; }
.footer-cnpj { color: #8d949d; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .09); }
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-block: 20px;
}
.footer-bottom p { font-size: .82rem; color: #8d949d; }
.footer-bottom a { color: var(--red); font-weight: 600; }
.footer-bottom a:hover { text-decoration: underline; }

/* ===== Botões flutuantes ===== */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 95;
  display: flex;
  align-items: center;
  gap: 0;
  width: 58px;
  height: 58px;
  padding: 0;
  background: #25d366;
  border-radius: var(--radius-pill);
  box-shadow: 0 10px 26px rgba(37, 211, 102, .42);
  overflow: hidden;
  transition: width .35s cubic-bezier(.4, 0, .2, 1), box-shadow .3s;
}
.whatsapp-float svg { flex-shrink: 0; margin: 15px; }
.whatsapp-tip {
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
  opacity: 0;
  transition: opacity .25s;
}
.whatsapp-float:hover {
  width: 196px;
  box-shadow: 0 14px 32px rgba(37, 211, 102, .5);
}
.whatsapp-float:hover .whatsapp-tip { opacity: 1; }

.to-top {
  position: fixed;
  right: 20px;
  bottom: 88px;
  z-index: 94;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .3s, transform .3s, visibility .3s, color .2s, border-color .2s;
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { color: var(--red); border-color: var(--red-soft); }

/* ===== Animação de entrada ===== */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s cubic-bezier(.16, 1, .3, 1), transform .7s cubic-bezier(.16, 1, .3, 1);
}
.reveal.visible { opacity: 1; transform: none; }

/* ============================================
   RESPONSIVIDADE
   ============================================ */

/* Tablets grandes */
@media (max-width: 1060px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* Tablets */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-text .lead { margin-inline: auto; }
  .hero-actions, .hero-badges, .pill { justify-content: center; }
  .hero-badges { justify-content: center; }
  .hero-visual { order: -1; min-height: 0; margin-bottom: 8px; }
  .hero-card { width: min(320px, 100%); }
  .chip-1 { left: 0; top: 2%; }
  .chip-2 { right: 0; bottom: 4%; }

  .contato-grid { grid-template-columns: 1fr; }
  .contato-info {
    grid-template-columns: repeat(auto-fit, minmax(226px, 1fr));
  }

  .about-inner { grid-template-columns: 1fr; text-align: center; }
  .about-visual { order: -1; }
  .about-text .lead, .about-text p { margin-inline: auto; }
  .about-actions { justify-content: center; }
}

/* Menu mobile */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed;
    inset: 78px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    max-height: calc(100vh - 78px);
    overflow-y: auto;
    padding: 14px var(--gutter) 26px;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    transform: translateY(-14px);
    opacity: 0;
    visibility: hidden;
    transition: transform .3s, opacity .3s, visibility .3s;
  }
  .nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav a {
    padding: 15px 16px;
    font-size: 1rem;
    border-radius: var(--radius-sm);
  }
  .nav-cta {
    margin: 10px 0 0;
    padding: 16px !important;
  }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  body.nav-open { overflow: hidden; }
}

/* Celulares grandes */
@media (max-width: 720px) {
  html { scroll-padding-top: 84px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-inner .btn { width: 100%; }
  .footer-bottom-inner { justify-content: center; text-align: center; }
  .marquee-inner { gap: 8px 26px; }
  .marquee-inner span { font-size: .8rem; }
  .marquee-inner span:not(:last-child)::after { right: -15px; }
}

/* Celulares */
@media (max-width: 600px) {
  body { font-size: 15.5px; }
  .form { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand p { max-width: none; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .about-actions { flex-direction: column; }
  .about-actions .btn { width: 100%; }
  .feature { padding: 20px; }
  .card { padding: 26px 22px; }

  /* Chips atrapalham em telas pequenas */
  .float-chip { display: none; }

  .whatsapp-float { right: 16px; bottom: 16px; }
  .to-top { right: 16px; bottom: 84px; }
  .whatsapp-float:hover { width: 58px; }
  .whatsapp-float:hover .whatsapp-tip { opacity: 0; }
}

/* Celulares pequenos */
@media (max-width: 400px) {
  .brand-tagline { display: none; }
  .brand-name { font-size: 1.28rem; }
  .hero-card-list { grid-template-columns: 1fr; }
  .info-card { padding: 16px 17px; }
  .faq-item summary { padding: 16px 17px; font-size: .94rem; }
  .faq-body { padding: 0 17px 17px; }
}

/* ===== Preferências do usuário ===== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ===== Impressão ===== */
@media print {
  .site-header, .whatsapp-float, .to-top, .cta-band, .hero-glow, .hero-grid-bg { display: none !important; }
  body { color: #000; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================
   CATÁLOGO DE COMPUTADORES
   ============================================ */

/* ----- Abertura da página ----- */
.catalogo-topo {
  position: relative;
  overflow: hidden;
  padding-block: clamp(30px, 4vw, 52px) clamp(30px, 4vw, 44px);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.catalogo-topo > .container { position: relative; z-index: 2; }

.migalhas {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .84rem;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.migalhas a { color: var(--ink-mid); font-weight: 600; }
.migalhas a:hover { color: var(--red); text-decoration: underline; }

.catalogo-topo h1 {
  font-size: clamp(1.7rem, 4.4vw, 2.7rem);
  margin-bottom: 16px;
}
.catalogo-topo .lead { margin-bottom: 24px; max-width: 62ch; }

/* ----- Convite fixo para cotar outra configuração ----- */
.cotar-outra {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: clamp(28px, 4vw, 44px);
  padding: clamp(24px, 3.5vw, 34px);
  background: linear-gradient(135deg, var(--red), var(--red-darker));
  color: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-red);
}
.cotar-outra-txt { flex: 1 1 320px; }
.cotar-outra h2 { font-size: clamp(1.2rem, 2.6vw, 1.5rem); margin-bottom: 6px; }
.cotar-outra p { color: rgba(255, 255, 255, .92); font-size: .96rem; max-width: 60ch; }
.cotar-outra .btn { flex-shrink: 0; background: var(--white); color: var(--red); }
.cotar-outra .btn:hover { background: #f2f2f2; transform: translateY(-2px); }
@media (max-width: 560px) {
  .cotar-outra .btn { width: 100%; justify-content: center; }
}

/* ----- Filtro por categoria ----- */
.filtro {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: clamp(24px, 3vw, 34px);
}
.filtro-bt {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--ink-mid);
  background: var(--white);
  border: 1px solid var(--border);
  padding: 9px 17px;
  border-radius: var(--radius-pill);
  transition: border-color .2s, color .2s, background .2s;
}
.filtro-bt span {
  font-size: .76rem;
  font-weight: 700;
  color: var(--ink-soft);
  background: var(--bg-alt);
  padding: 1px 7px;
  border-radius: var(--radius-pill);
  transition: background .2s, color .2s;
}
.filtro-bt:hover { border-color: var(--border-strong); color: var(--ink); }
.filtro-bt.ativo {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}
.filtro-bt.ativo span { color: var(--white); background: rgba(255, 255, 255, .22); }

/* ----- Grade de produtos ----- */
.produtos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: clamp(18px, 2.4vw, 26px);
}

.produto {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  scroll-margin-top: 100px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.produto:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.produto.oculto { display: none; }

/* Foto */
.produto-foto {
  position: relative;
  aspect-ratio: 16 / 11;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
/* contain em vez de cover: foto de produto não pode ter borda cortada */
.produto-foto img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}
.produto-sem-foto {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 100%;
  color: var(--ink-soft);
  background-color: var(--bg-alt);
  background-image:
    linear-gradient(135deg, rgba(20, 22, 26, .03) 25%, transparent 25%, transparent 50%, rgba(20, 22, 26, .03) 50%, rgba(20, 22, 26, .03) 75%, transparent 75%);
  background-size: 16px 16px;
}
.produto-sem-foto span {
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.produto-selos {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: space-between;
}
.produto-selo,
.produto-estoque {
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 5px 11px;
  border-radius: var(--radius-pill);
}
.produto-selo {
  color: var(--white);
  background: var(--red);
  box-shadow: var(--shadow-red);
}
.produto-estoque {
  margin-left: auto;
  color: #14653a;
  background: #e7f8ef;
  border: 1px solid #bde8d1;
}
.produto-estoque.encomenda {
  color: #8a5300;
  background: #fff6e5;
  border-color: #ffe0a8;
}

/* Corpo */
.produto-corpo { padding: 22px 22px 18px; flex: 1; }
.produto-cat {
  font-size: .73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--red);
  margin-bottom: 6px;
}
.produto-corpo h3 { font-size: 1.16rem; margin-bottom: 9px; }
.produto-resumo {
  font-size: .91rem;
  color: var(--ink-soft);
  margin-bottom: 16px;
}

.produto-especs {
  display: grid;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.produto-especs > div {
  display: grid;
  grid-template-columns: minmax(96px, 38%) 1fr;
  gap: 10px;
  padding: 8px 12px;
  background: var(--white);
}
.produto-especs dt {
  font-size: .78rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.produto-especs dd {
  font-size: .84rem;
  font-weight: 600;
  color: var(--ink);
}

.produto-obs {
  margin-top: 14px;
  font-size: .82rem;
  color: var(--ink-soft);
  padding-left: 12px;
  border-left: 2px solid var(--red-soft);
}

/* Pé do cartão */
.produto-pe {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding: 16px 22px 20px;
  border-top: 1px solid var(--border);
  background: var(--red-softer);
}
.produto-preco { display: flex; flex-direction: column; line-height: 1.25; }
.produto-preco-rotulo {
  font-size: .74rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.produto-preco-valor {
  font-size: 1.42rem;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--ink);
}
.produto-preco-valor.consulta { font-size: 1.1rem; color: var(--red); }
.produto-parcela {
  font-size: .76rem;
  color: var(--ink-soft);
  margin-top: 2px;
}
.produto-pe .btn { padding: 11px 20px; font-size: .9rem; }

/* ----- Responsivo do catálogo ----- */
@media (max-width: 720px) {
  .produtos { grid-template-columns: 1fr; }
  .filtro { gap: 7px; }
  .filtro-bt { font-size: .85rem; padding: 8px 14px; }
}

@media (max-width: 480px) {
  .produto-pe { flex-direction: column; align-items: stretch; }
  .produto-pe .btn { width: 100%; }
  .produto-especs > div { grid-template-columns: 1fr; gap: 2px; }
  .produto-corpo { padding: 20px 18px 16px; }
  .produto-pe { padding: 16px 18px 18px; }
}

/* ============================================
   CATÁLOGO: BUSCA E AGRUPAMENTO
   ============================================ */

.rotulo-oculto {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* ----- Layout com filtro lateral ----- */
.catalogo-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: clamp(20px, 3vw, 38px);
  align-items: start;
}

.filtro-lateral {
  position: sticky;
  top: 94px;
  display: grid;
  gap: 22px;
}
.filtro-bloco { display: grid; gap: 10px; }
.filtro-titulo {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ink-soft);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.ordenar-select {
  font-size: .9rem;
  padding: 10px 12px;
  background: var(--white);
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.ordenar-select:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px var(--red-soft); }
.filtro-nota { font-size: .78rem; color: var(--ink-soft); }
.filtro-nome { flex: 1; min-width: 0; }
.catalogo-conteudo { min-width: 0; }

.busca {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  transition: border-color .2s, box-shadow .2s;
}
.busca:focus-within {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(238, 28, 28, .12);
}
.busca > svg {
  flex-shrink: 0;
  margin-left: 15px;
  color: var(--ink-soft);
}
.busca input {
  flex: 1;
  min-width: 0;
  font-size: .94rem;
  padding: 12px 12px 12px 10px;
  background: none;
  border: 0;
  border-radius: var(--radius-pill);
}
.busca input:focus { outline: none; }
.busca input::placeholder { color: #a1a7b0; }
/* Esconde o X nativo do input type=search, já temos o nosso */
.busca input::-webkit-search-cancel-button { -webkit-appearance: none; }

.busca-limpar {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  margin-right: 8px;
  color: var(--ink-soft);
  background: var(--bg-alt);
  border-radius: 50%;
  transition: color .15s, background .15s;
}
.busca-limpar:hover { color: var(--white); background: var(--red); }

.busca-contador {
  margin-bottom: 16px;
  font-size: .86rem;
  font-weight: 600;
  color: var(--ink-mid);
}
.busca-contador:empty { display: none; }

/* Filtro de categorias em lista vertical */
.filtro { display: grid; gap: 4px; }
.filtro-bt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  font-size: .92rem;
  font-weight: 600;
  text-align: left;
  color: var(--ink-mid);
  background: none;
  border: 0;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background .15s, color .15s;
}
.filtro-bt:hover { background: var(--white); color: var(--ink); }
.filtro-bt.ativo { background: var(--red); color: var(--white); }
.filtro-qtd {
  font-size: .76rem;
  font-weight: 700;
  color: var(--ink-soft);
  background: var(--white);
  padding: 1px 8px;
  border-radius: var(--radius-pill);
}
.filtro-bt.ativo .filtro-qtd { color: var(--white); background: rgba(255, 255, 255, .22); }

/* ----- Grupos por categoria ----- */
.catalogo-lista { padding-top: clamp(28px, 4vw, 44px); }

.grupo { scroll-margin-top: 150px; }
.grupo + .grupo { margin-top: clamp(38px, 5vw, 60px); }
.grupo.oculto { display: none; }

.grupo-topo {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding-bottom: 14px;
  margin-bottom: clamp(18px, 2.4vw, 26px);
  border-bottom: 2px solid var(--border);
}
.grupo-topo h2 {
  font-size: clamp(1.25rem, 2.8vw, 1.65rem);
  letter-spacing: -.02em;
}
.grupo-qtd {
  font-size: .8rem;
  font-weight: 700;
  color: var(--ink-soft);
  background: var(--white);
  border: 1px solid var(--border);
  padding: 3px 11px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

/* ----- Estado vazio ----- */
.catalogo-vazio {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: clamp(34px, 5vw, 52px) 24px;
  text-align: center;
  color: var(--ink-soft);
  background: var(--white);
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius);
}
.catalogo-vazio strong { color: var(--ink); font-size: 1.05rem; }
.catalogo-vazio .btn { margin-top: 12px; }
/* Respeita o atributo hidden (display:grid acima venceria o hidden do HTML) */
.catalogo-vazio[hidden] { display: none !important; }
/* Caixa sem conteudo nao mostra o retangulo tracejado */
.catalogo-vazio:empty { display: none !important; }

/* ----- Responsivo ----- */
@media (max-width: 900px) {
  .catalogo-layout { grid-template-columns: 1fr; }
  .filtro-lateral {
    position: static;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 24px;
  }
  /* No mobile as categorias viram uma linha rolável */
  .filtro { grid-auto-flow: column; grid-auto-columns: max-content; overflow-x: auto; gap: 6px; padding-bottom: 4px; }
  .filtro-bt { border: 1px solid var(--border); white-space: nowrap; }
  .filtro-bt.ativo { border-color: var(--red); }
}

@media (max-width: 720px) {
  .grupo-topo { flex-wrap: wrap; gap: 8px; }
}
