html, body, #root {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  background-color: #162c66;
  overflow-x: hidden;
}

body {
  font-family: 'Arial', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
}

.seo-hidden {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}


/* ✅ Estilos para contenido visible SEO */
.seo-section {
  max-width: 900px;
  margin: 2rem auto;
  padding: 1rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #f1f1f1;
}

.seo-section h2 {
  color: #f4d35e;
  margin-top: 2rem;
}

.seo-section h3 {
  color: #ffffff;
  margin-top: 1rem;
  font-size: 1.1rem;
}

footer {
  text-align: center;
  padding: 1rem;
  background-color: #0b1a3d;
  color: #f1f1f1;
  position: relative;
  bottom: 0;
  width: 100%;
}

