body {
  background-color:#fcfbfa; 
  font-family: Plus Jakarta Sans, sans-serif; 
  color:#292929;
  margin: 2rem 4rem;
}

h1 {
  font-size: 7rem; 
  font-weight: bold;
  line-height: 1rem;  
  transition: color 0.3s;
}

h2 {font-size:2rem; font-weight: normal;}
h3 {font-size:1.5rem; font-weight: normal;}

.bold {font-weight: bold;}

.linea-degradado {
  height: 0.5rem;
  margin-top: 2rem;
  border-radius: 40px;
  background: linear-gradient(-225deg, #5271C4 0%, #B19FFF 48%, #ECA1FE 100%);  
}

/*Menu*/
nav {
  display: flex;
  justify-content: space-between; 
  align-items: center;
  padding: 1rem 2rem;
}

.logo img { max-height: 40px; }

.menu {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;  
}

.menu a {  
  color: #292929;  
  text-decoration: none; 
  transition: color 0.3s;
}

.menu a:hover {
  font-weight: bold;
  color: #B19FFF;
}

/*Inicio*/
.inicio {
  text-align:center ;
  padding: 6rem; 
  margin-top: 2rem;  
  background-image: linear-gradient(-225deg, #5271C4 0%, #B19FFF 48%, #ECA1FE 100%); 
  border-radius:40px;
  color: #fcfbfa;
}

.integrantes { 
  display: flex;  
  justify-content: center;  
  flex-wrap: wrap;  
  gap: 2rem;
  padding: 6rem 3rem;  
}

[class^="columna-"] {
  width: 16%;
  padding: 2rem;  
  border-radius: 1rem;  
  box-sizing: border-box;
  text-align:center;
  border: solid 1px #B19FFF;
  transition: transform 0.2s, background-color 0.2s;
}

[class^="columna-"]:hover {
  transform: translateY(-5px);
  background-color: #b19fff42;
}

.boton-perfil {
  display: inline-block;
  margin-top: 1rem;
  padding: 12px 24px;
  border: #B19FFF solid 1px;
  color: #B19FFF;
  text-decoration: none;  
  border-radius: 30px;
}

.boton-perfil:hover {
  color: #fcfbfa;
  background-image: linear-gradient(-225deg, #5271C4 0%, #B19FFF 48%, #ECA1FE 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  font-weight: bold;
}

/*Datos*/
.datos {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 2rem 4rem;  
  font-size:small;   
  gap: 2rem; 
}

footer {
  display: flex;
  flex-wrap: wrap;  
  justify-content: space-between;
  padding: 1rem 4rem;
  align-items: center;
  color: #353535;
  font-size:x-small;
  border-radius: 40px;
  border: 1px solid #353535;
  gap: 2rem;
}

.footer-text {
  max-width: 60%;
}

[class^="plan-"] {
  margin-top: 2rem;
  padding: 2rem 4rem;
  border: #B19FFF solid 1px;
  border-radius: 40px;
}

.user {
  display: flex;
  gap: 2rem;
  border: none;
}
.plan-user { 
   background-color:#B19FFF;
   color: #fcfbfa;
}

[class^="plan-"]:hover {
  transform: translateY(-5px);
  background-color: #b19fff42;
  color: #292929;
}


