@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
@keyframes floatAnimation {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5%);
  }
  100% {
    transform: translateY(0);
  }
}


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: 'Poppins', sans-serif;
}
:root{
    --bg-color:#1f242d;
    --second-bg-color:#323946;
    --text-color:#fff;
    --main-color:#8a1dff;
}
html{
    font-size: 65%;
    overflow-x: hidden;
}
section{
   min-height:100vh ;
   padding: 4rem 9% 2rem; 
}
body{
    background: var(--bg-color);
    color: var(--text-color);
}
.header{
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    padding: 2rem 9%;
    background: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 100;
    
}
.logo {
    font-size: 2.5rem;
    background: linear-gradient(270deg, #9000FF 10.81%, #59EBFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    cursor: default;
}
.navbar a{
    font-size: 1.7rem;
    color: var(--text-color);
    margin-left: 3.5rem;
}
.navbar a:hover{
    color: var(--main-color);
}
#menu-icon{
  font-size: 3.6rem;  
  color: var(--text-color);
  display: none;
}
.home{
    display: flex;
    justify-content: center;
    align-items: center;
}
.home-content{
    text-align: center;
    max-width: 35%; 
    margin: 0 auto;
}
.home-content h1 {
    font-size: 5rem;
    font-weight: 800;
    background: linear-gradient(270deg, #9000FF 10.81%, #59EBFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.home-img {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    max-width: 65%;
}
.home-img img {
    width: 100%; /* Establece el ancho deseado */
    height: auto; /* Ajusta automáticamente la altura proporcionalmente */
    animation: floatAnimation 3s infinite;
}
.about{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    background: var(--second-bg-color);
    
}
.about-img img {
    width: 35vw; /* Establece el ancho deseado */
    height: auto; /* Ajusta automáticamente la altura proporcionalmente */
    
}
.heading{
    text-align: center;
    font-size: 4.5rem;
}
.about-content h2{
    text-align: left;
    line-height: 1.2;
}
.about-content h3{
    font-size: 2.6rem;
}
.about-content p{
    font-size: 1.6rem;
    margin: 2rem 0 3rem;
    line-height: 2.5;
    text-align: justify;
}
.social-media{
  text-align: center;
}
.social-media a{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 6rem;
    height: 6rem;
    background: transparent;
    border: .2rem solid var(--main-color);
    border-radius: 50%;
    font-size: 2rem;
    color: var(--main-color);
    margin: 3rem 1.4rem 3rem 0;
}





  
  
  .tareas h2{
    margin-bottom: 5rem;
  }
  .tareas-container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3%;
  }
  .tareas-container .tareas-box{
    flex: 1 1 30rem;
    background: var(--second-bg-color);
    padding: 3rem 2rem 4rem;
    border-radius: 2rem;
    text-align: center;
    border: .2rem solid var(--bg-color);
    transition: .5s ease;
  }
  .tareas-container .tareas-box:hover{
    border-color: var(--main-color);
    transform: scale(1.02);
  }
  .tareas-box i{
    font-size: 7rem;
    color: var(--main-color);
  }
  .tareas-box h3{
    font-size: 2.6rem;
  }
  .tareas-box p{
    font-size: 1.2rem;
    margin: 7% ;
  }
  .btn{
    display: inline block;
    padding: 1rem 2.8rem;
    background-color: var(--main-color);
    border-radius: 4rem;
    font-size: 1.6rem;
    letter-spacing: .1rem;
    font-weight: 600;
    transition:.5s  ease;
    color: #fff;
  }
  .btn:hover{
    box-shadow: none;
  }

  .semana{
  
  }

  .cont-semana{
    background-color: var(--second-bg-color);
  }
  .semana-box{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3%;
    border: 4px solid #cccccc;
    border-radius: 5rem;
    transition: background-color 0.3s ease;
  }
  .semana-box:hover{
    background-color: #cccccc;
    color: #000;
  }
  .semana-box img{
    width: 45%;
    height: 25%;
    border-radius: 5rem;
    display: block;
    margin: auto;
  }

  .semana-exp{
    text-align: center;
    max-width: 40%; 
    margin: 0 auto;
    padding-top: 50px;
    padding-bottom: 50px;
    font-size: 1.5rem;
  }
  .semana-exp h4{
    font-size: 2.5rem;
  }
  .semana-exp p{
    font-size: 1.5rem;
    text-align: justify;
    line-height: 2;
  }
 
  .semana h1{
    font-size: 4rem; 
    color: #4adede;
    margin-top: 4%;
    text-align: center;
  }
  .semana p{
    color: #b0b6f9;
    font-size: 2.5rem;
    text-align: center;
    margin-top: 15px;
  }
  .semana img{
    width: 40%;
    height: 40%;
    display: block;
    margin: auto;
    margin-top: 5rem;
  }
  .cont-semana h2{
    font-size: 3rem;
    color: aliceblue;
    text-align: center;
  }

  .infor-semana {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

  .infor-semana-container{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    align-items: center;
    gap: 2.5rem;
  }
  .infor-semana-container .infor-semana-box{
    position: relative;
    border-radius: 2rem;
    box-shadow: 0 0 1rem var(--bg-color);
    overflow: hidden;
    display: flex;
  }
  .infor-semana-box img{
    width: 100%;
    height: 350px;
    transition: .5s ease;
  }
  .infor-semana-box:hover{
    transform: scale(1.1);
  }
  .infor-semana-box:hover .infor-letras{
    transform: translateY(0);
  }
  .infor-semana-box .infor-letras{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,.1),var(--main-color));
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 4rem;
    flex-direction: column;
    transform: translateY(100%);
    transition: .5s ease;
  }
  .infor-letras h1{
    font-size: 3rem;
  }
  .infor-letras h3{
    font-size: 1.6rem;
    margin: .3rem 0 1rem;
  }
 .btn-info{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 4%;
    padding: 1rem 2.8rem;
    background-color: var(--main-color);
    border-radius: 4rem;
    font-size: 1.6rem;
    letter-spacing: .1rem;
    font-weight: 600;
    transition:.5s  ease;
    color: #fff;
 }