/* ============================
   GLOBAL RESET & BASE STYLES
   VS Print Studio
   ============================ */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(19, 127, 236, 0.10), transparent 26%),
    radial-gradient(circle at bottom right, rgba(70, 194, 255, 0.08), transparent 24%),
    linear-gradient(135deg, #06111f 0%, #091827 42%, #0b1320 100%);
  color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  line-height: 1.5;
  min-height: 100vh;

  /* espacio inferior para footer fijo / CTA móvil */
  padding-bottom: 72px;
}

/* ============================
   MEDIA ELEMENTS
   ============================ */

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ============================
   FORM ELEMENTS
   ============================ */

input,
button,
textarea,
select {
  font: inherit;
}

/* ============================
   LINKS
   ============================ */

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* ============================
   WORDPRESS / THEME HELPERS
   ============================ */

.skip-link {
  display: none !important;
}

body.modal-open {
  overflow: hidden;
}

/* ============================
   PAGE SPACING
   ============================ */

/* 
   No usamos padding-top global en body
   porque puede romper el hero, header sticky
   y layouts full-width.
   Ese espacio debe manejarse en el header
   o en secciones específicas.
*/

/* ============================
   MOBILE ADJUSTMENTS
   ============================ */

@media (max-width: 767px) {
  body {
    padding-bottom: 76px;
  }
}
/* Ocultar footer nativo de Astra */
.site-footer,
.ast-footer-wrap,
.ast-builder-footer,
.ast-small-footer,
.ast-footer-copyright {
  display: none !important;
}