/* ============================================================================
   Visor del catálogo y páginas de la revista
   ========================================================================== */

.body--visor {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: #4A4E48;
  color: var(--tinta);
  overflow: hidden;
}

/* ------------------------------------------------------------------ shell */
.visor { display: flex; flex-direction: column; height: 100dvh; }

.visor__barra {
  display: flex;
  align-items: center;
  gap: var(--e-2);
  padding: .6rem clamp(.75rem, 3vw, 1.5rem);
  background: var(--crema);
  border-block: 1px solid rgb(0 0 0 / .08);
  flex: 0 0 auto;
  z-index: 3;
}
.visor__barra--arriba { justify-content: space-between; }
.visor__barra--abajo  { justify-content: center; }

.visor__marca {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-weight: 800;
  font-size: var(--t-sm);
  text-decoration: none;
  letter-spacing: -.01em;
}
.visor__acciones { display: flex; gap: .5rem; flex-wrap: wrap; align-items: center; }
.visor__izq { display: flex; gap: .6rem; align-items: center; min-width: 0; }

/* Salir del catálogo tiene que verse. El logotipo ya enlazaba al inicio, pero
   nadie lo lee como "atrás": hace falta un botón que lo diga. */
.visor__btn--volver { display: inline-flex; align-items: center; gap: .4em; }
.visor__flecha-volver { font-size: 1.1em; line-height: 1; }
.visor__btn-corto { display: none; }

.visor__btn {
  /* hay botones que son <button> y otros que son <a>: se ven igual */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  min-height: 40px;
  padding: .45em 1em;
  border-radius: var(--radio-pill);
  background: var(--papel);
  box-shadow: inset 0 0 0 1px var(--linea);
  font-weight: 650;
  font-size: var(--t-sm);
  color: var(--tinta);
  transition: background var(--sal-rapida), box-shadow var(--sal-rapida),
              transform var(--sal-rapida);
}
.visor__btn:hover { background: var(--verde-suave); box-shadow: inset 0 0 0 1px var(--verde); }
.visor__btn:active { transform: scale(.97); }
.visor__btn--destacado { background: var(--verde); box-shadow: none; }
.visor__btn--destacado:hover { background: var(--verde-hover); box-shadow: none; }
.visor__btn--icono { min-width: 40px; padding: .45em .7em; font-size: 1rem; line-height: 1; }
.visor__btn--fin { margin-left: .75rem; }

.visor__contador {
  min-width: 6.5ch;
  text-align: center;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  font-size: var(--t-sm);
  padding-inline: .5rem;
}

/* --------------------------------------------------------------- escenario */
.visor__escenario {
  flex: 1 1 auto;
  min-width: 0;
  /* red de seguridad: si el pliego quedara mas ancho que el hueco, se recorta
     en vez de empujar la pagina entera a lo ancho */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(.25rem, 2vw, 1.25rem);
  padding: clamp(.75rem, 2.5vw, 1.75rem);
  min-height: 0;
  background:
    radial-gradient(120% 90% at 50% 0%, #5C6159 0%, #43473F 60%, #3A3E37 100%);
}
.visor__marco { flex: 1 1 auto; height: 100%; display: grid; place-items: center; min-width: 0; }
.visor__libro { margin-inline: auto; }

.visor__flecha {
  flex: 0 0 auto;
  width: clamp(34px, 5vw, 46px);
  height: clamp(58px, 9vw, 86px);
  display: grid;
  place-items: center;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1;
  color: var(--tinta);
  background: rgb(255 255 255 / .82);
  border-radius: 10px;
  box-shadow: var(--sombra-2);
  transition: background var(--sal-rapida), transform var(--sal-rapida);
}
.visor__flecha:hover { background: #fff; transform: scale(1.06); }

.visor__cargando {
  position: fixed;
  inset: auto 0 6rem;
  text-align: center;
  color: #EDEDE7;
  font-weight: 600;
}
.visor__cargando--error {
  margin-inline: auto;
  max-width: 34rem;
  padding: 1rem 1.25rem;
  background: var(--rojo-hondo);
  border-radius: var(--radio);
  color: #fff;
}

/* ------------------------------------------------------------------ hoja */
/* OJO: aqui NO se pone `display`.
   StPageFlip escribe `display: block` en linea sobre cada hoja al mostrarla y
   `display: none` al esconderla, y el estilo en linea gana siempre. Un
   `display: flex` aqui no haria nada, y ponerlo con `!important` romperia el
   `display: none` de las hojas ocultas: saldrian las 42 a la vez.
   El reparto del alto lo hace `.hoja__interior`, que es nuestro. */
.hoja {
  background: var(--papel);
  color: var(--tinta);
  overflow: hidden;
  font-size: clamp(9px, 1.45vh, 13px);
  line-height: 1.5;
}
.hoja__interior {
  height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.hoja__folio {
  position: absolute;
  bottom: .9em; right: 1.2em;
  font-size: .85em;
  font-weight: 700;
  color: var(--tinta-suave);
  font-variant-numeric: tabular-nums;
}
.hoja__cuerpo {
  flex: 1 1 auto;
  min-height: 0;
  padding: 2.4em 2.2em;
  display: flex; flex-direction: column; gap: .9em;
}
.hoja__titular { font-size: 2.1em; line-height: 1.05; }
.hoja__subtitulo { font-size: 1.15em; margin-top: .6em; color: var(--verde-hondo); }
.hoja__firma { margin-top: auto; padding-top: 1em; border-top: 2px solid var(--verde); }
.hoja__nota {
  margin-top: auto;
  padding: 1em 1.2em;
  background: var(--verde-niebla);
  border-left: 4px solid var(--verde);
  border-radius: 0 var(--radio-sm) var(--radio-sm) 0;
}

.hoja__cab {
  flex: 0 0 auto;
  padding: 1.1em 1.6em .7em;
  border-bottom: 3px solid var(--verde);
}
.hoja__cab-cat {
  font-size: .95em;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--verde-hondo);
}
.hoja__grilla {
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: .5em;
  padding: .7em .8em 1.6em;
  min-height: 0;
}

/* ------------------------------------------------------------ portadilla */
.hoja--portadilla, .hoja--pendiente {
  background: linear-gradient(160deg, var(--verde) 0%, #7FA818 100%);
  color: var(--tinta);
}
.portadilla__caja {
  margin: auto;
  padding: 2.5em;
  text-align: center;
  position: relative;
}
.portadilla__num {
  font-size: .9em; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; opacity: .72;
}
.portadilla__titulo { font-size: 2.8em; line-height: 1; margin-block: .18em .35em; }
.portadilla__intro { font-size: 1.05em; max-width: 26ch; margin-inline: auto; font-weight: 500; }

/* --------------------------------------------------------------- portada */
.hoja--portada { background: var(--verde); position: relative; }
.portada { position: absolute; inset: 0; display: flex; flex-direction: column; }
.portada__mosaico {
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  opacity: .3;
  filter: saturate(.8);
  overflow: hidden;
}
.portada__mosaico img { width: 100%; height: 100%; object-fit: cover; }
.portada__centro {
  position: relative;
  margin: auto;
  text-align: center;
  padding: 1.6em 1.4em;
  background: rgb(255 255 255 / .93);
  border-radius: var(--radio-lg);
  box-shadow: 0 18px 50px rgb(0 0 0 / .22);
  width: min(82%, 30em);
}
.portada__logo { width: 62%; height: auto; margin: 0 auto .4em; }
.portada__anio {
  font-size: 3.2em; font-weight: 900; line-height: .9;
  color: var(--verde-hondo); letter-spacing: -.03em;
}
.portada__titulo { font-size: 1.85em; line-height: 1.05; margin-top: .1em; }
.portada__lugar {
  margin-top: .7em;
  font-size: .9em; font-weight: 800; letter-spacing: .13em;
  text-transform: uppercase; color: var(--tinta-media);
}
.portada__pie {
  position: relative;
  padding: .9em;
  text-align: center;
  font-size: .82em; font-weight: 700;
  color: var(--tinta);
  background: rgb(255 255 255 / .9);
}

/* --------------------------------------------------------- contraportada */
.hoja--contraportada { background: var(--verde); }
.contraportada {
  margin: auto; text-align: center; padding: 2em;
  display: flex; flex-direction: column; gap: .8em; align-items: center;
}
.contraportada__logo { width: 55%; height: auto; }
.contraportada__lema { font-size: 1.25em; font-weight: 800; line-height: 1.2; }
.contraportada__datos { font-size: .95em; line-height: 1.6; }
.contraportada__wa {
  font-size: 1.5em; font-weight: 900; letter-spacing: -.01em;
  padding: .3em .8em; background: var(--tinta); color: var(--verde);
  border-radius: var(--radio-pill);
}
.contraportada__redes { font-size: .9em; font-weight: 700; opacity: .8; }

/* ------------------------------------------------------- listas y pasos */
.clave { list-style: none; padding: 0; display: flex; flex-direction: column; gap: .4em; }
.clave li { display: flex; align-items: center; gap: .6em; font-size: .92em; }

.indice { list-style: none; padding: 0; counter-reset: sec; display: flex; flex-direction: column; }
.indice li {
  display: flex; align-items: baseline; gap: .5em;
  padding: .32em 0;
  border-bottom: 1px dotted var(--linea);
  position: relative;
}
.indice button {
  flex: 1 1 auto; text-align: left; font: inherit; font-weight: 700;
  color: var(--tinta); padding: 0;
}
.indice button:hover { color: var(--verde-hondo); }
.indice__pag { font-variant-numeric: tabular-nums; font-weight: 800; color: var(--verde-hondo); }

.pasos { list-style: none; padding: 0; display: flex; flex-direction: column; gap: .9em; }
.pasos li { display: grid; grid-template-columns: auto 1fr; gap: .2em .8em; align-items: start; }
.pasos__n {
  grid-row: span 2;
  width: 2em; height: 2em;
  display: grid; place-items: center;
  background: var(--verde); color: var(--tinta);
  font-weight: 900; border-radius: 50%;
}
.pasos strong { font-size: 1.05em; }

/* ----------------------------------------------------------- miniaturas */
.miniaturas {
  width: min(96vw, 1100px);
  max-height: 88dvh;
  padding: 0;
  border: 0;
  border-radius: var(--radio-lg);
  background: var(--crema);
  color: var(--tinta);
  overflow: hidden;
}
.miniaturas::backdrop { background: rgb(18 35 46 / .62); backdrop-filter: blur(3px); }
.miniaturas__cab {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.25rem;
  background: var(--verde);
  position: sticky; top: 0; z-index: 2;
}
.miniaturas__cab h2 { font-size: var(--t-md); }
.miniaturas__cerrar { font-size: 1.7rem; line-height: 1; width: 2rem; height: 2rem; border-radius: 50%; }
.miniaturas__cerrar:hover { background: rgb(0 0 0 / .1); }

.miniaturas__secciones {
  display: flex; gap: .4rem; flex-wrap: wrap;
  padding: .75rem 1.25rem;
  border-bottom: 1px solid var(--linea);
  background: var(--papel);
}
.miniaturas__sec {
  padding: .35em .85em;
  font-size: var(--t-xs); font-weight: 700;
  background: var(--verde-suave); color: var(--verde-hondo);
  border-radius: var(--radio-pill);
}
.miniaturas__sec:hover { background: var(--verde); color: var(--tinta); }
.miniaturas__sec--vacia { background: #FBEFE0; color: #8A5A16; }

.miniaturas__grilla {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(112px, 1fr));
  gap: .9rem;
  padding: 1.25rem;
  overflow-y: auto;
  max-height: calc(88dvh - 9rem);
}
.miniaturas__cel { display: flex; flex-direction: column; gap: .3rem; }
.miniaturas__lienzo {
  aspect-ratio: .707;
  overflow: hidden;
  background: var(--papel);
  border: 1px solid var(--linea);
  border-radius: 6px;
  box-shadow: var(--sombra-1);
  transition: transform var(--sal-rapida), box-shadow var(--sal-rapida);
  position: relative;
}
.miniaturas__cel:hover .miniaturas__lienzo { transform: translateY(-3px); box-shadow: var(--sombra-2); }
.miniaturas__hoja.miniaturas__hoja {
  display: flex !important;
  width: 560px; height: 792px;
  transform: scale(.19);
  transform-origin: top left;
  position: absolute; top: 0; left: 0; right: auto; bottom: auto;
  pointer-events: none;
  font-size: 11px;
  opacity: 1;
  visibility: visible;
}
.miniaturas__num { font-size: var(--t-xs); font-weight: 700; color: var(--tinta-media); }

/* ------------------------------------------------------------- búsqueda */
.busqueda {
  position: absolute;
  top: 3.6rem; left: 50%;
  transform: translateX(-50%);
  width: min(94vw, 520px);
  background: var(--papel);
  border-radius: var(--radio);
  box-shadow: var(--sombra-3);
  z-index: 5;
  overflow: hidden;
}
.busqueda__caja { display: flex; align-items: center; gap: .5rem; padding: .6rem .75rem; }
.busqueda__caja input {
  flex: 1 1 auto;
  min-height: 42px;
  padding: .4em .8em;
  border: 2px solid var(--linea);
  border-radius: var(--radio-sm);
  background: var(--crema);
}
.busqueda__caja input:focus { border-color: var(--verde); outline: none; }
.busqueda__cerrar { font-size: 1.5rem; width: 2rem; height: 2rem; line-height: 1; border-radius: 50%; }
.busqueda__resultados { list-style: none; margin: 0; padding: 0 .5rem .5rem; max-height: 46dvh; overflow-y: auto; }
.busqueda__resultados button {
  display: flex; justify-content: space-between; gap: 1rem; align-items: baseline;
  width: 100%; text-align: left;
  padding: .55em .7em;
  border-radius: var(--radio-sm);
  font-size: var(--t-sm);
}
.busqueda__resultados button:hover { background: var(--verde-suave); }
.busqueda__pag { font-size: var(--t-xs); font-weight: 700; color: var(--verde-hondo); white-space: nowrap; }
.busqueda__vacio { padding: .8em; color: var(--tinta-media); font-size: var(--t-sm); }

/* -------------------------------------------------------------- móvil */
/* Con seis controles arriba, el ancho se acaba antes que las ganas: las
   etiquetas largas se cambian por las cortas mucho antes de llegar al móvil. */
@media (max-width: 1080px) {
  .visor__btn-largo { display: none; }
  .visor__btn-corto { display: inline; }
}

@media (max-width: 640px) {
  .visor__barra--arriba { flex-wrap: wrap; }
  .visor__marca span { display: none; }
  .idioma--visor { order: -1; }
  .visor__flecha { display: none; }
  .visor__btn--fin { display: none; }
  .hoja__grilla { grid-template-columns: 1fr 1fr; gap: .4em; padding: .6em; }
  .miniaturas__grilla { grid-template-columns: repeat(auto-fill, minmax(92px, 1fr)); }
}

/* En la revista el espacio manda: la marca y la descripción se ocultan y el dato
   vive en el nombre, el formato y el código. En la landing sí se muestran. */
.hoja .ficha__marca, .hoja .ficha__descripcion { display: none; }
.hoja .ficha__media { aspect-ratio: auto; }
.hoja .ficha__nombre { font-size: 1.05em; }
.hoja .ficha__cta { padding: .3em .75em; font-size: .78em; }
.hoja .ficha__codigo code { font-size: .8em; padding: .22em .5em; }
/* El «caja de 6 unidades» sí se muestra: para el lado food service del
   negocio es el dato que decide la compra, y ocupa una línea de 11 px. */
.hoja .ficha__bulto { font-size: .72em; margin-top: .1em; }

/* ------------------------------------------------------------- pedido */
.visor__btn--pedido { gap: .45em; position: relative; }
.visor__btn--pedido-lleno { background: var(--verde); box-shadow: none; }
.visor__btn--pedido-lleno:hover { background: var(--verde-hover); }
.pedido__cuenta {
  display: inline-grid; place-items: center;
  min-width: 1.5em; height: 1.5em; padding: 0 .35em;
  border-radius: var(--radio-pill);
  background: var(--tinta); color: #fff;
  font-size: .78em; font-weight: 800; line-height: 1;
  font-variant-numeric: tabular-nums;
}

.pedido {
  position: absolute;
  top: 3.6rem; right: clamp(.75rem, 3vw, 1.5rem);
  width: min(94vw, 440px);
  max-height: calc(100% - 4.4rem);
  display: flex; flex-direction: column;
  background: var(--papel);
  border-radius: var(--radio);
  box-shadow: var(--sombra-3);
  z-index: 6;
  overflow: hidden;
}
.pedido__cab {
  display: grid; grid-template-columns: 1fr auto; align-items: center; column-gap: .5rem;
  padding: .8rem 1rem; background: var(--verde);
}
.pedido__cab h2 { font-size: var(--t-md); line-height: 1.1; }
.pedido__resumen { grid-column: 1; font-size: var(--t-xs); font-weight: 700; color: var(--verde-hondo); margin: 0; min-height: 1em; }
.pedido__cerrar { grid-column: 2; grid-row: 1 / span 2; font-size: 1.6rem; width: 2rem; height: 2rem; line-height: 1; border-radius: 50%; }
.pedido__cerrar:hover { background: rgb(0 0 0 / .1); }

.pedido__vacio { padding: 1rem; font-size: var(--t-sm); color: var(--tinta-media); }
.pedido__lista { list-style: none; margin: 0; padding: 0; overflow-y: auto; flex: 0 1 auto; max-height: 38dvh; }
.pedido__linea {
  display: grid; grid-template-columns: minmax(0, 1fr) auto auto; align-items: center; gap: .6rem;
  padding: .55rem 1rem; border-bottom: 1px solid var(--linea); font-size: var(--t-sm);
}
.pedido__texto { display: flex; flex-direction: column; gap: .1rem; min-width: 0; }
.pedido__nombre { line-height: 1.2; overflow-wrap: anywhere; }
.pedido__detalle { font-size: var(--t-xs); color: var(--tinta-media); }
.pedido__codigo { font-family: var(--mono); font-size: var(--t-xs); font-weight: 600; color: var(--verde-hondo); letter-spacing: .04em; }
.pedido__cantidad { display: inline-flex; align-items: center; border: 1px solid var(--linea); border-radius: var(--radio-pill); }
.pedido__paso { width: 30px; height: 30px; font-size: 1.1rem; font-weight: 800; line-height: 1; border-radius: 50%; }
.pedido__paso:hover { background: var(--verde-suave); }
.pedido__num { min-width: 1.6em; text-align: center; font-weight: 800; font-variant-numeric: tabular-nums; }
.pedido__quitar { font-size: var(--t-xs); font-weight: 700; color: var(--rojo-hondo); padding: .3em .5em; border-radius: var(--radio-sm); }
.pedido__quitar:hover { background: #FDECED; }
.pedido__vaciar { align-self: flex-end; margin: .35rem 1rem 0; font-size: var(--t-xs); font-weight: 700; color: var(--tinta-media); text-decoration: underline; }
.pedido__vaciar:hover { color: var(--rojo-hondo); }

.pedido__datos { display: flex; flex-direction: column; gap: .55rem; padding: .8rem 1rem 1rem; border-top: 1px solid var(--linea); background: var(--crema); overflow-y: auto; }
.pedido__datos h3 { font-size: var(--t-sm); font-weight: 800; }
.pedido__campo { display: flex; flex-direction: column; gap: .2rem; margin: 0; }
.pedido__campo label { font-size: var(--t-xs); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--tinta-media); }
.pedido__campo input {
  min-height: 40px; padding: .4em .7em; font: inherit; font-size: var(--t-sm);
  border: 2px solid var(--linea); border-radius: var(--radio-sm); background: var(--papel); color: var(--tinta);
}
.pedido__campo input:focus { border-color: var(--verde); outline: none; }
.pedido__input--mal { border-color: var(--rojo) !important; }
.pedido__error { font-size: var(--t-xs); font-weight: 700; color: var(--rojo-hondo); }
.pedido__enviar {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  min-height: 46px; margin-top: .2rem; padding: .6em 1.2em;
  border-radius: var(--radio-pill); background: var(--verde); color: var(--tinta);
  font-weight: 800; font-size: var(--t-base); text-decoration: none;
  transition: background var(--sal-rapida), opacity var(--sal-rapida);
}
.pedido__enviar::before { content: ''; width: 1.15em; height: 1.15em; background: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2a10 10 0 0 0-8.6 15.1L2 22l5-1.3A10 10 0 1 0 12 2zm0 18a8 8 0 0 1-4.2-1.2l-.3-.2-3 .8.8-2.9-.2-.3A8 8 0 1 1 12 20zm4.4-6c-.2-.1-1.4-.7-1.6-.8s-.4-.1-.5.1-.6.8-.8 1-.3.2-.5.1a6.5 6.5 0 0 1-3.3-2.9c-.2-.4.3-.4.7-1.3.1-.2 0-.3 0-.4l-.7-1.8c-.2-.5-.4-.4-.5-.4h-.5a.9.9 0 0 0-.7.3 2.8 2.8 0 0 0-.9 2.1 4.9 4.9 0 0 0 1 2.6 11.2 11.2 0 0 0 4.3 3.8c1.6.7 2.2.7 3 .6a2.6 2.6 0 0 0 1.7-1.2 2.1 2.1 0 0 0 .1-1.2c0-.1-.2-.2-.4-.3z'/></svg>") center / contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2a10 10 0 0 0-8.6 15.1L2 22l5-1.3A10 10 0 1 0 12 2zm0 18a8 8 0 0 1-4.2-1.2l-.3-.2-3 .8.8-2.9-.2-.3A8 8 0 1 1 12 20zm4.4-6c-.2-.1-1.4-.7-1.6-.8s-.4-.1-.5.1-.6.8-.8 1-.3.2-.5.1a6.5 6.5 0 0 1-3.3-2.9c-.2-.4.3-.4.7-1.3.1-.2 0-.3 0-.4l-.7-1.8c-.2-.5-.4-.4-.5-.4h-.5a.9.9 0 0 0-.7.3 2.8 2.8 0 0 0-.9 2.1 4.9 4.9 0 0 0 1 2.6 11.2 11.2 0 0 0 4.3 3.8c1.6.7 2.2.7 3 .6a2.6 2.6 0 0 0 1.7-1.2 2.1 2.1 0 0 0 .1-1.2c0-.1-.2-.2-.4-.3z'/></svg>") center / contain no-repeat; }
.pedido__enviar:hover { background: var(--verde-hover); }
.pedido__enviar[aria-disabled="true"] { background: var(--linea); color: var(--tinta-suave); cursor: not-allowed; }
.pedido__ayuda { font-size: var(--t-xs); color: var(--tinta-suave); }

@media (max-width: 640px) {
  .pedido {
    top: auto; right: 0; bottom: 0; left: 0;
    width: 100%; max-height: 88dvh;
    border-radius: var(--radio) var(--radio) 0 0;
  }
  .pedido__lista { max-height: 30dvh; }
}

/* ------------------------------------------------- pedido enviado */
.enviado {
  position: absolute;
  top: 4.4rem; left: 50%;
  transform: translateX(-50%);
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: .8rem;
  width: min(94vw, 520px);
  padding: .9rem 1rem;
  background: var(--verde-hondo); color: #fff;
  border-radius: var(--radio);
  box-shadow: var(--sombra-3);
  z-index: 7;
  animation: enviado-entra var(--sal-media);
}
.enviado__icono {
  display: grid; place-items: center;
  width: 2.4rem; height: 2.4rem; border-radius: 50%;
  background: #fff; color: var(--verde-hondo);
  font-size: 1.4rem; font-weight: 900; line-height: 1;
}
.enviado__texto { display: flex; flex-direction: column; gap: .15rem; min-width: 0; }
.enviado__texto strong { font-size: var(--t-md); line-height: 1.15; }
.enviado__texto span { font-size: var(--t-sm); opacity: .92; }
.enviado__cerrar { color: #fff; font-size: 1.5rem; width: 2rem; height: 2rem; line-height: 1; border-radius: 50%; }
.enviado__cerrar:hover { background: rgb(255 255 255 / .18); }
@keyframes enviado-entra { from { opacity: 0; transform: translate(-50%, -10px); } to { opacity: 1; transform: translate(-50%, 0); } }
@media (prefers-reduced-motion: reduce) { .enviado { animation: none; } }
@media (max-width: 640px) { .enviado { top: auto; bottom: 4.2rem; } }
