

/* NUEVO CSS 'INVERSORES''
----------------------------------*/

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  line-height: 1.6;
  color: #000000;
  min-height: 100vh;
  position: relative;
  padding-top: 19vh; /* 10% de la altura de la pantalla */
}

.inversores {
  /* padding: 60px 20px; */
  /*background: #f9f9f9;*/
  text-align: center;
}

.inversores .container {
  max-width: 900px;
  margin: 0 auto;
}

.inversores h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 3px;
  color: black;
}

.inversores p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.inversores ul {
  list-style: none;
  padding: 0;
  margin: 30px auto;
  text-align: left;
  display: inline-block;
  font-size: 1.2rem;
}

.inversores ul li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 15px;
}

.inversores ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ff6600;
  font-weight: bold;
  font-size: 1.3rem;
}

.btn.btn-primary {
  display: inline-block;
  background: #ff6600;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn.btn-primary:hover {
  background: #e05500;
}

@media (max-width: 768px) {
  body {
    padding-top: 130px;
  }
  .inversores h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    color: black;
  }
  .inversores p {
    padding: 1.2rem;
  }
  .inversores ul {
    list-style: none;
    padding: 0;
    margin: 0px 30px auto;
    text-align: left;
    display: inline-block;
    font-size: 1.2rem;
  }
}
