:root {
  --naranja: #E8600A;
  --naranja-d: #C04E06;
  --naranja-l: #FFF0E6;
  --negro: #1A1108;
  --gris: #6B6259;
  --gris-l: #F5F2EF;
  --blanco: #FFFFFF;
  --radio: 12px;
  --sombra: 0 2px 12px rgba(232, 96, 10, .15);
}

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

body {
  overflow-x: clip; /* evita scroll horizontal sin romper position:fixed en iOS */
  font-family: 'DM Sans', sans-serif;
  background: var(--gris-l);
  color: var(--negro);
  min-height: 100vh;
  padding-bottom: 88px;
}

/* ── HEADER ── */
header {
  background: var(--negro);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  height: 54px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .4);
}

.logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--naranja);
  letter-spacing: -.5px;
  flex-shrink: 0;
}

.logo span {
  color: var(--blanco);
}

.header-search {
  flex: 1;
  position: relative;
}

.header-search input {
  width: 100%;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 8px;
  padding: 8px 12px 8px 34px;
  color: var(--blanco);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  outline: none;
  transition: border .2s;
}

.header-search input::placeholder {
  color: rgba(255, 255, 255, .4);
}

.header-search input:focus {
  border-color: var(--naranja);
}

.header-search svg {
  position: absolute;
  left: 9px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, .4);
  pointer-events: none;
}

/* Botón hamburguesa */
.btn-menu {
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-shrink: 0;
}

.btn-menu span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--blanco);
  border-radius: 2px;
  transition: all .25s;
}

/* ── DRAWER CATEGORÍAS ── */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .45);
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.drawer-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 260px;
  background: var(--blanco);
  z-index: 301;
  transform: translateX(-100%);
  transition: transform .3s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 4px 0 24px rgba(0, 0, 0, .15);
}

.drawer.open {
  transform: translateX(0);
}

.drawer-header {
  background: var(--negro);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 54px;
}

.drawer-titulo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: var(--blanco);
  letter-spacing: .5px;
  text-transform: uppercase;
}

.btn-drawer-cerrar {
  background: none;
  border: none;
  color: rgba(255, 255, 255, .6);
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
  padding: 0 2px;
}

.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 10px 0;
}

.cat-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 13px 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--negro);
  cursor: pointer;
  text-align: left;
  border-left: 3px solid transparent;
  transition: all .15s;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.cat-item:active {
  background: var(--naranja-l);
}

.cat-item.active {
  background: var(--naranja-l);
  color: var(--naranja);
  border-left-color: var(--naranja);
  font-weight: 600;
}

.cat-n {
  font-size: 12px;
  background: var(--gris-l);
  color: var(--gris);
  padding: 2px 8px;
  border-radius: 20px;
  font-weight: 600;
}

.cat-item.active .cat-n {
  background: rgba(232, 96, 10, .15);
  color: var(--naranja);
}

.cat-sub {
  overflow: hidden;
  max-height: 0;
  transition: max-height .25s ease;
}

.cat-sub.open {
  max-height: 2000px;
}

/* ── CONTENIDO ── */
.content {
  padding: 12px 12px 0;
}

.content-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.result-info {
  font-size: 12px;
  color: var(--gris);
  line-height: 1.3;
}

.result-info strong {
  color: var(--negro);
  font-size: 13px;
}

.result-info .cat-tag {
  color: var(--naranja);
  font-weight: 600;
}

.sort-select {
  background: var(--blanco);
  border: 1px solid #DDD8D0;
  border-radius: 8px;
  padding: 6px 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--negro);
  cursor: pointer;
  outline: none;
  flex-shrink: 0;
}

/* ── GRID ── */
.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

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

@media(min-width: 860px) {
  .grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }
}

@media(min-width: 1100px) {
  .grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.card {
  background: var(--blanco);
  border-radius: var(--radio);
  overflow: hidden;
  border: 1px solid #EAE5DF;
  display: flex;
  flex-direction: column;
}

.card-img-ph {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #F5EFE8, #EDE4D8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  color: rgba(107, 98, 89, .2);
}

.card-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  padding: 8px;
  background: var(--gris-l);
}

.card-body {
  padding: 10px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-cat {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--naranja);
  margin-bottom: 2px;
}

.card-nombre {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.25;
  color: var(--negro);
  margin-bottom: 2px;
}

.card-marca {
  font-size: 11px;
  color: var(--gris);
  margin-bottom: 8px;
}

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

/* precio con Space Mono */
.card-precio {
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: 15px;
  color: var(--negro);
  margin-bottom: 7px;
  letter-spacing: -.5px;
}

.card-precio small {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: var(--gris);
  letter-spacing: 0;
}

.pocas {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  color: #E67E22;
  font-weight: 600;
  margin-top: 2px;
}

.badge-dest {
  display: inline-block;
  background: #FFF0E6;
  color: var(--naranja);
  border: 1px solid var(--naranja);
  border-radius: 4px;
  font-size: 9px;
  font-weight: 700;
  padding: 1px 6px;
  margin-bottom: 4px;
  font-family: 'DM Sans', sans-serif;
}

.cat-group {
  margin-bottom: 24px;
  width: 100%;
}

.cat-group-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.cat-group-title span {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: var(--negro);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.cat-group-line {
  flex: 1;
  height: 1px;
  background: #EAE5DF;
}

#productGrid {
  display: block;
}

.btn-agregar {
  width: 100%;
  background: var(--naranja);
  border: none;
  border-radius: 8px;
  padding: 10px 0;
  color: var(--blanco);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: background .15s;
  line-height: 1;
}

.btn-agregar:active {
  background: var(--naranja-d);
}

/* ── QTY ── */
.qty-control {
  display: flex;
  align-items: center;
  border: 2px solid var(--naranja);
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  height: 36px;
}

.qty-control button {
  background: none;
  border: none;
  width: 34px;
  height: 100%;
  font-size: 20px;
  font-weight: 700;
  color: var(--naranja);
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.qty-control button:active {
  background: var(--naranja-l);
}

.qty-control button:disabled {
  opacity: .3;
}

.qty-control input[type=number] {
  flex: 1;
  border: none;
  text-align: center;
  font-family: 'Space Mono', monospace;
  font-size: 16px;
  font-weight: 700;
  outline: none;
  min-width: 0;
  -moz-appearance: textfield;
  padding: 0;
  height: 100%;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* ── FAB CARRITO ── */
.fab-carrito {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--negro);
  color: var(--blanco);
  border: none;
  border-radius: 40px;
  padding: 13px 24px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  display: none;
  align-items: center;
  gap: 10px;
  z-index: 150;
  box-shadow: 0 4px 24px rgba(26, 17, 8, .5);
  white-space: nowrap;
}

.fab-carrito.visible {
  display: flex;
}

.fab-carrito:active {
  transform: translateX(-50%) scale(.97);
}

.fab-cant {
  background: var(--naranja);
  border-radius: 20px;
  padding: 2px 10px;
  font-size: 13px;
  font-weight: 700;
}

.fab-total {
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, .7);
}

/* ── PANEL CARRITO ── */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.overlay.open {
  opacity: 1;
  pointer-events: all;
}

.panel {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100vw;        /* siempre ancho exacto del viewport */
  max-width: 100vw;
  max-height: 92vh;
  background: var(--blanco);
  z-index: 201;
  transform: translateY(100%);
  transition: transform .32s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  flex-direction: column;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -8px 40px rgba(0, 0, 0, .2);
  overflow: hidden;    /* clip cualquier contenido interno que desborde */
}

@media(min-width: 768px) {
  .panel {
    left: auto;
    right: 0;
    top: 0;
    bottom: 0;
    max-height: 100vh;
    width: 420px;
    max-width: 420px;
    border-radius: 0;
    transform: translateX(100%);
  }
}

.panel.open {
  transform: translateY(0);
}

@media(min-width: 768px) {
  .panel.open {
    transform: translateX(0);
  }
}

.panel-handle {
  width: 36px;
  height: 4px;
  background: #DDD8D0;
  border-radius: 4px;
  margin: 10px auto 0;
  flex-shrink: 0;
}

@media(min-width: 768px) {
  .panel-handle {
    display: none;
  }
}

.panel-header {
  display: flex;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid #EAE5DF;
}

.panel-header h2 {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 800;
}

.btn-cerrar {
  margin-left: auto;
  background: var(--gris-l);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gris);
}

.panel-body {
  flex: 1;
  overflow-y: auto;
  padding: 14px 18px;
  -webkit-overflow-scrolling: touch;
}

.carrito-vacio {
  text-align: center;
  padding: 48px 0;
  color: var(--gris);
}

.carrito-vacio p {
  font-size: 15px;
  margin-top: 14px;
}

.carrito-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  grid-template-rows: auto auto;
  gap: 6px 10px;
  align-items: start;
  padding: 12px 0;
  border-bottom: 1px solid #EAE5DF;
}

.ci-img-ph {
  width: 46px;
  height: 46px;
  grid-row: 1 / 3;
  background: var(--gris-l);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.ci-img {
  width: 46px;
  height: 46px;
  grid-row: 1 / 3;
  background: var(--gris-l);
  border-radius: 8px;
  object-fit: contain;
  padding: 3px;
}

.ci-info {
  min-width: 0;
}

.ci-nombre {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ci-sub {
  font-size: 11px;
  color: var(--gris);
}

/* fila 2: precio + controles en la misma fila, siempre caben */
.ci-right {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
}

.ci-total {
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: 13px;
}

.ci-qty {
  display: flex;
  align-items: center;
  border: 1.5px solid #DDD8D0;
  border-radius: 6px;
  overflow: hidden;
  height: 28px;
}

.ci-qty button {
  background: none;
  border: none;
  width: 26px;
  height: 100%;
  font-size: 15px;
  font-weight: 700;
  color: var(--gris);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ci-qty input[type=number] {
  width: 34px;
  border: none;
  text-align: center;
  font-family: 'Space Mono', monospace;
  font-size: 16px;
  font-weight: 700;
  outline: none;
  -moz-appearance: textfield;
  height: 100%;
}

.btn-quitar {
  background: none;
  border: none;
  font-size: 10px;
  color: #C0392B;
  cursor: pointer;
  text-decoration: underline;
}

.panel-footer {
  border-top: 1px solid #EAE5DF;
  padding: 14px 18px;
}

.subtotal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.subtotal-label {
  font-size: 14px;
  color: var(--gris);
}

.subtotal-valor {
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: 22px;
  color: var(--negro);
}

.btn-confirmar {
  width: 100%;
  background: var(--naranja);
  border: none;
  border-radius: 12px;
  padding: 15px;
  color: var(--blanco);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background .15s;
}

.btn-confirmar:active {
  background: var(--naranja-d);
}

.btn-confirmar:disabled {
  background: #bbb;
  cursor: not-allowed;
}

/* ── ESTADOS ── */
.estado {
  text-align: center;
  padding: 60px 20px;
  color: var(--gris);
  grid-column: 1/-1;
}

.spinner {
  width: 30px;
  height: 30px;
  border: 3px solid rgba(232, 96, 10, .2);
  border-top-color: var(--naranja);
  border-radius: 50%;
  animation: spin .7s linear infinite;
  margin: 0 auto 12px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.rls-box {
  background: #FFF3CD;
  border: 1px solid #FFC107;
  border-radius: 10px;
  padding: 14px 18px;
  margin: 14px auto;
  max-width: 380px;
  font-size: 13px;
  line-height: 1.6;
  color: #856404;
  text-align: left;
}

.rls-box code {
  background: rgba(0, 0, 0, .08);
  padding: 1px 5px;
  border-radius: 3px;
  font-family: monospace;
  font-size: 11px;
}

.toast {
  position: fixed;
  bottom: 96px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--negro);
  color: var(--blanco);
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  z-index: 400;
  opacity: 0;
  transition: all .22s;
  max-width: 86vw;
  text-align: center;
  pointer-events: none;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.toast.ok {
  background: #2E7D32;
}

.toast.err {
  background: #C0392B;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 24px;
  border-left: 4px solid #FF6B6B;
  letter-spacing: .2px;
}

/* ── BANNER ── */
#banner-cat {
  background: var(--naranja);
  color: var(--blanco);
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  position: relative;
}
.banner-texto {
  flex: 1;
}
.banner-cerrar {
  background: none;
  border: none;
  color: rgba(255,255,255,.7);
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  flex-shrink: 0;
  margin-top: -1px;
}
.banner-cerrar:hover {
  color: var(--blanco);
}

/* ── HERO ── */
#hero {
  background: var(--negro);
  padding: 40px 20px 34px;
  text-align: center;
  border-bottom: 3px solid var(--naranja);
  overflow: hidden;
}
.hero-inner {
  max-width: 500px;
  margin: 0 auto;
}
.hero-marca {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, .4);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: 'DM Sans', sans-serif;
}
.hero-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 9.5vw, 54px);
  color: var(--naranja);
  letter-spacing: -1px;
  line-height: 1;
}
.hero-logo span {
  color: var(--blanco);
}
.hero-cta {
  display: inline-block;
  margin-top: 24px;
  background: var(--naranja);
  color: var(--blanco);
  border: none;
  border-radius: 8px;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: background .15s, transform .1s;
}
.hero-cta:active {
  transform: scale(.97);
  background: var(--naranja-d);
}

/* ── GRID DESTACADOS (portada) ── */
.dest-grid-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

/* ── CARRUSEL DESTACADOS ── */
#carrusel-dest {
  background: var(--blanco);
  padding: 16px 0 18px;
  border-bottom: 1px solid #EAE5DF;
}
.dest-header {
  padding: 0 14px 10px;
}
.dest-titulo {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--negro);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.dest-titulo::before {
  content: '★ ';
  color: var(--naranja);
}
.dest-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 0 14px 6px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.dest-scroll::-webkit-scrollbar { height: 3px; }
.dest-scroll::-webkit-scrollbar-track { background: transparent; }
.dest-scroll::-webkit-scrollbar-thumb { background: var(--naranja); border-radius: 2px; }
.dest-card {
  flex: 0 0 148px;
  scroll-snap-align: start;
  background: var(--gris-l);
  border-radius: var(--radio);
  overflow: hidden;
  border: 1px solid #EAE5DF;
  display: flex;
  flex-direction: column;
}
.dest-card-img {
  width: 100%;
  height: 110px;
  object-fit: contain;
  background: var(--blanco);
  padding: 8px;
}
.dest-card-img-ph {
  width: 100%;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  background: var(--blanco);
}
.dest-card-body {
  padding: 8px 10px 10px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 4px;
}
.dest-card-nombre {
  font-size: 11px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--negro);
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.dest-card-precio {
  font-family: 'Space Mono', monospace;
  font-size: 14px;
  font-weight: 700;
  color: var(--negro);
  letter-spacing: -.5px;
}
.dest-card-precio small {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: var(--gris);
  letter-spacing: 0;
}

/* ── MODAL ── */
.modal-bg {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .6);
  z-index: 500;
  display: none;
  align-items: flex-end;
  justify-content: center;
}

@media(min-width: 500px) {
  .modal-bg {
    align-items: center;
  }
}

.modal-bg.open {
  display: flex;
}

.modal {
  background: var(--blanco);
  border-radius: 20px 20px 0 0;
  padding: 30px 22px 36px;
  width: 100%;
  text-align: center;
}

@media(min-width: 500px) {
  .modal {
    border-radius: 16px;
    max-width: 340px;
    padding: 32px 26px;
  }
}

.modal h3 {
  font-family: 'Syne', sans-serif;
  font-size: 21px;
  font-weight: 800;
  margin-bottom: 4px;
}

.modal p {
  font-size: 13px;
  color: var(--gris);
  margin-bottom: 18px;
  line-height: 1.5;
}

.modal .nro {
  font-family: 'Space Mono', monospace;
  font-size: 26px;
  font-weight: 700;
  color: var(--naranja);
  margin-bottom: 6px;
}

.modal-btns {
  display: flex;
  gap: 8px;
  flex-direction: column;
}

.btn-wsp {
  background: #25D366;
  border: none;
  border-radius: 12px;
  padding: 14px;
  color: var(--blanco);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-wsp:active {
  background: #1ebe5a;
}

.btn-seguir {
  background: var(--gris-l);
  border: none;
  border-radius: 12px;
  padding: 12px;
  color: var(--negro);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}
