/* ProSoluciones Theme — reset + tokens */

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --ps-primary: #7bb7ff;
  --ps-secondary: #7bb7ff;
  --ps-accent: #7bb7ff;
  --ps-accent-hover: #7bb7ff;
  --ps-text: #f4f4f4;
  --ps-bg: #090A0B;
  --ps-bg-soft: #101114;
  --ps-muted: #a3a3a3;
  --ps-border: rgba(255, 255, 255, 0.09);
  --ps-glass: rgba(255, 255, 255, 0.045);
  --ps-page: #090A0B;
  --ps-font: "Sora", sans-serif;
  --ps-container: 1140px;
  --ps-radius: 10px;
  --ps-space: 1.25rem;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

html,
body {
  background: #090A0B;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  font-family: var(--ps-font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ps-text);
}

::selection {
  background: rgba(123, 183, 255, 0.28);
  color: #ffffff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--ps-primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.25;
  margin: 0 0 0.75rem;
  color: var(--ps-text);
}

p {
  margin: 0 0 1rem;
}

ul, ol {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.ps-skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100000;
  padding: 0.75rem 1rem;
  background: var(--ps-primary);
  color: #090A0B;
}

.ps-skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.ps-container {
  width: min(100% - 2rem, var(--ps-container));
  margin-inline: auto;
}

.ps-main--flush {
  padding: 0;
  margin: 0;
  max-width: none;
}

.ps-main--flush > .ps-container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}
