:root{
--fondo:#d495c8;
--fondo-contenedor:#f7f5f6;




  /* Estambre (lana juguete) */
  --pink1:#ff6f61;   
  --pink2:#ffb703;  
  --pink3:#ffe8c2;   

  /* Costura */
  --stitch:#ffffff;

  /* Sombras */
  --shadow-dark:#5a1a1a;
  --shadow-light:#ffffff;
}




*{ box-sizing:border-box; }

html, body{
  margin:0;
  padding:0;
}

body{
  background:var(--fondo-contenedor);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.envoltura{
  position: sticky;  
  top: 0;
  z-index: 1000;
  width: 100%;
  margin: 0;
  padding: 0;
  text-align:center;
  background: var(--fondo);
}


.envoltura svg{
  width:min(500px, 100%);
  height:0px, 30px ;
  display:block;
  margin:0 auto;
  filter: saturate(1.09) contrast(1.09);
}

/* NAV PEGADO TAMBIÉN */
.menu{
  position: sticky;
  top: calc(10px + 260px * 0); /* si quieres calcular exacto es complejo; mejor top:0 solo si header no es sticky */
  z-index: 999;

  margin: 0;
  padding: 0;

  background: rgba(247,245,246,.92);
  backdrop-filter: blur(6px);

  border-top: 1px solid rgba(0,0,0,.08);
  border-bottom: 1px solid rgba(0,0,0,.08);
}

/* menú horizontal */
.menu ul{
  list-style:none;
  margin: 0;
  padding: 10px 16px;

  display:flex;
  gap: 12px;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
}

.menu a{
  display:inline-block;
  padding: 8px 12px;
  text-decoration:none;
  color: rgba(0,0,0,.78);
  border-radius: 999px;
  transition: transform .12s ease, background .12s ease;
}

.menu a:hover{
  background: rgba(0,0,0,.06);
  transform: translateY(-1px);
}

.contenido{
  padding: 18px 16px;
}


