
*{
  margin:0;
  padding:0;
  box-sizing: border-box;
}

body { 

  margin: 0; 
  font-family: Arial, Helvetica, sans-serif;
}
header{
  background-color: rgb(254, 220, 51); ;/*cor de fundo do cabeçalho*/
  width: 100%;/*largura do cabeçalho*/
  height: auto;/*altura do cabeçalho*/
  border-color: black;
  display: flex;
  flex-direction: row;
  margin: 0;
  padding: 0;
  }

  .box{
    flex-basis: 33%;
    }
    .box h1{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 3vw;
    text-align: center;
    -webkit-text-stroke-color: black;
    -webkit-text-stroke-width: 2px;
    margin-top: -50px;
    color:rgb(0, 74, 120); /*cor da letra do cabeçalho*/
    margin: 0;
    padding: 0;
    
    }
    
    
    .box img{
    width: 100px;
    height: auto;
  
    }
.zuk{ 
    background-color: rgb(0, 74, 120);

}
.cabecalho{
  width: 99.9%;
  background-color: rgb(254, 220, 51);
  display: flex;
  flex-direction: row;
}
.logotipo{
  margin-right: 5px;
  margin-left: 5px;
  width: 40%;
  height: auto;
  order: 1;
}
.logotipo figure img{
  width: 15%;
  height: auto;
  margin-left: 30px;
  padding: 0px;
}
figcaption{
  font-size: 1vw;
}




.topnav {
  overflow: hidden;
  background-color: rgb(254, 220, 51);
  width: 100%;
  order: 2;
}

.topnav a {
  float: right;
  display: block;
  color:rgb(0, 74, 120);
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 24px;
  font-weight: bold
}

.active {
  background-color: rgb(254, 220, 51);
  
}

.topnav .icon {
  display: none;
}

.dropdown {
  float: right;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 17px;    
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
  
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: 
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  position: relative;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.topnav a:hover, .dropdown:hover .dropbtn {
  background-color: lightgoldenrodyellow;
}

.dropdown-content a:hover {
  background-color: #ddd;
  color: black;
}

.dropdown:hover .dropdown-content {
  display: block;
}


@media screen and (max-width: 600px) {
  .topnav a, .dropdown .dropbtn {
    display: none;
  }
  .topnav a.icon {
    float: right;
    display: block;
  }
  
}


@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: right;
  }
  .topnav.responsive .dropdown {float: none;}
  .topnav.responsive .dropdown-content {position: relative;}
  .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }
}

.header a.active {
  background-color: dodgerblue;
  color: white;
}

.header-right {
  float: right;
}


    
    .texto{
    width: 100%;
    background-color: rgb(0, 74, 120);
    text-align: center;/*alinhar a frase "Brincadeira divertida, é diversão garantida" para o centro*/
    font-size: 50px;/*tamanho da letra da frase*/
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    background:  rgb(0, 74, 120); ;
    color: rgb(254, 220, 51); 
    -webkit-text-stroke-color: black;
    -webkit-text-stroke-width: 2px;
    margin-top: 20px;
   
 }
    .carrossel{
     text-align: center;
     margin-top: 300px;
    }

    .icon-cards {
     position: relative;
     width: 60vw;
     height: 30vw;
     max-width: 300px;
     max-height: 200px;
     margin: 0;
     color:  rgb(254, 220, 51); 
     perspective: 800px;
     transform-origin: center;
   }
   .icon-cards__content {
     position: absolute;
     width: 100%;
     height: 100%;
     transform-origin: center;
     transform-style: preserve-3d;
     transform: translateZ(-30vw) rotateY(0);
     -webkit-animation: carousel 10s infinite cubic-bezier(0.77, 0, 0.175, 1) forwards;
             animation: carousel 10s infinite cubic-bezier(0.77, 0, 0.175, 1) forwards;
   }
   .icon-cards__content.step-animation {
     -webkit-animation: carousel 8s infinite steps(1) forwards;
             animation: carousel 8s infinite steps(1) forwards;
   }
   .icon-cards__item {
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     width: 60vw;
     height: 40vw;
     max-width: 380px;
     max-height: 250px;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
     border-radius: 6px;
     transform-origin: center;
   }
   .icon-cards__item:nth-child(1) {
     background: #FDD94F;
     transform: rotateY(0) translateZ(35vw);
   }
   .icon-cards__item:nth-child(2) {
     background: #F87949;
     transform: rotateY(120deg) translateZ(35vw);
   }
   .icon-cards__item:nth-child(3) {
     background: #FBAB48;
     transform: rotateY(240deg) translateZ(35vw);
   }
   
   @-webkit-keyframes carousel {
     0%, 17.5% {
       transform: translateZ(-35vw) rotateY(0);
     }
     27.5%, 45% {
       transform: translateZ(-35vw) rotateY(-120deg);
     }
     55%, 72.5% {
       transform: translateZ(-35vw) rotateY(-240deg);
     }
     82.5%, 100% {
       transform: translateZ(-35vw) rotateY(-360deg);
     }
   }
   
   @keyframes carousel {
     0%, 17.5% {
       transform: translateZ(-35vw) rotateY(0);
     }
     27.5%, 45% {
       transform: translateZ(-35vw) rotateY(-120deg);
     }
     55%, 72.5% {
       transform: translateZ(-35vw) rotateY(-240deg);
     }
     82.5%, 100% {
       transform: translateZ(-35vw) rotateY(-360deg);
     }
   }
.carro{
  margin-top: 5%;
  margin-left: 43%;
  text-align: center;
}






.quad{
  width: 500px;
  height: 500px;
  margin-left: 6%;
  border: 6px solid rgb(254, 220, 51) ;
  border-radius: 16px;
  text-align: center;  
  background-color: rgb(215, 235, 253);
  margin-top: 50px;
  font-size: 24px;
  min-width: 300px;
  display: inline-block;
  vertical-align: top;
  font-family:system-ui;
  font-weight: bold;    
}

.retangulo{
  width: 1100px;
  height: 50px;
  margin-left: 6%;
  border: 6px solid rgb(254, 220, 51) ;
  border-radius: 16px;
  text-align: center;  
  background-color: rgb(215, 235, 253);
  margin-top: 78px;
  font-size: 28px;
  font-family:system-ui;
}

.conjunto{
  margin-left: 0px;
  margin-top: -30px;
  font-family: sans-serif;
  font-size: 24px;
}

.upa-upa{
  margin-left: 0px;
  margin-top: 0px;
  margin-left: 16px;
  font-family: Arial, Helvetica, sans-serif;
}

.vaquinha-musical{
  margin-left: 0px;
  margin-top: 0px;
  margin-left: 16px;
  font-family: Arial, Helvetica, sans-serif;
}

.motoquinha{
  margin-left: 0px;
  margin-top: 0px;
  margin-left: 16px;
  font-family: Arial, Helvetica, sans-serif;
}
.chocalho{
  margin-left: 0px;
  margin-top: 0px;
  margin-left: 16px;
  font-family: Arial, Helvetica, sans-serif;
}

.mordedor{
  margin-left: 0px;
  margin-top: 0px;
  margin-left: 16px;
  font-family: Arial, Helvetica, sans-serif;
}


.txt{
  text-align: center;
  margin-left: 5%;
  font-size: 40px;
  font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  color: yellow;
}
/*Começa a faixa etária de 2 a 6 anos*/

.caixa-registradora{
  margin-left: 50px;
  margin-top: 30px; 
  margin-left: 16px;
  font-family: Arial, Helvetica, sans-serif;
}

.playdoh{
  margin-left: 50px;
  margin-top: -30px; 
  margin-left: 16px;
  font-family: Arial, Helvetica, sans-serif;
}

.blocos{
  margin-left: 50px;
  margin-top: 60px;
  margin-left: 16px;
  font-family: Arial, Helvetica, sans-serif;
}

.lego{
  margin-left: 50px;
  margin-top: 0px;
  margin-left: 16px;
  font-family: Arial, Helvetica, sans-serif;
}

.amoeba{
  margin-left: 50px;
  margin-top: 0px;
  margin-left: 16px;
}

.genius{
  margin-left: 40px;
  margin-top: 10px;
  
}

/*Começa o 7 a 16 anos*/

.hotwheels{
  margin-left: -10px;
  margin-top: -30px;
 
}
.nintendo{
  margin-left: 50px;
  margin-top: -30px; 
  margin-left: 16px;
  font-family: Arial, Helvetica, sans-serif;
}

.uno{
  margin-left: -10px;
  margin-top: -40px;
}

.barbie-cachorrinho{
  margin-left: -10px;
  margin-top: -40px;
}

.super-banco-imobiliario{
  margin-left: -10px;
  margin-top: -40px;
}

.lego-batman{
  margin-left: -10px;
  margin-top: -40px;
}

.quad2{
  width: 600px;
  height: 400px;
  margin-left: 36%;
  border: 6px solid rgb(254, 220, 51) ;
  border-radius: 16px;
  text-align:left;  
  background-color: rgb(215, 235, 253);
  margin-top: 200px;
  font-size: 24px;
  min-width: 300px;
  display: inline-block;
  vertical-align: top;
  font-family:system-ui;
  }
  .quad3{
    width: 420px;
    height: 220px;
    margin-left: 36%;
    border: 6px solid rgb(254, 220, 51) ;
    border-radius: 16px;
    text-align:left;  
    background-color: rgb(215, 235, 253);
    margin-top: 200px;
    font-size: 24px;
    min-width: 300px;
    display: inline-block;
    vertical-align: top;
    font-family:system-ui;
    }
  .alinhar{
    margin-left: 14%;
    margin-top: 25px;
  }
  .cad{
   width:100%;
  height: 45px;
  font-size: 30px;
  font-weight: bold;
   color: rgb(0, 74, 120);
  }
  .log{
  width:28%;
  height: 45px;
  font-size: 30px;
  font-weight: bold;
  color: rgb(0, 74, 120);
  margin-left: 36%;
  }
  
  .btn-login{
    border: none;
    margin-left: 36%
  }

  .rodape{
    position: relative;
    min-height: 30vh;
    
  }
  

   
 .campo{
  font-size: 29px;
  font-weight: bold
 }

 .cadastrar{
  background-color: rgb(255, 255, 183);
  font-size: 29px;
  font-weight: bold
 }

 .logo{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content:flex-end;
    margin: 10px;
    padding: 1em;
 }
 /*.logo img{
  flex-basis: 25%;
  flex-grow: 0;
 }
 .logo p{
   flex-basis: 75%;
 }*/

 .lg{
  width: 80px;
 }

 .encomendar{
  color: rgb(0, 74, 120);

 }
 .quad3{
  width: 500px;
  height: 240px;
  margin-left: 36%;
  border: 6px solid rgb(254, 220, 51) ;
  border-radius: 16px;
  text-align: left;  
  background-color: rgb(215, 235, 253);
  margin-top: 200px;
  font-size: 24px;
  min-width: 300px;
  display: inline-block;
  vertical-align: top;
  font-family:system-ui;
  }

  .alinhar{
    color: rgb(0, 74, 120);
  }
  @media screen and (max-width: 767px){
    .box h1{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 6vw;
    }
    .box img{
    width: 70px;
    height: auto;
    }
    .menu{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 4vw;
    }
    .texto{
      font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
      font-size: 6vw;
    }
    .sobre{
      font-size: 6vw;
    }
    .quadrado{
      width: 400px;
    height: auto;
    margin-left: 40px;
    }
    .quad{
      width: 440px;
    height: auto;
    }
    .retangulo{
      width: 340px;
      height: auto;
    }
    .quad2{
      width: 317px;
    height: auto;
    margin-left: 50px;
    }
    .quad3{
      width: 340px;
      height: auto;
      margin-left: 50px;
    }
  }

  .tt{
    font-size: 25px;
    color: rgb(0, 74, 120);
    text-align: center;
    font-weight: bold;
   
  }

  .xuxu{
    width:  400px;
    height: 400px;
    background-color: #F87949;
   }

.carro::after{
    content: "";
    display: block;
    clear: both;
    margin-bottom: 100px;
}

/* .intemediario{
  display: flex;
  flex-direction: column;
  width: 99.9%;
} */
.intemediario::after {
  content: "";
  display: block;
  clear: both;
  margin-bottom: 100px;;
}


.sobre{
  text-align: center;
  font-size: 40px;
  font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  color:rgb(254, 220, 51) ;
  -webkit-text-stroke-color: black;
  -webkit-text-stroke-width: 2px;
  order: 1;
}
  
.quadrado {
  width: 95%;
  height: auto;
  border: 5px solid black;
  text-align: center; 
  line-height: 100px;
  font-size: 26px;
  margin-left: 30px;
  padding: 5px;
  color: rgb(254, 220, 51);
  background-color: rgb(0, 74, 120);
  line-height: 50px;
  order: 2;
}

footer{
  display: inline-block;
  width: 99.9%;
  text-align: center;

}

.borda{
  float: left;
  background-color: rgb(254, 220, 51);
  max-width: 30%;/*tamanho da largura do rodapé*/
  width: 252px;
  font-weight: bold; 
  height: 200px; 
  border-width: 4px;/*borda do rodapé*/
  border-style: solid;/*estilo da borda*/
  border-color: black;/*cor da borda do rodapé*/
  color: rgb(0, 74, 120);
 }

.alcina{
  width: 150px;
  margin-top: -20px;
}
  
/*@media screen and (max-width: 500px) {
  .header a {
    float: none;
    display: block;
    text-align: left;
  }
  
  .header-right {
    float: none;
  }
}/*