@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200&display=swap');

/* Variables */
:root {
  --font-size:1rem;
}
.light-mode {
  --navbar-color: #222;
  --navbar-bg-color: #F0F0F0;  
}
.dark-mode {
  --navbar-color: #FFF;
  --navbar-bg-color: #000; 
}

/* Reset */
* {
  box-sizing:border-box; 
  outline:none;
  margin:0;
  padding:0;
}
ul {
  list-style:none;
}

body {
padding: 0;
margin: 0;
}

p {
padding: 0 10px;
text-align: justify;
}

#menu {
  z-index:2;
  position: fixed;
  right:0;
  left:0;
  top: 0;
  margin-top: 0;
}


/* Basic style */
body {
  margin:0;
  font-size:var(--font-size);
  font-family: 'Poppins', sans-serif;
}

h2 {
  font-weight: 400;
  font-style: normal;
  letter-spacing: 1.3px;
  font-size: 2.1rem;
  line-height: 1.3; 
}

.header2 {
  text-align: center;
  width: 100%;
  margin: auto;
  color:white;
}

.main-content {
  padding:1rem;
}

/* Logo */
.logo {
  float: right; 
  display: flex; 
  justify-content: end;
  align-items: center;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 4px;
}
.logo img {
  height: 40px;
  width: auto;
  cursor: pointer;
}


/* Navbar */
.navbar {
  display:flex;
  align-items:center; 
  justify-content:space-between;   
  padding:10px;
  font-size:1.1rem;
  background:var(--navbar-bg-color);
  color:var(--navbar-color);
  background: rgba(0, 0, 0, 0.2);
   /* Without some kind of transparency, you can't see the effct*/
  backdrop-filter: blur(20px);
  /* Adding blur effect on the navbar background */
  
}
.navbar__links { 
  display:flex;
}
.navbar__link { 
  padding:0 10px;
}
.navbar__link > a { 
  color:var(--navbar-color);
  text-decoration:none;
}

.taphover {
    -moz-transition:all 0.3s;
    -webkit-transition:all 0.3s;
     transition:all 0.3s
 }
.taphover:hover, .taphover:active {
    -moz-transform: scale(1.05);
    -webkit-transform: scale(1.05);
     transform: scale(1.05)
 }
 

 
 @media screen and (min-width:2000px){
     
      .logo{
    margin-left: 12%;
    font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 4px;
  }
    
  .navbar__links { 
    overflow:hidden;
    display:flex;
    flex-direction:column;
    width:0;
    height:calc(100vh - 65px);  
    position:absolute;
    top:65px;
    right:0;     
    transform: translateX(110%);
    transition: all .5s ease-in-out;
    background:var(--navbar-bg-color);
     
  }
  .show-nav .navbar__links { 
    
    width:100vw;    
    transform: translateX(0);
  } 
  .navbar__link {    
    transform: translateX(101%);
    transition: all .5s ease-in-out;
  }
  
  .show-nav .navbar__link  {        
    transform: translateX(0);    
  }   
  .navbar__link > a {
    display:block;
    padding:1rem;
    font-size:1.6rem;
    color:var(--navbar-color);
    transition: all .4s ease-in-out;
  
  }
  .navbar__link > a:hover {
    padding-left:2rem;
    letter-spacing:5px;
  }
      .newsletter {
        display: block!important;
    }
    
}


@media screen and (max-width: 1250px){
    
     .logo{
    margin-left: 12%;
    font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 4px;
  }
    
  .navbar__links { 
    overflow:hidden;
    display:flex;
    flex-direction:column;
    width:0;
    height:calc(100vh - 65px);  
    position:absolute;
    top:65px;
    right:0;     
    transform: translateX(110%);
    transition: all .5s ease-in-out;
    background:var(--navbar-bg-color);
  
  }
  .show-nav .navbar__links { 
    
    width:100vw;    
    transform: translateX(0);
  } 
  .navbar__link {    
    transform: translateX(101%);
    transition: all .5s ease-in-out;
  }
  
  .show-nav .navbar__link  {        
    transform: translateX(0);    
  }   
  .navbar__link > a {
    display:block;
    padding:1rem;
    font-size:1.6rem;
    color:var(--navbar-color);  
    transition: all .4s ease-in-out;
  }
  .navbar__link > a:hover {
    padding-left:2rem;
    letter-spacing:5px;
  }
    .top_button{
    float: right; 
    display: flex; 
    justify-content: end; 
    width:7%;
    align-items: center;
  }
  
}

@media screen and (max-width: 800px){
    
     .logo{
    margin-left: 12%;
    font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 4px;
  }
    
  .navbar__links { 
    overflow:hidden;
    display:flex;
    flex-direction:column;
    width:0;
    height:calc(100vh - 65px);  
    position:absolute;
    top:65px;
    right:0;     
    transform: translateX(110%);
    transition: all .5s ease-in-out;
    background:var(--navbar-bg-color);

}
    
  .show-nav .navbar__links {
    width:100vw;    
    transform: translateX(0);
  } 
  .navbar__link {    
    transform: translateX(101%);
    transition: all .5s ease-in-out;
  }
  
  .show-nav .navbar__link  {        
    transform: translateX(0);    
  }   
  .navbar__link > a {
    display:block;
    padding:1rem;
    font-size:1.6rem;
    color:var(--navbar-color);  
    transition: all .4s ease-in-out;
  }
  .navbar__link > a:hover {
    padding-left:2rem;
    letter-spacing:5px;
  }
  
  
  .taphover {
    -moz-transition:all 0.3s;
    -webkit-transition:all 0.3s;
     transition:all 0.3s
 }
.taphover:hover, .taphover:active {
    -moz-transform: scale(1.05);
    -webkit-transform: scale(1.05);
     transform: scale(1.05)
 }
}
 
/*  Small device */
@media screen and (max-width:767.98px) {
    
    .logo{
    margin-left: 2%;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 4px;
  }
    
  .navbar__links { 
    overflow:hidden;
    display:flex;
    flex-direction:column;
    width:0;
    height:calc(100vh - 65px);  
    position:absolute;
    top:65px;
    right:0;
    transform: translateX(110%);
    transition: all .5s ease-in-out;
    background:var(--navbar-bg-color);
    
  }
  .show-nav .navbar__links { 
    
    width:100vw;    
    transform: translateX(0);
    
  } 
  .navbar__link {    
    transform: translateX(101%);
    transition: all .5s ease-in-out;
  }
  
  .show-nav .navbar__link  {        
    transform: translateX(0);    
  }   
  .navbar__link > a {
    display:block;
    padding:1rem;
    font-size:1.6rem;
    color:var(--navbar-color);  
    transition: all .4s ease-in-out;
    }
  
  .navbar__link > a:hover {
    padding-left:2rem;
    letter-spacing:5px;
  }
  
  /* Toggle menu */
  .burger {
    display:block;
    position:relative;
    padding:0;
    width:30px;
    height:45px;
    border:none;
    background:transparent;
    cursor:pointer;
  }
  .bar {
    display:block;    
    width:30px;
    height:4px;  
    border-radius:3px;
    background:var(--navbar-color); 
    transition: all .5s ease-in-out;   
  }
  .bar::before, .bar::after {
    content:"";
    width:30px;
    height:4px;
    position:absolute; 
    left:0;  
    background:var(--navbar-color); 
    border-radius:3px;    
    transition: all .5s ease-in-out;
  }
  .bar::before {
    transform:translateY(-12px)
  }
  .bar::after {
    transform:translateY(12px)
  }
  .show-nav .bar {
    width:0;
    background:transparent;    
  }
  .show-nav .bar::before {
    transform:rotate(45deg);
  }
  .show-nav .bar::after {
    transform:rotate(-45deg);
  }
  
  /* Bonus - Animations */
  .show-nav .first {      
    transition: all 0.2s ease-out;
  } 
  .show-nav .second {      
    transition: all 0.4s ease-out;
  } 
  .show-nav .third {      
    transition: all 0.6s ease-out;
  } 
  .show-nav .four {      
    transition: all 0.8s ease-out;
  } 
  .show-nav .fifth {      
    transition: all 1s ease-out;
  }
  
  
}

/*  Medium device - Bonus */

@media screen and (min-width:1024px) {
  
  .logo{
    margin-left: 12%;
    font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 4px;
  }
    
  .navbar__link > a::after {
    display:block;
    content:"";
    width:0;
    height:1px;
    background:var(--navbar-color);
    transition:width .4s;
  }
  .navbar__link:hover > a::after {
    width:100%;
  }
}
  
/* bonus */
.main-content, #section2 {
  height:100vh;
}

.taphover {
    -moz-transition:all 0.3s;
    -webkit-transition:all 0.3s;
     transition:all 0.3s
 }
.taphover:hover, .taphover:active {
    -moz-transform: scale(1.05);
    -webkit-transform: scale(1.05);
     transform: scale(1.05)
 }


--------------------------------------------------------------


 
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.container{
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

body{
    height: auto;
    background-color: black;
}

.clear{
    clear: both;
}

        /*******/
    /*itc-avant-garde-gothic-pro*/

    header{
        width: 100%;
        max-width: 1100px;
        height: auto;
        margin: 0 auto;
        text-align: center;
        color: white;
    }

    header .header-img{
        aspect-ratio: 1100 / 200;
        background-image: url('../img/head2.png');
        background-repeat: no-repeat;
        background-size: 100% 100%;
    }

    header h3{
        font-family: "font/ITCAvantGardeStd-Demi", sans-serif;
        font-size: 30px;
        margin-bottom: 15px;
    }

    header p{
        font-size: 24px;
        font-style: normal;
        padding: 0 4%;
    }

        /*******/

    .linksredes{
        /*
        position: -webkit-sticky;
        position: sticky;
        float: right;
        right: 30px;
        top: 20px;
        */
        width: 100%;
        margin: 20px auto;
        text-align: center;
    }

    a.redesocial{
        margin: 0 20px;
        text-decoration: none;
    }

    .redesocial img{
        width: 40px;
        height: 40px;
        transition: all 0.5s;
    }

    .redesocial img:hover{
        transform: scale(1.2);
    }

    .linha-separamento{
        border-bottom: 5px solid rgba(204, 204, 204, 0.671);
        border-radius: 15px;
        width: 70px;
        line-height: 0.1em;
        margin: 20px auto;
    }


        /*******/

    section.sessao{
        padding: 80px 20px;
    }

    section.sessao .container{
        padding: 0px 0;
        max-width: 1000px;
        background-color: #000000;
        border-radius: 18px;
    }
    
    .banner{
        margin: 30px auto;
        float: left;
        width: 100%;
        text-align: center;
    }

    .banner .img-new{
        width: 90%;
        border-radius: 30px;
    }

    .coluna{
        display: none;
        margin: 22px auto;
        float: left;
        width: calc(100% / 4);
        text-align: center;
    }
    
    .coluna .img-produto{
        width: 70%;
    }

    .link-banner a img{
        width: 25%;
        transition: all 0.6s;
    }

    /*.link-banner a img:hover{
        transform: scale(1.1);
    }*/


    .link-produto a img{
        width: 75%;
        transition: all 0.6s;
    }

    /*.link-produto a img:hover{
        transform: scale(1.1);
    }*/
    
    .bestseller{
        font-family: "font/ITCAvantGardeStd-Demi", sans-serif;
        color: #ffffff;
        padding: 5px 5px;
        text-align: center;
        margin: 0 auto;
        margin-top: 10px;
        width: 300px;
        font-size: 20px;
        text-decoration: none;
    }
    
         .load-more{
        font-family: "font/ITCAvantGardeStd-Demi", sans-serif;
        color: white;
        padding: 5px 5px;
        text-align: center;
        margin: 0 auto;
        margin-top: 20px;

    }
    
    * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.btn-hover {
    width: 150px;
    height: 45px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    margin: 20px;
    text-align:center;
    border: none;
    background-size: 300% 100%;

    border-radius: 50px;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.btn-hover:hover {
    background-position: 100% 0;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.btn-hover:focus {
    outline: none;
}

.btn-hover.color-3 {
    background-color:#1C61FF;
    /*background-image: linear-gradient(to right, #e25d8b, #a447dd, #e25d8b, #a447dd);*/
    /*box-shadow: 0 4px 15px 0 rgba(116, 79, 168, 0.75);*/
}

        /*******/

    footer{
        width: 100%;
        padding: 10px 0;
        text-align: center;
        color: white;
        margin: 0 auto;
    }

    footer h1{

        font-family: "font/Roboto-Medium", sans-serif;
        font-size: 0.5vw;
        color:#566573;
    }

        /*******/

@media screen and (max-width: 900px){

    header{
        width: 100%;
        max-width: none;
        height: auto;
    }

    footer h1{
        font-size: 2vw;
    }
    
}

@media screen and (max-width: 560px){
    
       .banner{
        margin:5px auto;
        float: left;
        width: 100%;
        text-align: center;
    }
    

    .banner .img-new{
        width: 90%;
        border-radius: 15px;

    }
    
    .coluna{
        margin: 1px auto;
        float: left;
        width: calc(100% / 2);
        text-align: center;
    }
    
    

    .coluna .img-produto{
        width: 90%;

    }

    .link-produto a img{
        width: 95%;
    }

    footer h1{
        font-size: 2vw;
    }

}


/*
.row::after {
  content: "";
  clear: both;
  display: table;
}
*/
