body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  background-color: #f5f7fa;
  color: #333;
}

.header {
  background-color: #0f3d57;
  color: white;
  text-align: center;
  padding: 60px 20px 30px;
}

.header h1 {
  font-size: 2em;
  margin-bottom: 10px;
}

.contenido {
  display: flex;
  flex-wrap: wrap;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
  align-items: center;
}

.texto {
  flex: 1 1 50%;
}

.texto ul {
  list-style: disc;
  padding-left: 20px;
}

.imagen {
  flex: 1 1 40%;
  text-align: center;
}

.imagen img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.marcas {
  text-align: center;
  padding: 40px 20px;
  background-color: #fff;
}

.marcas h2 {
  margin-bottom: 20px;
}

.logo-marcas {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.logo-marcas img {
  max-height: 50px;
  filter: grayscale(100%);
  transition: filter 0.3s;
}

.logo-marcas img:hover {
  filter: grayscale(0%);
}

.cta {
  text-align: center;
  margin: 40px 0;
}

.boton {
  background-color: #00aaff;
  color: white;
  padding: 14px 28px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.boton:hover {
  background-color: #0077aa;
}

.footer {
  background-color: #0f3d57;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}
