/* ═══════════════════════════════════════════════════════════════════════════
   TEKREPAROS — main.css
   Design: design.md · Inter · fundo #fff · zero radius · sem sombras
   Amarelo #F7D100 · Verde #2DB34A · Texto #111111
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ────────────────────────────────────────────────────────── */
:root {
  /* Paleta design.md */
  --tek-yellow:   #F7D100;
  --tek-green:    #2DB34A;
  --tek-gradient: linear-gradient(90deg, #F7D100, #2DB34A);

  /* Cores base */
  --tek-bg:          #ffffff;
  --tek-fg:          #111111;
  --tek-muted:       #fafafa;
  --tek-muted-fg:    #737373;
  --tek-border:      #E0E0E0;

  /* Aliases backward-compat (woo.css usa esses nomes) */
  --tek-foreground:   #111111;
  --tek-primary:      #111111;
  --tek-primary-fg:   #ffffff;
  --tek-card:         #ffffff;
  --tek-card-fg:      #111111;
  --tek-gold:         #F7D100;
  --tek-badge-yellow: #F7D100;
  --tek-badge-yellow-fg: #111111;

  /* Tipografia */
  --tek-font: 'Inter', system-ui, sans-serif;

  /* Layout */
  --tek-header-h: 64px;

  /* Radius */
  --tek-radius:      8px;
  --tek-radius-sm:   4px;
  --tek-radius-card: 10px;
  --tek-radius-hero: 0;
  --tek-radius-btn:  6px;

  /* Sombras */
  --tek-shadow-sm: 0 1px 3px rgba(0,0,0,.07);
  --tek-shadow-md: 0 4px 12px rgba(0,0,0,.08);
  --tek-shadow-lg: none;

  --tek-transition: 0.15s ease;
}

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

html {
  font-family: var(--tek-font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--tek-fg);
  background: var(--tek-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}
body { min-height: 100vh; background: var(--tek-bg); }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }

/* ── ACESSIBILIDADE ───────────────────────────────────────────────────────── */
.tek-skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  padding: .5rem 1rem; background: var(--tek-fg); color: #fff;
}
.tek-skip-link:focus { left: 0; }

.screen-reader-text {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

*:focus-visible { outline: 2px solid var(--tek-yellow); outline-offset: 2px; }

/* ── CONTAINER ────────────────────────────────────────────────────────────── */
.tek-container { max-width: 1200px; margin-inline: auto; padding-inline: 3rem; }
@media (max-width: 1024px) { .tek-container { padding-inline: 2rem; } }
@media (max-width: 640px)  { .tek-container { padding-inline: 1.25rem; } }

/* ── TIPOGRAFIA ───────────────────────────────────────────────────────────── */
/* Escalas do design.md */
h1 { font-size: 3.5rem; font-weight: 300; letter-spacing: -.04em; line-height: 1.1; }
h1 strong { font-weight: 700; }
h2 { font-size: 2rem; font-weight: 400; letter-spacing: -.03em; line-height: 1.2; }
h2 strong { font-weight: 700; }
h3 { font-size: .9375rem; font-weight: 600; }

.tek-section-label,
.tek-section-label-gold,
.tek-label-muted {
  font-size: .6875rem; font-weight: 600;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--tek-muted-fg);
  display: block; margin-bottom: .5rem;
}

.tek-section-title {
  font-size: 2rem; font-weight: 400;
  letter-spacing: -.03em; line-height: 1.2;
  margin-top: .5rem;
}

/* ── BOTÕES ───────────────────────────────────────────────────────────────── */
.tek-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .875rem 1.75rem;
  font-size: .9375rem; font-weight: 600; font-family: var(--tek-font); line-height: 1;
  border: 1.5px solid transparent; border-radius: var(--tek-radius-btn);
  transition: opacity var(--tek-transition), background var(--tek-transition), border-color var(--tek-transition);
  white-space: nowrap; cursor: pointer; text-decoration: none;
}
.tek-btn-lg   { padding: 1rem 2rem; font-size: 1rem; }
.tek-btn-sm   { padding: .5rem 1rem; font-size: .8125rem; }
.tek-btn-full { width: 100%; justify-content: center; }

.tek-btn-primary  { background: var(--tek-fg); color: #fff; border-color: var(--tek-fg); }
.tek-btn-primary:hover { opacity: .85; }

.tek-btn-outline  { background: transparent; color: var(--tek-fg); border-color: var(--tek-border); }
.tek-btn-outline:hover { border-color: var(--tek-fg); }

.tek-btn-ghost    { background: transparent; color: var(--tek-muted-fg); border-color: transparent; }
.tek-btn-ghost:hover { color: var(--tek-fg); }

.tek-btn-whatsapp { background: #25D366; color: #fff; border-color: #25D366; }
.tek-btn-whatsapp:hover { opacity: .9; }

/* ── HEADER ───────────────────────────────────────────────────────────────── */
.tek-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--tek-header-h);
  background: var(--tek-bg);
  border-bottom: 1px solid var(--tek-border);
}

.tek-header-inner {
  max-width: 1200px; margin-inline: auto;
  padding-inline: 3rem; height: 100%;
  display: flex; align-items: center; gap: 3rem;
}
@media (max-width: 1024px) { .tek-header-inner { padding-inline: 2rem; } }
@media (max-width: 640px)  { .tek-header-inner { padding-inline: 1.25rem; gap: 1rem; } }

/* Logo — sublinhado gradiente */
.tek-logo-link { text-decoration: none; }
.tek-logo-text {
  font-size: 1rem; font-weight: 800; letter-spacing: .15em;
  text-transform: uppercase; color: var(--tek-fg);
  position: relative; display: inline-block; padding-bottom: 3px;
}
.tek-logo-text::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--tek-gradient);
}

/* Logo (quando há logo image) */
.tek-header-logo .custom-logo { height: 32px; width: auto; }

/* Nav desktop */
.tek-header-nav { display: flex; }
@media (max-width: 768px) { .tek-header-nav { display: none; } }

.tek-nav-list { display: flex; gap: 1.5rem; list-style: none; }

.tek-nav-list a {
  font-size: .8125rem; font-weight: 500; letter-spacing: .02em;
  color: var(--tek-muted-fg);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color var(--tek-transition), border-color var(--tek-transition);
}
.tek-nav-list a:hover { color: var(--tek-fg); }

.tek-nav-list .current-menu-item > a,
.tek-nav-list a.active {
  color: var(--tek-fg);
  border-bottom-color: var(--tek-yellow);
}

/* Dropdown — supports both manual .tek-dropdown and WP-generated .sub-menu */
.tek-nav-list .menu-item-has-children { position: relative; }
.tek-nav-list .tek-dropdown,
.tek-nav-list .sub-menu {
  position: absolute; top: 100%; left: 0;
  background: var(--tek-bg); border: 1px solid var(--tek-border);
  min-width: 200px; list-style: none; padding: 0; margin: 0;
  opacity: 0; pointer-events: none;
  transform: translateY(4px);
  transition: opacity var(--tek-transition), transform var(--tek-transition);
  z-index: 100;
}
.tek-nav-list .menu-item-has-children:hover .tek-dropdown,
.tek-nav-list .menu-item-has-children:focus-within .tek-dropdown,
.tek-nav-list .menu-item-has-children:hover .sub-menu,
.tek-nav-list .menu-item-has-children:focus-within .sub-menu {
  opacity: 1; pointer-events: auto; transform: translateY(0);
}
.tek-dropdown li a,
.tek-nav-list .sub-menu li a {
  display: block; padding: .75rem 1rem;
  border-bottom: 1px solid var(--tek-border);
  font-size: .8125rem; font-weight: 500; color: var(--tek-muted-fg);
  white-space: nowrap;
}
.tek-dropdown li:last-child a,
.tek-nav-list .sub-menu li:last-child a { border-bottom: none; }
.tek-dropdown li a:hover,
.tek-nav-list .sub-menu li a:hover { color: var(--tek-fg); background: var(--tek-muted); }
.tek-chevron { vertical-align: middle; margin-left: 3px; }

/* Ações header */
.tek-header-actions { display: flex; align-items: center; gap: .25rem; margin-left: auto; }

.tek-icon-btn {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--tek-fg); transition: color var(--tek-transition);
}
.tek-icon-btn:hover { color: var(--tek-muted-fg); }

.tek-cart-btn { position: relative; }
.tek-cart-count {
  position: absolute; top: 6px; right: 4px;
  background: var(--tek-yellow); color: var(--tek-fg);
  min-width: 16px; height: 16px; padding: 0 3px;
  font-size: .6rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; line-height: 1;
}

.tek-hamburger { display: none; }
@media (max-width: 768px) { .tek-hamburger { display: inline-flex; } }

/* Barra de busca expansível */
.tek-search-bar {
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--tek-bg); border-bottom: 1px solid var(--tek-border);
  padding: .875rem 3rem;
}
.tek-search-bar[hidden] { display: none; }
.tek-search-form { display: flex; gap: 0; max-width: 600px; margin: 0 auto; }
.tek-search-input {
  flex: 1; padding: .625rem 1rem;
  background: var(--tek-bg); border: 1px solid var(--tek-border); border-right: none;
  font: inherit; font-size: .9375rem; color: var(--tek-fg); outline: none;
  transition: border-color var(--tek-transition);
}
.tek-search-input:focus { border-color: var(--tek-fg); }
.tek-search-submit {
  padding: .625rem 1rem;
  background: var(--tek-fg); color: #fff;
  border: 1px solid var(--tek-fg); cursor: pointer;
  display: flex; align-items: center; transition: opacity var(--tek-transition);
}
.tek-search-submit:hover { opacity: .85; }

/* Sidebar mobile */
.tek-sidebar-overlay {
  position: fixed; inset: 0; z-index: 199;
  background: rgba(0,0,0,.3); opacity: 0; transition: opacity .3s ease; pointer-events: none;
}
.tek-sidebar-overlay.is-open { opacity: 1; pointer-events: auto; }

.tek-mobile-nav {
  position: fixed; top: 0; left: 0; bottom: 0; z-index: 200;
  width: 280px; background: var(--tek-bg); border-right: 1px solid var(--tek-border);
  padding: 2rem 1.5rem;
  transform: translateX(-100%); transition: transform .3s ease;
  display: flex; flex-direction: column; gap: 2rem;
}
.tek-mobile-nav.is-open { transform: translateX(0); }
.tek-mobile-nav[hidden] { display: none; }

.tek-mobile-nav-list { list-style: none; display: flex; flex-direction: column; }
.tek-mobile-nav-list li { border-bottom: 1px solid var(--tek-border); }
.tek-mobile-nav-list a {
  display: block; padding: .875rem 0;
  font-size: .9375rem; font-weight: 500; color: var(--tek-fg);
}
.tek-mobile-nav-footer { margin-top: auto; }

/* ── MAIN ─────────────────────────────────────────────────────────────────── */
.tek-main { padding-top: calc(var(--tek-header-h) + 4rem); padding-bottom: 8rem; }

/* ── BREADCRUMB ───────────────────────────────────────────────────────────── */
.tek-breadcrumb {
  font-size: .875rem; color: var(--tek-muted-fg);
  margin-bottom: 2rem;
}
.tek-breadcrumb ol {
  list-style: none; display: flex; align-items: center;
  flex-wrap: wrap; gap: .25rem .5rem; margin: 0; padding: 0;
}
.tek-breadcrumb li { display: flex; align-items: center; }
.tek-breadcrumb a:hover { color: var(--tek-fg); }
.tek-breadcrumb-sep { opacity: .4; }

/* ── HERO ─────────────────────────────────────────────────────────────────── */
.tek-hero {
  padding: 1rem 2rem 1rem;
  border-top: 1px solid var(--tek-border);
  border-bottom: 1px solid var(--tek-border);
  margin-bottom: 6rem;
  text-align: center;
}
.tek-hero-inner { max-width: 720px; margin: 0 auto; }

/* Traço decorativo gradiente acima do label */
.tek-hero-inner::before {
  content: '';
  display: block;
  width: 48px; height: 2px;
  background: var(--tek-gradient);
  margin: 0 auto 1.25rem;
}

.tek-hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300; letter-spacing: -.04em; line-height: 1.1;
  margin-top: .75rem; margin-bottom: 1.25rem;
}
.tek-hero-title strong { font-weight: 700; }

.tek-hero-desc {
  font-size: 1rem; font-weight: 300;
  color: var(--tek-muted-fg); line-height: 1.75;
  margin-bottom: 2rem; max-width: 520px; margin-inline: auto;
}

.tek-hero-ctas { display: flex; flex-direction: column; align-items: center; gap: .75rem; }
@media (min-width: 480px) { .tek-hero-ctas { flex-direction: row; justify-content: center; } }

.tek-hero-features {
  display: grid; grid-template-columns: 1fr; gap: .75rem;
  margin-top: 2.5rem; padding-top: 2.5rem; border-top: 1px solid var(--tek-border);
}
@media (min-width: 640px) { .tek-hero-features { grid-template-columns: repeat(3, 1fr); } }

.tek-feature-card {
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  padding: 1.25rem 1.5rem; border: 1px solid var(--tek-border);
  background: var(--tek-bg); text-align: center; border-radius: var(--tek-radius);
}
.tek-feature-icon { color: var(--tek-fg); }
.tek-feature-title { font-size: .875rem; font-weight: 600; }
.tek-feature-desc { font-size: .75rem; color: var(--tek-muted-fg); line-height: 1.5; }

/* Brand chips */
.tek-brands-row { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem; margin-top: 1.5rem; }
.tek-brand-chip {
  padding: .375rem .875rem;
  border: 1px solid var(--tek-border); border-radius: var(--tek-radius-sm);
  font-size: .8125rem; font-weight: 500; color: var(--tek-muted-fg);
  transition: border-color var(--tek-transition), color var(--tek-transition);
}
.tek-brand-chip:hover { border-color: var(--tek-fg); color: var(--tek-fg); }

/* Placeholders de imagem */
.tek-img-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .75rem; background: var(--tek-muted); border: 1px solid var(--tek-border);
  color: var(--tek-muted-fg); font-size: .875rem; width: 100%; margin: 2rem 0;
}
.tek-img-placeholder svg { opacity: .3; }
.tek-img-21-9 { aspect-ratio: 21/9; }
.tek-img-4-3  { aspect-ratio: 4/3; margin: 0; }

/* Mapa embed */
.tek-as-map-wrap {
  width: 100%; min-height: 380px; align-self: stretch; margin: 0; overflow: hidden;
  border: 1px solid var(--tek-border);
}
.tek-as-map-wrap iframe { display: block; width: 100%; height: 100%; min-height: 380px; }

/* ── SEÇÕES ───────────────────────────────────────────────────────────────── */
.tek-as-section,
.tek-section { padding: 6rem 0; border-top: 1px solid var(--tek-border); }

.tek-as-body,
.tek-body-text {
  font-size: .9375rem; font-weight: 300;
  color: var(--tek-muted-fg); line-height: 1.85; margin-bottom: 1rem;
}
.tek-as-lead,
.tek-lead-text {
  font-size: 1rem; font-weight: 300;
  color: var(--tek-muted-fg); line-height: 1.75;
}

/* Duas colunas */
.tek-as-two-col {
  display: grid; gap: 5rem; grid-template-columns: 1fr; align-items: center;
}
@media (min-width: 768px) {
  .tek-as-two-col { grid-template-columns: 1fr 1fr; }
  .tek-as-two-col-reverse .tek-img-placeholder,
  .tek-as-two-col-reverse .tek-as-map-wrap { order: -1; }
}

/* Grid de falhas — estilo tabela */
.tek-failures-grid {
  display: grid; grid-template-columns: 1fr; list-style: none;
  margin-top: 2rem; border: 1px solid var(--tek-border);
  border-radius: var(--tek-radius); overflow: hidden;
}
@media (min-width: 640px)  { .tek-failures-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .tek-failures-grid { grid-template-columns: repeat(3, 1fr); } }

.tek-failure-card {
  display: flex; align-items: flex-start; gap: 1rem; padding: 1.5rem;
  border-bottom: 1px solid var(--tek-border);
  border-right: 1px solid var(--tek-border);
  background: var(--tek-muted);
}
.tek-failure-icon {
  flex-shrink: 0; width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  color: var(--tek-fg);
}
.tek-failure-title { font-size: .9375rem; font-weight: 600; margin-bottom: .25rem; }
.tek-failure-desc  { font-size: .8125rem; color: var(--tek-muted-fg); line-height: 1.55; }

/* Stats row */
.tek-as-stats {
  display: flex; gap: 2rem; flex-wrap: wrap;
  margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--tek-border);
}
.tek-as-stat { display: flex; flex-direction: column; gap: .25rem; }
.tek-as-stat-value { font-size: 2.25rem; font-weight: 700; letter-spacing: -.04em; line-height: 1; }
.tek-as-stat-label { font-size: .75rem; letter-spacing: .04em; color: var(--tek-muted-fg); }

/* CTA block — linha vertical decorativa */
.tek-as-cta {
  text-align: center; padding: 3rem 4rem; margin-top: 0;
  position: relative;
}
@media (max-width: 640px) { .tek-as-cta { padding: 2.5rem 1.5rem; } }
.tek-as-cta--compact { padding: 2rem 4rem; }
.tek-as-cta--compact::before { display: none; }
.tek-as-cta::before {
  content: '';
  display: block; width: 1px; height: 4rem;
  background: var(--tek-border);
  margin: 0 auto 3rem;
}

/* Mission block */
.tek-mission {
  text-align: center; border: 1px solid var(--tek-border);
  padding: 5rem 3rem;
}
.tek-mission-stats { display: flex; justify-content: center; gap: 4rem; margin-top: 2rem; flex-wrap: wrap; }
.tek-stat-value { font-size: 2.25rem; font-weight: 700; letter-spacing: -.04em; line-height: 1; display: block; }
.tek-stat-label { font-size: .75rem; color: var(--tek-muted-fg); letter-spacing: .04em; margin-top: .25rem; display: block; }

/* Benefits / steps — grid tabela */
.tek-benefits-grid,
.tek-steps-grid {
  display: grid; grid-template-columns: 1fr;
  border: 1px solid var(--tek-border); border-radius: var(--tek-radius); overflow: hidden;
}
@media (min-width: 640px) { .tek-benefits-grid, .tek-steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .tek-benefits-grid, .tek-steps-grid { grid-template-columns: repeat(4, 1fr); } }

.tek-benefit-card,
.tek-step-card {
  border-bottom: 1px solid var(--tek-border);
  border-right: 1px solid var(--tek-border);
  padding: 2rem; display: flex; flex-direction: column; gap: .75rem;
}
.tek-step-number { font-size: 2rem; font-weight: 900; color: var(--tek-border); line-height: 1; }
.tek-card-title  { font-size: 1rem; font-weight: 600; }
.tek-card-desc   { font-size: .875rem; color: var(--tek-muted-fg); line-height: 1.6; }

/* ── LOJA (WooCommerce) ───────────────────────────────────────────────────── */
.tek-shop-header {
  display: flex; flex-direction: column; gap: 1rem;
  margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--tek-border);
}
@media (min-width: 640px) { .tek-shop-header { flex-direction: row; align-items: center; justify-content: space-between; } }
.tek-shop-count { font-size: .875rem; color: var(--tek-muted-fg); }

/* Grid de produtos — tabela */
.tek-products-grid {
  display: grid; grid-template-columns: 1fr;
  border: 1px solid var(--tek-border); border-radius: var(--tek-radius-card); overflow: hidden;
}
@media (min-width: 640px)  { .tek-products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1280px) { .tek-products-grid { grid-template-columns: repeat(4, 1fr); } }

.tek-woo-grid {
  display: grid; gap: 0;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--tek-border);
  border-left: 1px solid var(--tek-border);
}
@media (min-width: 640px)  { .tek-woo-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .tek-woo-grid { grid-template-columns: repeat(4, 1fr); } }

.tek-product-card {
  border-bottom: 1px solid var(--tek-border);
  border-right: 1px solid var(--tek-border);
  background: var(--tek-bg); color: var(--tek-fg);
  display: flex; flex-direction: column;
  transition: background var(--tek-transition);
}
.tek-product-card:hover { background: var(--tek-muted); }
.tek-product-card-image {
  position: relative; background: var(--tek-muted); overflow: hidden;
  aspect-ratio: 1; border-bottom: 1px solid var(--tek-border);
}
.tek-product-card-image img { width: 100%; height: 100%; object-fit: cover; transition: opacity .2s; }
.tek-product-card:hover .tek-product-card-image img { opacity: .9; }
.tek-product-badge {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--tek-yellow); color: var(--tek-fg);
  font-size: .6875rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  padding: .25rem .75rem;
}
.tek-product-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; gap: .75rem; }
.tek-product-card-title { font-size: 1rem; font-weight: 600; line-height: 1.35; }
.tek-product-card-title a:hover { color: var(--tek-muted-fg); }
.tek-product-card-desc { font-size: .875rem; color: var(--tek-muted-fg); line-height: 1.55; }
.tek-product-card-price-row { display: flex; align-items: center; gap: .5rem; }
.tek-product-card-price { font-size: .875rem; font-weight: 600; }
.tek-product-card-price-old { font-size: .8125rem; color: var(--tek-muted-fg); text-decoration: line-through; }
.tek-product-card-ctas { display: flex; flex-direction: column; gap: .5rem; margin-top: auto; }
@media (min-width: 480px) { .tek-product-card-ctas { flex-direction: row; } }
.tek-product-card-ctas .tek-btn { flex: 1; }

/* ── PRODUTO SINGULAR ─────────────────────────────────────────────────────── */
.tek-single-product {
  display: grid; gap: 2.5rem; grid-template-columns: 1fr; margin-bottom: 4rem;
}
.tek-single-product.no-gallery .tek-product-gallery { display: none; }
@media (min-width: 900px) {
  .tek-single-product { grid-template-columns: 1fr 1fr; align-items: start; gap: 4rem; }
  .tek-single-product.no-gallery { grid-template-columns: 1fr; }
}

.tek-product-gallery-desktop { display: flex; gap: 1rem; }
.tek-gallery-thumbs-col { display: flex; flex-direction: column; gap: .5rem; width: 80px; flex-shrink: 0; }
.tek-thumb-btn {
  width: 80px; height: 80px; overflow: hidden;
  border: 2px solid transparent; padding: 0; cursor: pointer;
  transition: border-color var(--tek-transition); background: var(--tek-muted);
}
.tek-thumb-btn img { width: 100%; height: 100%; object-fit: cover; }
.tek-thumb-btn.is-active, .tek-thumb-btn:hover { border-color: var(--tek-fg); }
.tek-gallery-main img { width: 100%; object-fit: cover; aspect-ratio: 1; background: var(--tek-muted); border: 1px solid var(--tek-border); }

.tek-gallery-carousel { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.tek-gallery-carousel::-webkit-scrollbar { display: none; }
.tek-gallery-slide { flex: 0 0 100%; scroll-snap-align: start; overflow: hidden; background: var(--tek-muted); aspect-ratio: 1; border: 1px solid var(--tek-border); }
.tek-gallery-slide img { width: 100%; height: 100%; object-fit: cover; }
.tek-carousel-dots { display: flex; justify-content: center; gap: .5rem; margin-top: .75rem; }
.tek-dot { width: 8px; height: 8px; background: var(--tek-border); transition: background var(--tek-transition); cursor: pointer; border: none; }
.tek-dot.is-active { background: var(--tek-fg); }

.tek-product-rating { display: flex; align-items: center; gap: .5rem; margin-bottom: .5rem; }
.tek-product-rating-count { font-size: .875rem; color: var(--tek-muted-fg); text-decoration: underline; }
.tek-product-badge-inline {
  display: inline-block; background: var(--tek-yellow); color: var(--tek-fg);
  font-size: .6875rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  padding: .25rem .75rem; margin-bottom: .5rem;
}
.tek-product-title { font-size: clamp(1.375rem, 3vw, 1.875rem); font-weight: 600; letter-spacing: -.02em; line-height: 1.25; margin-bottom: .75rem; }
.tek-product-short-desc { font-size: .9375rem; color: var(--tek-muted-fg); line-height: 1.65; margin-bottom: 1rem; }
.tek-product-price { display: flex; align-items: baseline; gap: .75rem; margin-bottom: 1.25rem; }
.tek-product-price ins { text-decoration: none; font-size: 1.5rem; font-weight: 700; }
.tek-product-price del { font-size: 1rem; color: var(--tek-muted-fg); }

.tek-delivery-hint {
  display: flex; align-items: flex-start; gap: .5rem;
  font-size: .875rem; color: var(--tek-muted-fg);
  padding: .875rem 1rem; background: var(--tek-muted); border: 1px solid var(--tek-border);
  border-radius: var(--tek-radius); margin-top: .75rem;
}
.tek-delivery-hint svg { flex-shrink: 0; margin-top: 1px; }
.tek-delivery-hint strong { color: var(--tek-fg); }

.tek-trust-badges { display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; margin-top: 1.25rem; }
.tek-trust-badge {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: .375rem; padding: .875rem .5rem;
  background: var(--tek-muted); border: 1px solid var(--tek-border); border-radius: var(--tek-radius-sm);
}
.tek-trust-badge-title { font-size: .75rem; font-weight: 700; }
.tek-trust-badge-desc  { font-size: .6875rem; color: var(--tek-muted-fg); }

.tek-accordion { border: 1px solid var(--tek-border); overflow: hidden; margin-top: 1.25rem; border-radius: var(--tek-radius); }
.tek-accordion-item { border-bottom: 1px solid var(--tek-border); }
.tek-accordion-item:last-child { border-bottom: none; }
.tek-accordion-trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.25rem; font-size: .9375rem; font-weight: 600; background: transparent; color: var(--tek-fg); text-align: left; }
.tek-accordion-trigger:hover { background: var(--tek-muted); }
.tek-accordion-icon { transition: transform var(--tek-transition); }
.tek-accordion-item.is-open .tek-accordion-icon { transform: rotate(180deg); }
.tek-accordion-content { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.tek-accordion-body { padding: 0 1.25rem 1.25rem; font-size: .875rem; color: var(--tek-muted-fg); line-height: 1.7; }

/* Calculadora de frete */
.tek-shipping-calc { margin-top: 1.25rem; }
.tek-shipping-calc h4 { font-size: .875rem; font-weight: 600; margin-bottom: .5rem; }
.tek-shipping-calc-form { display: flex; }
.tek-input, .tek-shipping-input {
  flex: 1; padding: .5rem .875rem;
  border: 1px solid var(--tek-border); border-right: none;
  border-radius: var(--tek-radius-sm) 0 0 var(--tek-radius-sm);
  font: inherit; font-size: .875rem;
  color: var(--tek-fg); background: var(--tek-bg); outline: none;
  transition: border-color var(--tek-transition);
}
.tek-input:focus, .tek-shipping-input:focus { border-color: var(--tek-fg); }
#tek-shipping-results { margin-top: .75rem; font-size: .875rem; color: var(--tek-muted-fg); }
.tek-shipping-result-item { display: flex; justify-content: space-between; align-items: center; padding: .5rem .75rem; background: var(--tek-muted); margin-bottom: .375rem; border: 1px solid var(--tek-border); }

/* CTA sticky (mobile) */
.tek-sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  display: flex; gap: .75rem; padding: .875rem 1rem;
  background: rgba(255,255,255,.97); border-top: 1px solid var(--tek-border);
  border-radius: var(--tek-radius) var(--tek-radius) 0 0;
  transform: translateY(100%); transition: transform .3s ease;
}
.tek-sticky-cta.is-visible { transform: translateY(0); }
@media (min-width: 768px) { .tek-sticky-cta { display: none; } }

/* ── CARRINHO ─────────────────────────────────────────────────────────────── */
.tek-cart-table { border: 1px solid var(--tek-border); overflow: hidden; margin-bottom: 2rem; border-radius: var(--tek-radius); }
.tek-cart-row { display: grid; grid-template-columns: 1fr auto auto auto; align-items: center; gap: 1rem; padding: 1rem 1.5rem; border-bottom: 1px solid var(--tek-border); }
.tek-cart-row:last-child { border-bottom: none; }
.tek-cart-row-head { background: var(--tek-muted); font-size: .8125rem; text-transform: uppercase; letter-spacing: .06em; color: var(--tek-muted-fg); }
.tek-cart-product { display: flex; gap: 1rem; align-items: center; }
.tek-cart-product-img-link img { width: 72px; height: 72px; object-fit: cover; background: var(--tek-muted); border: 1px solid var(--tek-border); }
.tek-cart-product-name { font-weight: 600; font-size: .9375rem; }
.tek-cart-product-price-mobile { font-size: .875rem; color: var(--tek-muted-fg); margin-top: .25rem; }
.tek-cart-remove { color: var(--tek-muted-fg); display: flex; align-items: center; justify-content: center; padding: .5rem; transition: color var(--tek-transition); }
.tek-cart-remove:hover { color: #ef4444; }
.tek-qty-input { width: 64px; padding: .375rem .5rem; text-align: center; border: 1px solid var(--tek-border); font: inherit; outline: none; }
.tek-cart-actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 1.5rem; background: var(--tek-muted); }
.tek-cart-coupon { display: flex; gap: .5rem; flex-wrap: wrap; align-items: center; }
.tek-input-text {
  padding: .5rem 1rem; border: 1px solid var(--tek-border);
  font: inherit; font-size: .875rem; outline: none;
  transition: border-color var(--tek-transition); background: var(--tek-bg); color: var(--tek-fg);
}
.tek-input-text:focus { border-color: var(--tek-fg); }
.tek-cart-footer { display: grid; gap: 2rem; }
@media (min-width: 768px) { .tek-cart-footer { grid-template-columns: 1fr 360px; } .tek-cart-collaterals { grid-column: 2; } }

/* ── CHECKOUT ─────────────────────────────────────────────────────────────── */
.tek-checkout-layout { display: grid; gap: 2.5rem; align-items: start; }
@media (min-width: 900px) { .tek-checkout-layout { grid-template-columns: 1fr 420px; } }
.tek-checkout-section { margin-bottom: 2rem; }
.tek-checkout-section-title { font-size: 1.0625rem; font-weight: 600; margin-bottom: 1.25rem; padding-bottom: .75rem; border-bottom: 1px solid var(--tek-border); }
.tek-checkout-order-review,
.tek-checkout-payment { border: 1px solid var(--tek-border); padding: 1.5rem; margin-bottom: 1rem; background: var(--tek-bg); border-radius: var(--tek-radius); }
@media (min-width: 900px) { .tek-checkout-right { position: sticky; top: calc(var(--tek-header-h) + 1rem); } }
.tek-checkout-security-seal { display: flex; align-items: center; gap: .5rem; margin-top: 1rem; font-size: .8125rem; color: var(--tek-muted-fg); justify-content: center; }
.tek-checkout-cards { text-align: center; font-size: .8125rem; color: var(--tek-muted-fg); margin-top: .5rem; }

/* ── VARIAÇÕES WC ─────────────────────────────────────────────────────────── */
.tek-var-btn {
  display: inline-flex; align-items: center;
  padding: .375rem .875rem;
  border: 1.5px solid var(--tek-border);
  font-size: .875rem; font-weight: 500;
  color: var(--tek-fg); background: transparent;
  transition: all var(--tek-transition); cursor: pointer;
}
.tek-var-btn:hover, .tek-var-btn.is-active { border-color: var(--tek-fg); background: var(--tek-fg); color: #fff; }
.tek-product-ctas { display: flex; flex-direction: column; gap: .75rem; }
.tek-product-ctas .tek-btn { flex: 1; }

/* ── RODAPÉ ───────────────────────────────────────────────────────────────── */
.tek-footer { border-top: 1px solid var(--tek-border); background: var(--tek-bg); padding: 5rem 3rem 3rem; }
@media (max-width: 640px) { .tek-footer { padding: 4rem 1.25rem 2rem; } }

.tek-footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; gap: 4rem; margin-bottom: 2.5rem;
}
@media (min-width: 768px) { .tek-footer-grid { grid-template-columns: 2fr 1fr 1fr; } }

.tek-footer-tagline { font-size: .875rem; font-weight: 300; color: var(--tek-muted-fg); line-height: 1.7; margin: .75rem 0 1.25rem; max-width: 300px; }

.tek-footer-heading { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--tek-muted-fg); margin-bottom: 1rem; }

.tek-footer-nav-list { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.tek-footer-nav-list a { font-size: .875rem; color: var(--tek-muted-fg); transition: color var(--tek-transition); }
.tek-footer-nav-list a:hover { color: var(--tek-fg); }

.tek-footer-contact-list { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.tek-footer-contact-list li { display: flex; align-items: flex-start; gap: .5rem; font-size: .875rem; color: var(--tek-muted-fg); }
.tek-footer-contact-list a { color: var(--tek-muted-fg); }
.tek-footer-contact-list a:hover { color: var(--tek-fg); }

.tek-footer-bottom {
  max-width: 1200px; margin: 0 auto;
  border-top: 1px solid var(--tek-border); padding-top: 1.5rem;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.tek-footer-legal { font-size: .8125rem; color: var(--tek-muted-fg); }
.tek-footer-legal a { color: var(--tek-muted-fg); }
.tek-footer-legal a:hover { color: var(--tek-fg); }
.tek-footer-powered { font-size: .8125rem; color: var(--tek-muted-fg); display: flex; align-items: center; gap: .375rem; }

/* ── CONTEÚDO DE PÁGINA ───────────────────────────────────────────────────── */
.tek-page-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 300; letter-spacing: -.03em;
  margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--tek-border);
}
.tek-page-content h1, .tek-page-content h2, .tek-page-content h3 { font-weight: 600; line-height: 1.3; margin-bottom: .75rem; }
.tek-page-content p { margin-bottom: 1rem; color: var(--tek-muted-fg); line-height: 1.7; font-weight: 300; }
.tek-page-content ul { padding-left: 1.5rem; margin-bottom: 1rem; color: var(--tek-muted-fg); }
.tek-page-content li { margin-bottom: .375rem; line-height: 1.6; }

/* ── BLOG ─────────────────────────────────────────────────────────────────── */
.tek-posts-grid { display: grid; grid-template-columns: 1fr; border: 1px solid var(--tek-border); }
@media (min-width: 640px) { .tek-posts-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .tek-posts-grid { grid-template-columns: repeat(3, 1fr); } }
.tek-post-card { border-bottom: 1px solid var(--tek-border); border-right: 1px solid var(--tek-border); padding: 2rem; }
.tek-post-thumb { display: block; margin-bottom: 1rem; aspect-ratio: 16/9; overflow: hidden; border: 1px solid var(--tek-border); }
.tek-post-thumb img { width: 100%; height: 100%; object-fit: cover; }
.tek-post-title { font-size: 1.125rem; font-weight: 600; line-height: 1.35; margin-bottom: .5rem; }
.tek-post-title a:hover { color: var(--tek-muted-fg); }
.tek-post-excerpt { font-size: .875rem; color: var(--tek-muted-fg); line-height: 1.6; margin-bottom: 1rem; }

.tek-archive-header { padding-bottom: 2rem; margin-bottom: 3rem; border-bottom: 1px solid var(--tek-border); }
.tek-archive-title { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 300; letter-spacing: -.03em; }

.tek-pagination { margin-top: 3rem; display: flex; justify-content: center; gap: .5rem; }
.tek-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border: 1px solid var(--tek-border); font-size: .875rem; color: var(--tek-fg); transition: background var(--tek-transition); }
.tek-pagination .page-numbers:hover, .tek-pagination .page-numbers.current { background: var(--tek-fg); color: #fff; border-color: var(--tek-fg); }

.tek-not-found { text-align: center; padding: 8rem 2rem; }
.tek-not-found h1 { font-size: 2rem; font-weight: 300; letter-spacing: -.03em; margin-bottom: 1rem; }
.tek-not-found p { color: var(--tek-muted-fg); margin-bottom: 2rem; }

/* ── EM CONSTRUÇÃO ─────────────────────────────────────────────────────────── */
.tek-wip-header {
  display: flex; align-items: center; justify-content: center;
  padding: 2rem 3rem; border-bottom: 1px solid var(--tek-border);
}
.tek-wip-main {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 6rem 1.5rem;
  max-width: 600px; margin: 0 auto; width: 100%;
}
.tek-wip-label { font-size: .6875rem; font-weight: 600; letter-spacing: .3em; text-transform: uppercase; color: var(--tek-muted-fg); margin-bottom: .75rem; }
.tek-wip-title { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 300; letter-spacing: -.04em; line-height: 1.2; margin-bottom: 1.25rem; color: var(--tek-fg); }
.tek-wip-desc { font-size: 1rem; font-weight: 300; color: var(--tek-muted-fg); line-height: 1.75; margin-bottom: 2.5rem; max-width: 440px; }
.tek-wip-actions { display: flex; flex-direction: column; gap: .75rem; width: 100%; max-width: 320px; }
@media (min-width: 480px) { .tek-wip-actions { flex-direction: row; justify-content: center; max-width: none; } }
.tek-wip-footer { text-align: center; padding: 1.5rem; border-top: 1px solid var(--tek-border); font-size: .8125rem; color: var(--tek-muted-fg); }

/* Ponto pulsante de status */
.tek-eyebrow { display: flex; align-items: center; gap: .75rem; justify-content: center; margin-bottom: 1.5rem; }
.tek-eyebrow-dot { width: 6px; height: 6px; background: var(--tek-green); }
.tek-eyebrow-dot--pulse { animation: tek-pulse 2s ease-in-out infinite; }
@keyframes tek-pulse { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }
.tek-eyebrow-text { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--tek-muted-fg); }

/* ── PÓS-PEDIDO WHATSAPP ─────────────────────────────────────────────────── */
.tek-thankyou-whatsapp { margin-top: 2rem; padding: 2rem; border: 1px solid var(--tek-border); text-align: center; }
.tek-thankyou-whatsapp p { color: var(--tek-muted-fg); margin-bottom: 1rem; }

/* ── AVISOS WC ────────────────────────────────────────────────────────────── */
.woocommerce-message, .woocommerce-error, .woocommerce-info {
  padding: 1rem 1.5rem; border-left: 4px solid;
  margin-bottom: 1.5rem; list-style: none;
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
}
.woocommerce-message { border-color: var(--tek-green); background: #f0fdf4; }
.woocommerce-error   { border-color: #ef4444; background: #fef2f2; }
.woocommerce-info    { border-color: var(--tek-yellow); background: #fefce8; }

/* ── BREADCRUMB WC ────────────────────────────────────────────────────────── */
.woocommerce-breadcrumb { font-size: .875rem; color: var(--tek-muted-fg); margin-bottom: 1.25rem; }

/* ── FRONT PAGE ───────────────────────────────────────────────────────────── */
.tek-fp-services-grid {
  display: grid; grid-template-columns: 1fr; gap: 2rem;
}
@media (min-width: 768px) {
  .tek-fp-services-grid { grid-template-columns: 1fr 1fr; }
}
.tek-fp-service-card {
  display: flex; flex-direction: column; gap: 1rem;
  border: 1px solid var(--tek-border); padding: 2rem;
}
.tek-fp-service-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--tek-muted);
}
.tek-fp-service-title { font-size: 1.25rem; font-weight: 600; margin: 0; }
.tek-fp-service-desc { font-size: .9375rem; color: var(--tek-muted-fg); line-height: 1.6; margin: 0; }
.tek-fp-service-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: .5rem;
  border-top: 1px solid var(--tek-border); padding-top: 1rem;
}
.tek-fp-service-list li { font-size: .875rem; color: var(--tek-muted-fg); padding-left: 1rem; position: relative; }
.tek-fp-service-list li::before { content: '—'; position: absolute; left: 0; color: var(--tek-accent); }

/* Produtos homepage */
.tek-fp-products-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
}
@media (min-width: 768px) {
  .tek-fp-products-grid { grid-template-columns: repeat(4, 1fr); }
}
.tek-fp-product-card {
  display: flex; flex-direction: column;
  border: 1px solid var(--tek-border);
  text-decoration: none; color: inherit;
  transition: border-color .15s;
}
.tek-fp-product-card:hover { border-color: var(--tek-fg); }
.tek-fp-product-info {
  display: flex; flex-direction: column; gap: .375rem;
  padding: 1rem; border-top: 1px solid var(--tek-border);
}
.tek-fp-product-name { font-size: .875rem; font-weight: 500; line-height: 1.4; }
.tek-fp-product-price { font-size: .875rem; color: var(--tek-muted-fg); }
