:root{
    --oscuro: #1d1a2c;
    --claro: #fff;
    
}

.display-1, .display-2, .display-3, .display-4, .display-5 {
    font-weight: 400 !important;
}



/* =========================
   Google Fonts
   ========================= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&family=Syne:wght@400;500;600;700;800&display=swap');


/* =========================
   Reset + Layout base
   ========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

a{
    text-decoration: none !important;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  background-color: #050816;
  color: #e5e7eb;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden; /* que nada se desborde horizontalmente */
}

.container{
    max-width: 1300px !important;
    transform: scale(0.97);
}


/* Evitar que media rompa el layout */
img,
video,
canvas,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Links básicos */
a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Listas */
ul,
ol {
  padding-left: 1.5rem;
}

/* =========================
   Tipografía
   ========================= */
h1,
h2,
h3,
h4,
h5,
h6,
span {
  font-family: "Syne", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 0.6em;
  letter-spacing: 0.02em;
}

a{
    font-family: poppins;
}

p {
  margin: 0 0 1rem;
  font-size: 1.2rem;
}

/* Tamaños sugeridos */
h1 { font-size: clamp(2.2rem, 3vw, 3rem); }
h2 { font-size: clamp(1.8rem, 2.4vw, 2.4rem); }
h3 { font-size: clamp(1.4rem, 2vw, 2rem); }
h4 { font-size: 1.15rem; }
h5 { font-size: 1.02rem; }
h6 { font-size: 0.9rem; }

/* =========================
   Contenedor de secciones
   (usá siempre <section class="content">)
   ========================= */
.content {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding: 3rem 1.5rem;
}

/* Ajuste responsive suave */
@media (max-width: 768px) {
  .content {
    padding: 2.5rem 1.25rem;
  }
}
