@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alegreya+Sans+SC:wght@800&display=swap');
:root{
    --red:#ff3838;
    --facebook: #3b5999;
    --instagram: #e4405f;
  }

*{
    font-family: 'Alegreya Sans SC', sans-serif;
    margin:0; padding:0;
    box-sizing: border-box;
    outline: none; border:none;
    text-decoration: none;
    text-transform: capitalize;
    transition:all .2s linear;
  }

  html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 6rem;
  }
  
  body{
    background:#f7f7f7;
  }

  section{
    padding:2rem 9%;
  }

  .heading{
    text-align: center;
    font-size: 3.5rem;
    padding:1rem;
    color:#666;
  }
  
  .heading span{
    color:var(--red);
  }
  

  .btn{
    display: inline-block;
    padding:.8rem 3rem;
    border:.2rem solid var(--red);
    color:var(--red);
    cursor: pointer;
    font-size: 1.7rem;
    border-radius: .5rem;
    position: relative;
    overflow: hidden;
    z-index: 0;
    margin-top: 1rem;
  }
  
  .btn::before{
    content: '';
    position: absolute;
    top:0; right: 0;
    width:0%;
    height:100%;
    background:var(--red);
    transition: .3s linear;
    z-index: -1;
  }
  
  .btn:hover::before{
    width:100%;
    left: 0;
  }
  
  .btn:hover{
    color:#fff;
  }
  header{
    position: fixed;
    top:0; left: 0; right:0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #171414;
    padding:2rem 9%;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
  }

  header .navbar a{
    font-size: 2.5rem;
    margin-left: 2rem;
    color: white;
    font-family: 'Alegreya Sans SC', sans-serif;
  }
  
  header .navbar a:hover{
    color:var(--red);
  }

  header h3{
    font-size: 1.3rem;
    color:white;
    margin-top: 5%;
    padding-left: 10%;
  }
  #menu-bar{
    font-size: 3rem;
    cursor: pointer;
    color:#666;
    border:.1rem solid #666;
    border-radius: .3rem;
    padding:.5rem 1.5rem;
    display: none;
  }  

  .inicio{
    display: flex;
    flex-wrap: wrap;
    gap:1.5rem;
    min-height: 100vh;
    align-items: center;
    background-size: cover;
    background-position: center;
  } 

  .inicio .content{
    flex:1 1 40rem;
    padding-top: 9rem;
  }

  .inicio .imagen{
    flex:1 1 40rem;
  }
  
  .inicio .imagen img{
    width:100%;
    padding:1rem;
    animation:float 3s linear infinite;
  }

  @keyframes float{
    0%, 100%{
      transform: translateY(0rem);
    }
    50%{
      transform: translateY(3rem);
    }
  }

  .inicio .imagen h3{
    font-size: 3rem;
    color:#333;
    margin-top: 10%;
    padding-left: 16%;
  }
  
  .inicio .content h3{
    font-size: 5rem;
    color:#333;
  }
  
  .inicio .content p{
    font-size: 1.7rem;
    color:#666;
    padding:1rem 0;
  }

.productos .box-container{
    display: flex;
    flex-wrap: wrap;
    gap:1.5rem;
    height: 700px;
    width: 900px;
    text-align: center;
    margin-left: 23%;
  }
  
  .productos .box-container .box{
    flex:1 1 30rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
    border:.1rem solid rgba(0,0,0,.3);
    cursor: pointer;
    border-radius: .5rem;
  }
  
  .productos .box-container .box .content{
    text-align: center;
    background:#fff;
    padding:2rem;
  }
 
  .productos .box-container .box .content img{
    width: 850px;
    height: 650px;
  }

  .productos .box-container .box .content h3{
    font-size: 2.5rem;
    color:#333;
  }
  
  .productos .box-container .box .content p{
    font-size: 1.6rem;
    color:#666;
    padding:1rem 0;
  }
  

  .order .row{
    padding:2rem;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
    background:#fff;
    display: flex;
    flex-wrap: wrap;
    gap:1.5rem;
    border-radius: .5rem;
  }
  
  .order .row .image{
    flex:1 1 20rem;
  }
  
  .order .row .image img{
    height: 100%;
    width:100%;
    object-fit: cover;
    border-radius: .5rem;
  }
  
  .order .row form{
    flex:1 1 50rem;
    padding:1rem;
  }
  
  .order .row form .inputBox{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  .order .row form .inputBox input, .order .row form textarea{
    padding:1rem;
    margin:1rem 0;
    font-size: 1.7rem;
    color:#333;
    text-transform: none;
    border:.1rem solid rgba(0,0,0,.3);
    border-radius: .5rem;
    width:49%;
  }
  
  .order .row form textarea{
    width:100%;
    resize: none;
    height:15rem;
  }
  
  .order .row form .btn{
    background:none;
    margin-left: 45%;
  }
  
  .order .row form .btn:hover{
    background:var(--red);
  }

  .order .row form label{
    display: none;
    
  }

.redes-container{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
}

.redes-container ul li{
  display: inline-block;
  margin: 0 50px;
  width: 50px;
  height: 50px;
  text-align: center;
}

.redes-container ul li a {
  display: block;
  padding: 0 10px;
  background: #333;
  color: #fff;
  line-height: 50px;
  font-size: 18px;
  box-shadow: 0 3px 5px 0px rgba(0, 0, 0, .2);
  transition: .2s;
}

.redes-container ul:hover a {
  filter: blur(2px);
}

.redes-container ul li a:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 5px 5px 0px rgba(0, 0, 0, .4);
  filter: none;
}

.redes-container ul li .facebook{
  background: var(--facebook);
}

.redes-container ul li .instagram{
  background: var(--instagram);
}





































  /* media queries  */

@media(max-width:991px){

    html{
      font-size: 55%;
    }
  
    header{
      padding:2rem;
    }
  
    section{
      padding:2rem;
    }

    .inicio{
      padding-top: 15%;
    }
  }
  
  @media(max-width:768px){
  
    #menu-bar{
      display: initial;
    }
  
    header .navbar{
      position: absolute;
      top:100%; left: 0; right:0;
      background: #171414;
      border-top: .1rem solid rgba(0,0,0,.1);
      clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }
  
    header .navbar.active{
      clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }
  
    header .navbar a{
      margin: 1.5rem;
      padding:1.5rem;
      display: block;
      border:.2rem solid rgba(0,0,0,.1);
      border-left:.5rem solid var(--red);
      background:#fff;
      color: #171414;
    }
    .inicio{
      padding-top: 15%;
    }

    .productos .box-container{
      height: 400px;
      width: 400px;
      margin-left: -1%;
    }
    .productos .box-container .box .content img{
      width: 350px;
      height: 350px;
    }
  
  }
  
  @media(max-width:450px){
  
    html{
      font-size: 50%;
    }
    .inicio{
      padding-top: 15%;
    }
  }