@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Frank+Ruhl+Libre:wght@300..900&display=swap');


@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

:root{
    --cor1: #325c58;
    --cor2:#5a5857;
    --cor3:#493328;
    --cor4: #faebd7;
    --cor5: #d15c21;

    --font-principal: Oswald, sans-serif;
    --font-secundaria: Playfair Display, sans-serif;
}

body{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 1em;
    background-color: #E7E7E7;
    width: 100vw;
    height: 100vh;
    overflow-x: hidden;
}

header{
    background-color: var(--cor1);
    height: 60px;
    text-align: center;
    width: 100vw;
    


}

nav{
    height: 20%;
}

header > nav> #linklogo{
    display: inline;
    width: 100vw;
    
    
}

header > nav > #linklogo > a > #flogo{
    width: 150px;
   
}
.menu-btn {
    position: absolute;
    top: 30px;
    right: 20px;
    z-index: 999;
    cursor: pointer;
  }
  
  .menu-btn span {
    display: block;
    width: 30px;
    height: 3px;
    background-color:  #ffff;
    margin-bottom: 5px;
  }
  
  .menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #181717;
    transition: left 0.3s ease;
    z-index: -1; 
  }
  
  .menu.open {
    left: 0;
    z-index: 999; 
  }
  
  .menu ul {
    position: absolute;
    top: 50%;
    list-style: none;
    padding: 0;
    transform: translate(0%,-50%);
    margin-left: 20px;
  }
  
  .menu ul li {
    padding: 15px;
    font-family: var(--font-principal);
    font-size: 1.5em;
    text-align: left;
    
  }
  
  .menu ul li a {
    text-decoration: none;
    color: white;
  }

  .menu ul li a:hover {
    color: var(--cor5);
  }
  
  .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 40px;
    cursor: pointer;
    color: #ffff;
  }
  
main{

}


#floja{
    display: block;
    width: 100%;
    height: 100%;
 
}

.sessaoloja{
    display: flex;
    flex-wrap:wrap;
    justify-content:center;
    width: 100%;
    height: 100%;

}

.sessaoloja >.produtoitem{
   
    height: 470px;
    width: 300px;
    margin:20px;
}

.sessaoloja > .produtoitem > .fitem{
    display: flex;
    background-color: #E8E0D7;
    width: 300px;
    height: 300px;
    border: #325c58 1px solid;
    overflow: hidden;
}
.tituloitem{
    font-family: var(--font-principal);
    text-align: cleft;
    font-size: 1.2em;
    font-weight: 500;
    margin: 5px 10px;
}

.descricaoitem{
    font-family: var(--font-principal);
    font-weight: 300;
    text-align: justify;
    margin: 0px 10px;
 
}
.msg{
    display: none;
    font-family: var(--font-principal);
    font-size: 1.5em;
    height: 40px;
    margin: 10px;
    text-align: center;
    border: #E8E0D7 1px solid;
    background-color: #325c58;
    color: white;
    cursor: auto;

    
}


.precoitem{
    font-family: var(--font-principal);
    font-size: 1.5em;
    height: 40px;
    margin: 10px;
    text-align: center;
    border: #325c58 1px solid;
    cursor: auto;
   
}

.titulofotosessao{
    background-color: #325c58;
    height: 600px;
}

#normal{
    background-image: url(../imagens/acessorios-loja3p.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    width: 100%;
    height: 100%;
}

section{

}

footer{
  
    background-color: rgb(246, 246, 247);
    padding: 40px 0px;

  
   
}

footer h3{
    color: var(--cor1);
}
.sessao-footer{
    display: flex;
    margin-left: 5%;
    justify-content: space-between;
    flex-direction: column;
    width: 100%;
    
    
}

.sessao-footer  h3,li, p ,a {
    margin-bottom: 10px;
   
}

.sessao-footer div{
    margin-bottom: 15px;
}

footer ul, a{
    list-style-type: none;
    text-decoration: none;
    color: black;
    font-weight: 500;
}
.endereco{
    font-size: 1em;
    margin-left: 20px;
}

h3{
    color: var(--cor2);
}


.links-uteis > li > a:hover{
    color: var(--cor5);
}

.nav-footer{
  margin: 25px 0px;
}

.form {
  
  width: 300px;
  font-size: 1.125rem;
}

.form label,
.form input,
.form textarea,
.form button {
  display: block;
  width: 100%;
}

.form label {
  color: black;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.form input,
.form textarea {
  font: inherit;
  padding: 0.8rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 8px;
  transition: border-color, box-shadow 0.2s;
}

.form textarea {
  min-height: 7rem;
  resize: vertical;
}

.form input:hover,
.form input:focus,
.form textarea:hover,
.form textarea:focus {
  outline: none;
  border-color: var(--cor1);
  box-shadow: 0 0 0 2px var(--cor1);
}

.form button {
  display: block;
  padding: 1rem;
  background: var(--cor1);
  color: #fff;
  font: inherit;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.2s;
}

.form button:hover,
.form button:focus {
  outline: none;
  background: var(--cor5);
}

.contato-footer a{
    text-decoration: none;
    color: white;
}

.contato-footer a:hover{
    color: var(--cor1);
    font-weight: 600;
    font-size: 0.9em;
}

.contato-footer{
    background-image: linear-gradient(45deg, #325C58 20%, #29887e);
    border: none;
    width: 120px;
    height: 40px;
    border-radius: 10px;
    margin-top: 15px;
    cursor: pointer;
}


.contato-footer:hover{
    background-image: linear-gradient(45deg, #fd5000 20%, #f57b56);
}

.divisoria{
    display: block;
    width: 90%;
    height: 1px;
    background-color: #000000;
    margin: 10px auto;
}