/* Google Fonts*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


*{

    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-padding-top:  2rem;
    text-decoration: none;
    scroll-behavior: smooth;
    list-style: none;
    font-family: "Poppins", sans-serif;



}


header{

    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #fff;
    box-shadow: 0 4px 41px rgb(14, 55, 54 / 14%);
    transition: 0.2s; 

}

.navbar{

display: flex;


}

.navbar a{

font-size: 1rem;
padding: 11px 20px;
color: var(--second-color);
font-weight: 600;
text-transform: uppercase;

}

.navbar a:hover{

color: var(--main-color);

}

/*Icono Hamburger Menu*/

#menu-icon{

    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
    display: none;

}

/*Tamaño del Logo*/

.logo img{

    width: 115px;

}


/*Apartado principal*/

.container{

    min-height: 100vh;
    width: 100%;
    background-color: #191a2b;
    margin-top: 50px;

}

.service-wrapper{

    padding: 5% 8%;


}

.service{

   display: flex;
   flex-direction: column;
   align-items: center;
    
}

h1{


    color:#fff;
    margin-top: 40px;
    font-size: 5rem;
    -webkit-text-stroke-width: 2px;
    letter-spacing: 4px;
    background-color: rgb(4,52,82); /*Linear gradiente*/
    background: linear-gradient(8deg, rgba(4,52,82,1) 0%,41%,rgba(41,17,45,1) rgba(0,0,0,1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;

}


h1:after{

    content: "";
    position: absolute;
    top: 100%;
    left: 10%;
    height: 8px;
    width: 80%;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.05);

}

h1 span{

    position: absolute;
    top:100%;
    left: 10%;
    height: 8px;
    width: 8px;
    border-radius: 50%;
    background-color: #72e2ae;
    animation: anim 5s infinite;
}

@keyframes anim{

    95%{

        opacity: 1;

    }

    100%{

        opacity: 0;
        left: 88%;


    }
}

.cards{

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 80px;


}

.card{

height: 350px;
width: 370px;
background-color: #1c2335;
padding: 3% 8%;
border:0.2px solid rgb(114,226, 174, 0.2);
border-radius: 8px;
transition: .6s;
display: flex;
align-items: center;
flex-direction: column;
position: relative;
overflow: hidden;


}

.card:after{

content: "";
position: absolute;
top:150%;
left: -200px;
width: 120%;
transform: rotate(50deg);
background-color: #fff;
height: 18px;
filter: blur(30px);
opacity: 0.5;
transition: 1s;

}

.card:hover:after{

  width: 225%;
  top: -100%;

}

.card i{

color: #72e2ae;
margin-top: 20px;
font-size: 4.8rem;


}


.card h2{

  color: #fff;
  font-size: 20px;
  letter-spacing: 1px;

}

.card p{

  text-align: left;
  width: 100%;
  margin: 12px 0;
  color: rgba(255, 255, 255, 0.6);



}

.card:hover{

background-color: transparent;
transform: translateY(-10px);
border-color: #00ff37;


}


.card:hover i{

  color: #00ff37;
  
  
  }


  /*Footer*/

  .contact{

    display: flex;
    flex-direction: column;
    align-items: center;
   background-color: #fff;
   padding-bottom: 30px;
  
    
  }

  .social {
    margin-top: 20px; /* Ajusta el valor según el espacio deseado */
    display: flex;
    justify-content: center;
    gap: 15px; /* Espacio entre los íconos */
  }
  
  
  .social a{
  
 
  font-size: 27px;
  margin: 0.5rem;
 
  
  
  }
  
  .social a .bx{
  
  padding: 5px;
  color: #fff;
  background: #000000;
  border-radius: 50%;
  
  }
  
  .social a .bx:hover{
  
  background-color: var(--main-color);
  
  
  }
  
  .links{
  
  
    margin: 1rem 0 1rem;
  
  }
  
  .links a{
  
    font-size: 1rem;
    font-weight: 500;
    color: var(--second-color);
    padding: 1rem;
  
  }
  
  .links a:hover{
  
    color: var(--main-color);
  
  
  }
  
  .contact p{
  
    text-align: center;
  
  }
  
  /*Boton wpp*/
  
  .btn-wsp{
    position:fixed;
    width:60px;
    height:60px;
    line-height: 63px;
    bottom:25px;
    right:25px;
    background:#25d366;
    color:#FFF;
    border-radius:50px;
    text-align:center;
    font-size:35px;
    box-shadow: 0px 1px 10px rgba(0,0,0,0.3);
    z-index:100;
    transition: all 300ms ease;
  }
  .btn-wsp:hover{
    background: #20ba5a;
  }
  @media only screen and (min-width:320px) and (max-width:768px){
    .btn-wsp{
        width:63px;
        height:63px;
        line-height: 66px;
  }
  }



  

/*Parte Responsive*/
  @media screen and (max-width: 1200px) {
  
    .cards{


      grid-template-columns: repeat(2, 1fr);


    }

    
  }

  @media screen and (max-width: 900px) {
  
    .cards{


      grid-template-columns: repeat(2, 1fr);


    }

    h1{

      font-size: 3.5rem;

    }

    
  }

  @media (max-width: 768px) {
    .cards {
      grid-template-columns: 1fr; /* Una tarjeta por fila */
      gap: 20px; /* Ajusta el espacio entre las tarjetas */
      padding: 0 10%; /* Opcional: reduce el padding lateral */
    }
  
    .card {
      width: 100%; /* Haz que la tarjeta ocupe todo el ancho disponible */
      height: auto; /* Ajusta automáticamente la altura */
      padding: 20px; /* Reduce el padding si es necesario */
    }
  
    h1 {
      font-size: 2.5rem; /* Ajusta el tamaño del encabezado para que no desborde */
    }
  }
  

  

  



@media (max-width: 1150px) {

    header{
  
      padding: 18px 7%;
    }
  
    section{
      padding: 50px 7%;
  
    }
    .home-text h1{
  
      font-size: 3rem;
     
    }
  
     .home-text h2{
  
      font-size: 1.5rem;
  
     }
  
  
  }
  
  @media (max-width: 991px) {
  
    header{
  
      padding: 18px 4%;
    }
  
    section{
      padding: 50px 4%;
  
    }
    
  }
  
  @media (max-width: 768px) {
  
    header{
  
      padding: 11px 4%;
    }
  
    #menu-icon{
  
      display: initial;
    }
   
    header .navbar{
  
      position: absolute;
      top: -500px;
      left: 0;
      right: 0;
      display: flex;
      flex-direction: column;
      background-color: #fff;
      box-shadow: 0 4px 41px rgb(14, 55, 54 / 14%);
      border-radius: 2px solid var(--main-color);
      transition: 0.2s;
      text-align: left;
      
  
    }
    .navbar.active{
  
      top: 100%;
    }
  
    .navbar a{
  
      padding: 1.5rem;
      display: block;
      color: var(--second-color);
    }
    
    .home-text span{
  
      font-size: 0.9rem;
    }
    
    .home-text h1{
  
      font-size: 2.4rem;
  
    }
  
     .home-text h2{
  
      font-size: 1.2rem;
  
     }
  }
  
  
  
  @media (max-width: 768px) {
  
    .home-text{
  
      padding-top: inherit;
  
    }
  
   
  
    .shop-container .box{
  
      margin-top: 6rem;
  
  
    }
    .heading h1{
  
      font-size: 1.5rem;
  
    }
  
    .heading span{
  
      font-size: 0.9rem;
  
  
    }
  
    .about{
  
      flex-direction: column-reverse;
    }
  
    .links{
  
      display: flex;
      flex-direction: column;
    }
  
  
  }
  
  @media (max-width: 364px) {
  
    .links{
  
      display: flex;
      flex-direction: column;
    }
  
  }