/* ==========================================================================
   Caçador de Tênis — landing page
   Paleta espelhada de app/src/theme/colors.ts (fonte da verdade: Notion).
   ========================================================================== */

:root {
  --primary: #00C271;
  --primary-deep: #00A15D;
  --forest: #07623C;
  --charcoal: #0E1B14;
  --accent: #FF6B35;
  --accent-light: #FF8B5E;
  --success: #00A15D;
  --white: #FFFFFF;
  --bg: #F5F7F6;
  --border: #E3E8E5;
  --text: #0E1B14;
  --text-secondary: #8A938E;

  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 6px 24px rgba(14, 27, 20, 0.08);
  --shadow-lg: 0 16px 48px rgba(14, 27, 20, 0.14);
  --maxw: 1120px;
  --gradient: linear-gradient(160deg, var(--primary) 0%, var(--primary-deep) 100%);
}

* { box-sizing: border-box; }

/* [hidden] sempre vence display de classe (ex.: .hb-alerta é flex) */
[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, background .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn:hover { background: var(--accent-light); transform: translateY(-1px); }
.btn-sm { padding: 9px 16px; font-size: 14px; }
.btn-lg { padding: 15px 30px; font-size: 16px; }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { font-weight: 600; font-size: 15px; color: var(--text); }
.nav a:not(.btn):hover { color: var(--primary-deep); }

/* ===== Hero ===== */
.hero {
  background: var(--gradient);
  color: var(--white);
  overflow: hidden;
  position: relative;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 40px;
  padding: 84px 24px 96px;
}
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.16);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(36px, 6vw, 60px);
  line-height: 1.05;
  font-weight: 800;
  margin: 0 0 18px;
  letter-spacing: -0.02em;
}
.hero .lead {
  font-size: clamp(16px, 2.2vw, 19px);
  max-width: 540px;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 28px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-note { margin-top: 18px; font-size: 14px; color: rgba(255, 255, 255, 0.8); }
.hero-art { display: flex; justify-content: center; }
.hero-art img { width: min(320px, 80%); opacity: 0.95; filter: drop-shadow(0 18px 40px rgba(0,0,0,.25)); }

/* Hero enxuto: headline + busca; resultados aparecem logo abaixo do form */
.hero-promos { overflow: visible; } /* o painel de sugestões vaza o hero */
.hero-promos .hero-copy-center {
  text-align: center;
  padding: 72px 24px 96px;
}

/* ===== Busca do hero (modelo + tamanho → melhor preço) ===== */
.hero-busca-wrap {
  position: relative;
  max-width: 640px;
  margin: 34px auto 0;
}
.hero-busca-seta {
  position: absolute;
  width: 86px;
  top: -62px;
  left: -66px;
  color: var(--accent);
  transform: rotate(8deg);
  pointer-events: none;
}
.hero-busca {
  display: flex;
  gap: 8px;
  padding: 8px;
  background: var(--white);
  border-radius: 999px;
  box-shadow: var(--shadow-lg);
}
.hero-busca__campo { flex: 1; min-width: 0; position: relative; display: flex; }
.hero-busca__input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  font: inherit;
  font-size: 16px;
  color: var(--text);
  padding: 10px 10px 10px 18px;
}
.hero-busca__input::placeholder { color: var(--text-secondary); }

/* Sugestões de modelo (autocomplete alimentado pelo catalog.json) */
.hb-sugestoes {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 100%;
  z-index: 20;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 6px;
  max-height: 320px;
  overflow-y: auto;
  text-align: left;
}
.hb-sugestao {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  border: none;
  background: none;
  font: inherit;
  font-size: 15px;
  color: var(--text);
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  white-space: nowrap;
}
.hb-sugestao:hover, .hb-sugestao.ativa { background: var(--bg); }
.hb-sugestao img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 6px;
  background: var(--bg);
  flex: none;
}
.hb-sugestao__marca { color: var(--text-secondary); font-size: 13px; margin-left: auto; padding-left: 12px; }
.hero-busca__select {
  border: none;
  outline: none;
  background: var(--bg);
  border-radius: 999px;
  font: inherit;
  font-size: 15px;
  color: var(--text);
  padding: 10px 12px;
  cursor: pointer;
}
.hero-busca .btn { padding: 10px 26px; }

/* Resultados da busca: mesmos cards das promoções do hero antigo
   (promo-card), centrados mesmo com menos de 4 resultados */
.hb-resultados { margin: 32px auto 0; text-align: left; }
.hb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, 255px);
  justify-content: center;
  gap: 22px;
}
.hb-empty {
  background: rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 22px 24px;
  text-align: center;
  color: var(--white);
  max-width: 560px;
  margin: 0 auto;
}
.hb-empty__titulo { margin: 0 0 14px; }
.hb-alerta {
  display: flex;
  gap: 8px;
  padding: 6px;
  background: var(--white);
  border-radius: 999px;
  box-shadow: var(--shadow);
  max-width: 440px;
  margin: 0 auto;
}
.hb-alerta__input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  font: inherit;
  font-size: 15px;
  color: var(--text);
  padding: 9px 8px 9px 16px;
}
.hb-alerta__input::placeholder { color: var(--text-secondary); }
.hb-alerta .btn { padding: 9px 20px; font-size: 14px; }
.hb-alerta-msg { margin: 12px 0 0; font-weight: 600; }
.hb-alerta-msg--erro { color: #FFD9CC; }
.hb-alerta-msg--ok { color: var(--white); }
.hb-empty__note { margin: 12px 0 0; font-size: 13px; color: rgba(255, 255, 255, 0.75); }
.hb-empty__note a { text-decoration: underline; color: var(--white); }

/* ===== Sections ===== */
.section { padding: 80px 0; }
.section-alt { background: var(--bg); }
.section-title {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  text-align: center;
}
.section-sub {
  text-align: center;
  color: var(--text-secondary);
  font-size: 17px;
  margin: 0 auto 44px;
  max-width: 560px;
}

/* ===== Promoções ===== */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 22px;
}
.promo-card {
  background: var(--white);
  color: var(--text); /* não herdar o branco do hero (busca renderiza dentro dele) */
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform .15s ease, box-shadow .15s ease;
}
.promo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.promo-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.promo-card__media img { width: 100%; height: 100%; object-fit: contain; padding: 14px; }
.promo-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: var(--white);
  font-weight: 800;
  font-size: 13px;
  padding: 5px 11px;
  border-radius: 999px;
}
.promo-card__body { padding: 16px 18px 20px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.promo-card__store { font-size: 12px; font-weight: 600; color: var(--text-secondary); text-transform: uppercase; letter-spacing: .03em; }
.promo-card__name { font-size: 16px; font-weight: 700; margin: 0; line-height: 1.3; }
.promo-card__prices { margin-top: auto; padding-top: 10px; display: flex; align-items: baseline; gap: 10px; }
.promo-card__price { font-size: 22px; font-weight: 800; color: var(--primary-deep); }
.promo-card__base { font-size: 14px; color: var(--text-secondary); text-decoration: line-through; }
.promo-card__cta {
  margin-top: 12px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--accent);
}
.promo-card:hover .promo-card__cta { text-decoration: underline; }

.promo-skeleton {
  height: 320px;
  border-radius: var(--radius);
  background: linear-gradient(100deg, var(--bg) 30%, #eef1ef 50%, var(--bg) 70%);
  background-size: 200% 100%;
  animation: shimmer 1.3s infinite;
}
@keyframes shimmer { from { background-position: 200% 0; } to { background-position: -200% 0; } }

.promo-empty { text-align: center; color: var(--text-secondary); max-width: 460px; margin: 12px auto 0; }

/* ===== Filtros do catálogo ===== */
.filters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  align-items: center;
  margin-bottom: 22px;
}
.filter-input {
  width: 100%;
  font: inherit;
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.filter-input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0, 194, 113, 0.15); }
.filter-busca { grid-column: span 2; }
.filter-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}
.filter-check input { accent-color: var(--primary-deep); width: 17px; height: 17px; }
.filter-clear {
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-deep);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  justify-self: start;
}
.filter-clear:hover { text-decoration: underline; }
.catalogo-count { color: var(--text-secondary); font-size: 14px; margin: 0 0 18px; }

/* ===== Página /catalogo (todos os tênis, sem preço) ===== */
.catalogo-header { padding-top: 56px; }
.tenis-card--link { display: flex; flex-direction: column; }
.tenis-card--link .promo-card__body { gap: 8px; }

/* Card do catálogo (extensões do promo-card) */
.tenis-card__chips { display: flex; flex-wrap: wrap; gap: 6px; margin: 4px 0 2px; }
.chip {
  font-size: 12px;
  font-weight: 600;
  color: var(--forest);
  background: rgba(0, 194, 113, 0.10);
  border: 1px solid rgba(0, 194, 113, 0.25);
  border-radius: 999px;
  padding: 3px 10px;
  white-space: nowrap;
}
.promo-card__price--ref { color: var(--text); font-size: 18px; }
.promo-card__ref-label { font-size: 12px; color: var(--text-secondary); }
.tenis-card__actions { display: flex; gap: 10px; margin-top: 12px; }
.tenis-card__actions .btn { flex: 1; }
.btn-outline {
  background: transparent;
  color: var(--primary-deep);
  border-color: var(--primary-deep);
}
.btn-outline:hover { background: rgba(0, 194, 113, 0.10); }

/* ===== Steps ===== */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.steps li {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--gradient);
  color: var(--white);
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 16px;
}
.steps h3 { margin: 0 0 6px; font-size: 18px; }
.steps p { margin: 0; color: var(--text-secondary); }

/* ===== Download ===== */
.download { background: var(--gradient); color: var(--white); text-align: center; }
.download .section-sub { color: rgba(255, 255, 255, 0.85); }
.store-badges { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.store-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--charcoal);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 12px;
  min-width: 200px;
  transition: transform .12s ease, opacity .15s ease;
}
.store-badge:hover { transform: translateY(-2px); opacity: .92; }
.store-badge__small { font-size: 12px; opacity: .8; }
.store-badge__big { font-size: 20px; font-weight: 700; line-height: 1.2; }

/* ===== Footer ===== */
.site-footer { background: var(--charcoal); color: rgba(255, 255, 255, 0.85); padding: 56px 0 28px; }
.footer-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 28px; padding-bottom: 28px; border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
.footer-brand img { filter: brightness(0) invert(1); opacity: .95; margin-bottom: 10px; }
.footer-brand p { margin: 0; color: rgba(255, 255, 255, 0.6); font-size: 14px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 22px; align-items: center; }
.footer-links a { font-weight: 500; font-size: 15px; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { padding-top: 22px; }
.footer-bottom p { margin: 0; font-size: 13px; color: rgba(255, 255, 255, 0.55); }

/* ===== Ficha do tênis (/t/<id>) ===== */
.ficha-loading { padding: 60px 24px; }
.ficha-loading .promo-skeleton { height: 380px; }
.ficha-erro { padding: 90px 24px 110px; text-align: center; }
.ficha-erro h1 { font-size: clamp(28px, 4vw, 40px); letter-spacing: -0.02em; margin: 0 0 8px; }
.ficha-erro p { color: var(--text-secondary); }

.ficha-hero { background: var(--white); border-bottom: 1px solid var(--border); }
.ficha-hero-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
  padding: 48px 24px 56px;
}
.ficha-media {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ficha-media img { width: 100%; height: 100%; object-fit: contain; padding: 28px; }
.ficha-badge { top: 16px; left: 16px; font-size: 15px; padding: 7px 14px; }
.ficha-breadcrumb { margin: 0 0 14px; font-size: 14px; }
.ficha-breadcrumb a { font-weight: 600; color: var(--primary-deep); }
.ficha-breadcrumb a:hover { text-decoration: underline; }
.ficha-info h1 {
  font-size: clamp(30px, 4.5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 4px 0 12px;
}
.ficha-descricao { color: var(--text-secondary); font-size: 16px; max-width: 520px; margin: 0 0 18px; }
.ficha-preco { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; margin-bottom: 22px; }
.ficha-preco__valor { font-size: 34px; }

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
  margin: 0;
}
.specs-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
}
.specs-item dt {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--text-secondary);
  margin-bottom: 4px;
}
.specs-item dd { margin: 0; font-size: 17px; font-weight: 700; }

.cores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 18px;
}
.cor-card {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  text-align: center;
}
.cor-card img { aspect-ratio: 1; object-fit: contain; width: 100%; padding: 10px; background: var(--bg); }
.cor-card figcaption { font-size: 13px; font-weight: 600; padding: 10px 12px; }

.ofertas-list { display: flex; flex-direction: column; gap: 12px; max-width: 820px; margin: 0 auto; }
.oferta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  transition: transform .12s ease, box-shadow .15s ease, border-color .15s ease;
}
.oferta-row:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.oferta-row--melhor { border-color: var(--primary); box-shadow: 0 0 0 1px var(--primary); }
.oferta-loja { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.oferta-loja strong { font-size: 16px; text-transform: capitalize; }
.oferta-precos { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.oferta-badge { position: static; }
.oferta-preco { font-size: 22px; font-weight: 800; color: var(--primary-deep); }
.oferta-cta { font-size: 14px; font-weight: 700; color: var(--accent); }
.oferta-row:hover .oferta-cta { text-decoration: underline; }

/* Ofertas dentro do card do tênis (coluna estreita): linhas mais compactas
   que as da versão em seção larga. */
.ficha-ofertas { margin: 4px 0 0; }
.ficha-ofertas__titulo {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--text-secondary);
  margin: 0 0 12px;
}
.ficha-ofertas__vazio { color: var(--text-secondary); font-size: 15px; margin: 0; }
.ofertas-list--ficha { max-width: none; gap: 10px; }
.ofertas-list--ficha .oferta-row { padding: 12px 16px; gap: 10px 12px; }
.ofertas-list--ficha .oferta-loja { flex: 1 1 auto; min-width: 0; }
.ofertas-list--ficha .oferta-loja strong { font-size: 15px; }
/* preços sempre à direita, mesmo quando a linha quebra */
.ofertas-list--ficha .oferta-precos { margin-left: auto; justify-content: flex-end; gap: 10px; }
.ofertas-list--ficha .oferta-preco { font-size: 20px; }

/* Alerta da ficha: campo de e-mail direto no cabeçalho do produto (fundo claro) */
.ficha-alerta { margin: 28px 0 0; max-width: 460px; }
.ficha-alerta__label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  margin: 0 0 10px;
}
.ficha-alerta__row {
  display: flex;
  gap: 8px;
  padding: 6px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow);
}
.ficha-alerta__input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  font: inherit;
  font-size: 15px;
  color: var(--text);
  padding: 9px 8px 9px 16px;
}
.ficha-alerta__input::placeholder { color: var(--text-secondary); }
.ficha-alerta__row .btn { padding: 9px 20px; font-size: 14px; }
.ficha-alerta-msg { font-weight: 600; margin: 12px 0 0; max-width: 460px; }
.ficha-alerta-msg--ok { color: var(--primary-deep); }
.ficha-alerta-msg--erro { color: #C0392B; }
.ficha-alerta__note { font-size: 13px; color: var(--text-secondary); margin: 10px 0 0; max-width: 460px; }
.ficha-alerta__note a { color: var(--primary-deep); text-decoration: underline; }

/* ===== Legal pages ===== */
.legal { max-width: 760px; padding: 56px 24px 80px; }
.legal h1 { font-size: 34px; font-weight: 800; letter-spacing: -0.02em; margin: 0 0 6px; }
.legal .updated { color: var(--text-secondary); font-size: 14px; margin: 0 0 36px; }
.legal h2 { font-size: 21px; margin: 38px 0 10px; }
.legal p, .legal li { color: #243029; }
.legal a { color: var(--primary-deep); text-decoration: underline; }
.legal .back { display: inline-block; margin-bottom: 28px; font-weight: 600; color: var(--primary-deep); }

/* ===== Responsivo ===== */
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; padding: 64px 24px 72px; }
  .hero-art { display: none; }
  .steps { grid-template-columns: 1fr; }
  /* O menu não tem mais botão: os links continuam visíveis, só encolhem.
     Abaixo de 560px o link redundante (.nav-secundario) sai para caber. */
  .nav { gap: 16px; }
  .nav a { font-size: 14px; }
  .hero-promos .hero-copy-center { padding: 48px 24px 64px; }
  .filters { grid-template-columns: repeat(2, 1fr); }
  .filter-busca { grid-column: span 2; }
  .ficha-hero-inner { grid-template-columns: 1fr; gap: 28px; padding: 32px 24px 44px; }
  .ficha-alerta__row { flex-direction: column; border-radius: var(--radius); }
  .ficha-alerta__input { padding: 11px 12px; }
  .hero-busca-seta { display: none; }
  .hero-busca { flex-direction: column; border-radius: var(--radius); }
  .hero-busca__input { padding: 12px 14px; }
  .hero-busca__select { text-align: center; }
  .hb-grid { grid-template-columns: 1fr; }
  .hb-alerta { flex-direction: column; border-radius: var(--radius); }
  .hb-alerta__input { padding: 11px 12px; }
}

@media (max-width: 560px) {
  .nav { gap: 14px; }
  .nav a { font-size: 13px; }
  .nav-secundario { display: none; }
}
