﻿html {
  background-color: #10244a;
}

body {
  background:
    linear-gradient(
      90deg,
      rgba(7, 18, 48, 0.55) 0%,
      rgba(7, 18, 48, 0.22) 38%,
      rgba(255, 246, 220, 0.05) 56%,
      rgba(12, 30, 70, 0.42) 100%
    ),
    image-set(
      url("../img/background-guia-vibracional.webp") type("image/webp"),
      url("../img/background-guia-vibracional.png") type("image/png")
    );
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 52% 22%, rgba(255, 238, 180, 0.28), transparent 28%),
    linear-gradient(to bottom, rgba(255,255,255,0.04), rgba(5, 14, 38, 0.34));
  z-index: 0;
}

body > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  body {
    background-attachment: scroll;
    background-position: center top;
    background-image:
      linear-gradient(
        90deg,
        rgba(7, 18, 48, 0.55) 0%,
        rgba(7, 18, 48, 0.22) 38%,
        rgba(255, 246, 220, 0.05) 56%,
        rgba(12, 30, 70, 0.42) 100%
      ),
      image-set(
        url("../img/background-guia-vibracional-mobile.webp") type("image/webp"),
        url("../img/background-guia-vibracional.png") type("image/png")
      );
  }

  body::before {
    background:
      linear-gradient(to bottom, rgba(7, 18, 48, 0.30), rgba(7, 18, 48, 0.62));
  }
}
