
body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
}  

header {
  background-color: #7666AB;
  color: white;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.background-icon {
  background-color: #ffffff;
  background-image: url('./assets/fondo.png');
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  background-size: contain;
}

/* nav a {
  color: white;
  margin: 0 1rem;
  text-decoration: none;
} */

.hero {
  background: url('fondo-patologia.jpg') center/cover no-repeat;
  padding: 4rem 2rem;
  color: white;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-text {
  max-width: 50%;
}

.btn {
  background-color: #ef4b96;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  margin-top: 1rem;
}

section {
  padding: 3rem 2rem;
  text-align: center;
}

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

.card {
  background: #f4f4f4;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  max-width: 300px;
}

.aliados {
  display: flex;
  justify-content: center;
  gap: 2rem;
  align-items: center;
  margin-top: 2rem;
}


footer {
  background-color: #7666AB;
  color: white;
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
}

footer a {
  color: #E84281;
  text-decoration: none;
}

