/* ==============================
   🔷 ESTILOS BASE GLOBALES
   ============================== */
html, body {
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-family: 'Montserrat', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  color: #222;
  background-color: #fff;
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

/* Paleta y variables */
:root {
  color-scheme: light;
  --color-azul: #082F8F;
  --color-verde: #00FF90;
  --color-gris: #F6F7FB;
  --font-base: 'Montserrat', sans-serif;
}

/* Tipografía */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-base);
  margin: 0 0 0.6em 0;
  line-height: 1.2;
}

p { line-height: 1.6; margin: 0 0 1.2em; }

/* Botones globales */
.pm-btn,
button,
a.button {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  color: #082F8F;
  background: var(--color-verde);
  border-radius: 12px;
  padding: 14px 32px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.pm-btn:hover {
  background: #00E380;
  transform: translateY(-2px);
}

/* Centrados universales */
.center {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Responsive global */
@media (max-width: 767px) {
  h1 { font-size: 28px; }
  h2 { font-size: 22px; }
  p  { font-size: 16px; line-height: 1.5; }
  .pm-btn { padding: 12px 24px; font-size: 15px; }
}
