body{
    background-color: #ffab03;
}

/* paleta de cores: amarelo, verde, azul (um azul mais água), cores meio terrosas*/

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box; /*preenchimento e borda*/
    /*Tirando a o padding e a margin padrões*/
}
.container{
    display: flex;
     background-color: aquamarine;
     Flex: 1 1 200vw;
     flex-wrap: wrap;

}
/*---------------------------------------HEADERRRRRRRRRRRRRRRRRRRRRRRRRRRRRR-----------------------------------------------------------*/
header{
   display: flex;
      align-items: center;
      justify-content: space-between;
      background-color: #000000;
      padding: 10px 10px;
      flex-grow: 1 1 1  200px;
      height: 100%;
      width: 100%;
    
}

.logo img {
      height: 40px;
    }

    .barra-pesquisa {
      flex: 1;
      display: flex;
      justify-content: center;
      margin: 0 20px;
    }

    .barra-pesquisa input[type="text"] {
      width: 60%;
      padding: 8px 12px;
      font-size: 16px;
      border: 1px solid #ccc;
      border-radius: 4px 0 0 4px;
    }

    .barra-pesquisa button {
      padding: 8px 16px;
      background-color: #ffab03;
      color: white;
      border: none;
      border-radius: 0 4px 4px 0;
      cursor: pointer;
    }

    .icones-header {
      display: flex;
      gap: 20px;
      align-items: center;
    }

    .icones-header a {
      text-decoration: none;
      color: white;
      font-size: 16px;
    }

    .icones-header a:hover {
      text-decoration: none;
    }

    /* Ícones*/
    .icones-header a::before {
      margin-right: 6px;
    }

    .suporte::before {
      content: "📞";
    }

    .conta::before {
      content: "👤";
    }

    .carrinho::before {
      content: "🛒";
    }

    @media (max-width: 768px) {
      header {
        flex-direction: column;
        align-items: flex-start;
      }

      .barra-pesquisa {
        width: 100%;
        margin: 10px 0;
      }


      .icones-header {
        width: 100%;
        justify-content: space-around;
      }
     } 

    .logo img {
      height: 70px;
    }

    .barra-pesquisa {
          display: flex;
          align-items: center;
          max-width: 600px; /* você pode ajustar esse valor */
          width: 100%;
    }

    .barra-pesquisa input[type="text"] {
      flex-grow: 1;
      min-width: 400px; /*muda o tamanho*/
    }

    .barra-pesquisa button {
      flex-shrink: 0;
    }

    .icones-header {
      display: flex;
      gap: 20px;
      align-items: center;
    }

    .icones-header a {
      text-decoration: none;
      color: white; /*cor das letras*/
       font-size: 16px;
    }

    .icones-header a:hover {
      text-decoration: none;
    }

    /* Ícones simples com emojis (pode substituir por SVG ou Font Awesome) */
    .icones-header a::before {
      margin-right: 6px;
    }

    .suporte::before {
      content: "📞";
    }

    .conta::before {
      content: "👤";
    }

    .carrinho::before {
      content: "🛒";
    }

    @media (max-width: 768px) {
      header {
        flex-direction: column;
        align-items: flex-start;
      }

      .barra-pesquisa {
        width: 100%;
        margin: 10px 0;
      }

      .barra-pesquisa input[type="text"] {
        width: 70%;
      }

      .icones-header {
        width: 100%;
        justify-content: space-around;
      }
    }

/*---------------------------------------ACABOUUUUUUUUUUUUUUUUUUUUUUUUUUUUUU-----------------------------------------------------------*/
    /*----------------------------------------------------SECTION MENU-----------------------------------------------------------*/

    .menu{
       display: flex;
       flex-direction: row;
        padding: 15px;
       justify-content: center;
       background-color: black;
       border-top: 5px dotted gray;
       font-family:  serif;
       font-size: 15pt;
    }

    .menu div{

          padding: 5px;
          margin-left: 15px;
          width: 30vh;
          background-color: white;
          height: 40px;
          border-radius: 60%;
          color: black;
          transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .menu div:hover{
      background-color: gray;
       transform: scale(1.05); /* aumenta levemente a imagem */

    }
  

    /*----------------------------------------------------SECTION MENU FIM----------------------------------------------------------*/
/*Main e seus filhos---------------------------*/
main{
    Flex: 1;
    height: calc(110vh - 224px);
    color: white;
    text-align: center;
    
    
      background-image: url('imagens/paper.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.slider {
    display: block;
    height: 293px;
    width: 600px;
    margin: auto;
    position: relative;
    padding: 20px;
    margin-left: 80vh;
}

.slider li {
    list-style: none;
    position: absolute;
}

.slider img {
    height: auto;
    width: 55vh;
    vertical-align: top;
    
}


.slider input {
    display: none;
    
}

.slider label {
    background-color: #000;
    bottom: 10px;
    cursor: pointer;
    display: block;
    height: 10px;
    position: absolute;
    width: 10px;
    z-index: 10;
    
}

.slider li:nth-child(1) label {
    left: 142px;
}

.slider li:nth-child(2) label {
    left: 165px;
}

.slider li:nth-child(3) label {
    left: 185px;
}

.slider img {
    opacity: 0;
    visibility: hidden;
}

.slider li input:checked ~ img {
    opacity: 1;
    visibility: visible;
    z-index: 10;
}
/*Main gone----------------------------------------------------------*/


/*------------------------------------------------parcerias--------------------------------------------------------------------*/
.parce{
    height: 55vh; /*altura*/
    width: 100%; /*largura*/
    background-color: black;
    border-style: solid;
}

.p{
    display: flex;
    flex-direction: row;
    padding: 15px;
    justify-content: center;
 
}

.p div{

  padding: 5px;
  margin: 30px;
  
}



/*-------------------------------------------------------------------------------------------------------------------------------*/

nav{
    Flex: 1 1 200vw;
    align-items: center;
    justify-content: flex-end;
    background-color: burlywood
    
}

nav a{
    margin: 5%;
    font-size: 20pt;
}

section{
    background-color: white;
    flex: 1 1 100vw;
    text-align: center;
    
}

.e{
    display: flex;
    flex-direction: row; /* Elementos em linha dentro da caixa */
    justify-self: center;   /* Centraliza o conteúdo horizontalmente */
    width: 100vh;
    margin-left: 30px;
    padding: 10px;
}

.e div{
    background-color: gray;
    width: 32vw;
    height: 150px; /*Tamanho das divs*/
    margin: 5px;
    font-size: 20pt;
    justify-self: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.e div:hover{

  background: #1d44eb;
    transform: scale(1.05); /* aumenta levemente a imagem */
    font-size: 21pt;
}

div  img{
    width:auto;
    height: auto;
    border-radius: 4px;
    border: black solid;
}



a:hover {
    background: #0056b3;
  }

.linha {
    display: flex;
    flex-direction: row; /* Elementos em linha dentro da caixa */
    align-items: center;    /* Centraliza o conteúdo horizontalmente */
    padding: 10px;
    justify-self: center;
    color: black;
    justify-self: center;
}



.linha div{

    background-color: gray;
    width: 24vw;
    height: 525px;
    text-align: center;
    margin: 30px;
    justify-self: center;
    border-radius: 5%;
}


a {
    text-decoration: none;
    color: inherit;

}

.linha button{

  background-color: white;
  border-radius: 10px;
  padding: 5px;
  margin-top: 10px;
  width: 50%;
  height: 50px;
  transition: transform 0.3s ease, opacity 0.3s ease; /*transição do hover*/
}

.linha button:hover{
  background-color: #0056b3;
  transform: scale(1.05); /* aumenta levemente a imagem */
}


.nov{
   font-size: 50pt;
   text-align: center;
   padding: 15px;
   font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
   text-decoration: line-through;
}


.hove{
    width: auto;
  height: auto;
  transition: transform 0.3s ease, opacity 0.3s ease;
}




.hove:hover{
    transform: scale(1.05); /* aumenta levemente a imagem */
  opacity: 0.8; /* deixa um pouco transparente */

}

/*---------------------------------------------------------RÓDAPE----------------------------------------------------------------*/

footer{
    Flex: 1 1 100vw;
    height: 455px;
    background-color: black;
    color: white;
    text-align: center;

}

.container2{
      display: flex;
      flex-direction: row;
      justify-self: center;
      padding: 30px;

}


.us{
  margin-top: 5px;
  background-color: white;
    margin-left: 5px;
    color:black;
    border-radius: 35%;
    width: 60vh;
    height: 25vw;
}


.nice{
  font-size: 20pt;
}

.nicea{
  text-decoration: underline;
  color: blue;
}



.nicea img{
  width: 90px;
  height: 90px;

}

/*---------------------------------------------------------RÓDAPE Fim----------------------------------------------------------------*/


@media only screen  and (max-width: 923px){
    main{
        height: calc(100vh - 330px);
    }

    aside{
        flex: 1 1 100vw;
        height: 100px;
    }
}

/*---------------------------------------------------outras page------------------------------------------------------------------------------*/

.mamaMain{
   Flex: 1;
    height: 300vh;
    color: white;
    text-align: center;
    background-color: white;
    
      /*background-image: url('imagens/paper.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;*/
}

.hove2{
     width: 300px;
  height: 380px;
  padding: 5px;
    border-radius: 4px;
    border: black solid;
  transition: transform 0.3s ease, opacity 0.3s ease;
}



.hove2:hover{
     transform: scale(1.05); /* aumenta levemente a imagem */
  opacity: 0.8; /* deixa um pouco transparente */
}

.snova{
  background-color: whitesmoke;
}


.btns{
      display: flex;
      flex-direction: row;
      justify-self: center;
}

.btns button{

  background-color: white;
  border-radius: 5px;
  transition: transform 0.3s ease, opacity 0.3s ease; /*transição do hover*/
}

.btns button:hover{
  background-color: #0056b3;
  transform: scale(1.05); /* aumenta levemente a imagem */
}

/*------------------------------Login------------------------------------------*/

.login-container {
      background-color: gray;
      padding: 30px 40px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      width: 100%;
      max-width: 400px;
    }

    .login-container h2 {
      text-align: center;
      margin-bottom: 25px;
      color: black;
    }

    .login-container input[type="text"],
    .login-container input[type="password"] {
      width: 100%;
      padding: 12px 15px;
      margin: 10px 0;
      border: 1px solid black;
      border-radius: 5px;
    }

    .login-container button {
      width: 100%;
      padding: 12px;
      background-color: #ffab03;
      border: none;
      color: black;
      font-size: 16px;
      border-radius: 5px;
      cursor: pointer;
    }

    .login-container button:hover {
      background-color: #0056b3;
    }

    .login-container .esqueci-senha {
      text-align: right;
      margin-top: 10px;
    }

    .login-container .esqueci-senha a {
      color: darkblue;
      text-decoration: none;
      font-size: 14px;
    }

    .login-container .esqueci-senha a:hover {
      text-decoration: underline;
    }