/*se importa la tipografía Roboto de google fonts */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@500&family=Roboto:wght@100&display=swap');

* {
    font-family: 'Raleway', sans-serif;
    box-sizing: border-box;
}
/*BODY*/

body{
    font-size: 12px;
    margin: 0;
}

/*NAV*/

.header-menu nav {
   display: none;
}

/*HEADER*/

header {
    padding-top: 8px;
    background-color: #1c063b;
    width: 100vw;
    position: fixed;
    z-index:999;
    
}
.container-header{

    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100vw;
    height: max(80px,9vw);
    padding: 10px 0px;
}

.header-menu{
    display: none;
}

.logo {
    
    padding-top: 10px;
    padding-bottom: 15px;
    flex-grow: 0.2;
    text-align: center;
}

.logo img {
    width: 20vw;
    max-width: 150px;
   
   
}
.carrito-compra i{
    border:#f1fdf7e8 solid 2px ;
    border-radius: 25px;
    margin-right: 10px;
    color:rgb(241 253 247 / 91%);
    cursor: pointer;
    font-size: min(3vw, 25px);
    padding: 7px;
    transition: all 300ms ease;
   
    
}
/* hover carrito de compra*/

.carrito-compra i:hover{
   border: whitesmoke solid 2px ;
    transform: scale(1.1);
    color: whitesmoke;
   
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);

}

.user-login i{
   
   
    font-size: 5vw;
    margin-right: 10px;
    color:rgb(241 253 247 / 91%);
    cursor: pointer;
    font-size: min(8vw, 40px);
    padding: 7px;
    transition: all 300ms ease;

}

.user-login i:hover {
    transform: scale(1.1);
}

/*burger-menu*/

.burger-menu{
    flex-grow: 0;
    text-align: left;
    padding: 15px;
    cursor: pointer;
    font-size: 15px;
    
    }

.background-burger{
    background-color: rgb(241 253 247 / 91%);
    color: #1c063b;
    padding: 5px;
    border-radius: 5px;
    transition: all 300ms ease;
}

/* hover burger-menu*/

.background-burger:hover{
    background-color: rgb(18, 89, 230);
    color: white;
    transform: scale(1.1);
    border:  2px solid rgb(18, 89, 230);
    border-radius:25px ;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
    
}


/*Search bar*/

.search-bar{
    flex-grow: 0.6;
    margin-left: 5vw;
}

.search-bar form{
    display: flex;
    align-items: center;
}

.input-header {
        width: 90%;
        height: 6vw;
        max-height: 30px;
        margin-right: 8px;
        box-sizing: border-box;
        border: 3px solid rgb(231, 231, 203);
        border-radius: 4px;
        box-shadow: 2px 2px 4px #504f4f;
        text-align: center;
        
}

.search-bar button {
display: flex;
background-color: rgb(240, 240, 240);
color: #1c063b;
padding: min(0.6vw, 6px);
margin-right: 16px;
margin-left: 5px;
font-size: 2vw;
border: solid #bebebe ;
cursor: pointer;
border-radius: 30%;
} 

/*hover search bar*/
.search-bar button:hover{

transition: 0.5s;
transform: scale(1.1);

}

/* MAIN LOGIN-REEGISTRO*/

main{
 
    background-color: rgb(255 255 255);
    width: 100%;
    
   
}

p{
    font-size: 12px;
}
a {
    color: black;
}

h6{
    font-size: 14px;
    margin: 0;
}

h5{
    font-size: 16px;
}
    
h4 {
    font-size: 18px;
}
h2{
    font-size: 24px;
}

article {
    margin-bottom: 10px;
}

.formulario {
    width: 100%;
    padding: 10vw;
    padding-top: 12vh;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    
    border: 0px 3px 0px 3px solid whitesmoke;
   
 
}

.input-formulario {
    width: 90%;
    height: 5vh;
    padding: 12px 20px;
    margin: 8px ;
    box-sizing: border-box;
    border: 2px solid beige;
    opacity: 5px;
    border-radius: 4px;
    box-shadow: 2px 2px 4px #000000;
    display: flex;
    text-align: center;
    
}

 .submit-login {
    width: 90%;
    height: 5vh;
    padding-bottom: 10px 25px;
    
    margin: 8px ;
    box-sizing: border-box;
    background-color: #1c063b;
    border: solid 1px;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    transition: all 300ms ease;
   
    
  }

  .submit-login:hover{
    transform: scale(1.1);  
  }

  .registro h2{
      padding-top: 15px;
     
  }

  .registro h4{
     
      padding-left: 20px;
      text-align: left;
      padding-bottom: 10px;
   
  }
  article label{
      font-weight: bold;
  }

  /* FOOTER */
  footer {
    background-color: #1c063b;
    
   } 
  

  .contenedor-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    color:white;
    padding: 20px;

    
  }
  .contenedor-footer ul li{
    list-style: none;
    text-align: left;
    padding-top: 5px;
    font-size: min(3vw, 15px);
  }
  .contenedor-footer ul li a{
      color: white;
      text-decoration: none;
  }
  
    .logo-footer {
    width: 25vw;
    max-width: 160px;
  }

  .contacto{
      
      display: flex;
      flex-direction: column;
      align-items: flex-start;
  }

  .contacto h6, .contacto ul{
    padding-left: 0px
}

.social-media{
      width: 100%;
      display: flex;
    justify-content: center;
      padding: 8px;

  }
  
  .social-media-list {
      display: flex;
      gap: 2em
  }

  .social-media-list img {
      width: 50%;
      max-width: 100px;
      box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
  }
  

  /*boton whatsapp*/
  .btn-whatsapp img {
    display:block;
    width:50px;
    height:50px;
  
    position: fixed;
    right:20px;
    bottom:20px;
    z-index: 999;



}

@media (min-width: 361px) {

    /*HEADER*/

    .header-menu{
            display: flex;
            justify-content: center;
            height: 8vw;
            max-height: 40px;
            background-color: rgb(241 253 247 / 91%);
            box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
        
        
        }
    .menu{
            display: flex;
                      
        }
         
    .burger-menu{ 
        display: none;
    }

    .logo {
        padding-left: 10px;
    }
    .header-menu nav {
            display: flex;
           
        }
        
    .header-menu nav > ul {
            
            display: flex;
            margin:0px;
            padding: 0px;
            
        }
    .header-menu nav > ul > li{
            display: flex;
            list-style: none;
            text-align: center;
        }
        
    .header-menu nav > ul > li >a {
            margin: 0px 5vw;
            text-decoration: none;
            display: flex;
            color: #1c063b;
            align-items: center;
            padding: 14px 0px;
            text-transform: uppercase;
            font-size: min(2vw, 12px);
            transition: all 300ms ease;
            font-weight: bold;
           
        }
    .header-menu nav > ul > li >a:hover{
            color:white;
            transform: scale(1.2);
            border-radius: 10px;
            padding: 5px;
        }
    
        /*hasta aca es el header*/

        .formulario {
            padding-top: 20VH;
        }
}

/* media  Tablet*/

@media (min-width: 600px) {
    

    .formulario{
        display: flex;
        flex-direction: row;
        padding-top: 20vw ;
        justify-content: space-around;
        
        
    }
   .formulario-login form{
    padding-bottom: 30px; 
     
    }

   


   
 

}

@media (min-width: 761px) {

    section{

        display: flex;
        flex-direction: row;

     
    }
    /* FOOTER */

    .logo-footer {
        width: 25vw;
        display: flex;
        justify-content: center;
        }

        
        .contacto h6, .contacto ul{
           
            padding-left: 0px
        }

        .social-media {
            width: 30%;
            
        }

        .social-media-list {
            gap: 1em;
        }

        .social-media-list li {
            text-align: center;
            width: 30%;
        }


   

}

@media (min-width: 1200px) {

    
    section{

        display: flex;
        flex-direction: row;

     
    }

}




