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

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background: #f4f6f8;
  color: #333;
}

.navbar {
  background-color: #1a237e;
  color: white;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.navbar a {
  color: white;
  text-decoration: none;
}

.hero {
  text-align: center;
  padding:  1rem;
  background-color: #283593;
  color: white;
}

.IMGhero{ 
 border-radius: 30px;
}
.hero .btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background: #64b5f6;
  color: white;
  border-radius: 5px;
  text-decoration: none;
}

.section {
  padding: 3rem 2rem;
  background-color: white;
  margin: 1rem auto;
  max-width: 1200px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1); 
  text-align: center;
}

.features {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.feature {
  text-align: center;
  max-width: 250px;
}

.feature i {
  color: #1a237e;
  margin-bottom: 1rem;
}

.beneficios ul {
  list-style: none;
  padding-left: 0;
  font-size: 1.1rem;
  line-height: 2rem;
}

.descarga .stores {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
}

.stores img {
  width: 120px;
  height: auto;
}

footer {
  background-color: #1a237e;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}

footer .social {
  margin-top: 0.5rem;
}

footer .social a {
  color: white;
  margin: 0 0.5rem;
  font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .features {
    flex-direction: column;
    align-items: center;
  }

  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar ul {
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
  }
}
/* Animación para botones */
.hero .btn {
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.hero .btn:hover {
  background-color: #42a5f5;
  transform: scale(1.05);
  cursor: pointer;
}

/* Animación para íconos */
.feature i {
  transition: color 0.3s ease, transform 0.3s ease;
}

.feature:hover i {
  color: #3949ab;
  transform: scale(1.2) rotate(10deg);
}

/* Animación para enlaces del navbar */
.navbar a {
  transition: color 0.3s ease;
}

.navbar a:hover {
  color: #64b5f6;
}
