.aviso-privacidad-bg {
  position: relative;
  background: #fff6e6; /* Tu color de fondo, opcional */
  min-height: 90vh;
  max-width: 1250px;
  margin: 40px auto;
  padding: 32px;
  border-radius: 16px;
  color: #707f62;
  overflow: hidden;
  box-sizing: border-box;
}

/* Logo gigante, opaco y centrado detrás del texto */
.aviso-privacidad-bg::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;   /* Ajusta el tamaño según lo quieras */
  height: 100%;  /* Ajusta el tamaño según lo quieras */
  transform: translate(-50%, -50%);
  background: url('logo_Clocher.PNG') no-repeat center center;
  background-size: contain;
  opacity: 0.2;         /* Opacidad para que apenas se vea */
  pointer-events: none;  /* El texto es clickeable encima */
  z-index: 0;
}

/* El texto debe estar encima */
.aviso-privacidad-bg > * {
  position: relative;
  z-index: 1;
}
