@charset "utf-8";
/*CSS Document*/

* {
    text-decoration: none;
    box-sizing: border-box;
}

body, html {
    width: 100%;
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    color: #333;
    margin: 0 auto;
}

nav {
    width: 100%;
    background-color: #333;
    height: 8%;
}
.logo {
    width: 20%;
    padding-left: 1%;
    float: left;
}
.menu{
    float: left;
    width: 60%;
    text-align: center;
}
.menu a{
    color: #fff;
    padding: 15px 20px;
    display: inline-block;
    position: relative;
    z-index: 1;
    transition: 0.3s;
}
.menu a::before{
    content: "";
    width: 100%;
    height: 0;
    background-color: #ccc;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    transition: 0.4s;
}
.menu a:hover::before{
    height: 100%;
}
.menu a:hover{
    color: #333;
}
.busca{
    float: right;
    text-align: right;
    width: 20%;
    padding-right: 1%;
    margin-top: 0.7%;
}
.busca input {
    padding: 3%;
    border: none;
    border-radius: 0 10px 10px 0;
    outline: none;
}
.busca button {
    background-color: #fff;
    border: none;
    padding: 3%;
    border-radius: 10px 0 0 10px;
    cursor: pointer;
}
header {
    width: 100%;
    height: 65%;
    background: radial-gradient(#eee 0%, #999 100%);
    position: relative;
}
.tenis {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 3%;
    transition: 0.5s;
}
.box {
    width: 28%;
    background-color: #eee;
    position: absolute;
    top: 12%;
    padding: 5px 20px;
    font-size: 18px;
    left: 3%;
    line-height: 22px;
    border-radius: 10px;
}
.cores {
    width: 28%;
    position: absolute;
    background-color: #eee;
    right: -10%;
    top: 44%;
    transform: rotate(90deg);
    border-radius: 30px;
    z-index: 3;
}
.cores p {
    margin: 10px;
    margin-left: 20px;
    color: #888;
}
.cinza, .azul, .rosa, .aqua, .laranja {
    width: 2%;
    height: 11%;
    position: absolute;
    right: 4.8%;
    cursor: pointer;
    border-radius: 6px;
    z-index: 2;
    transition: 0.3s;
}
.cinza {
    background-color: #777;
    top: 24%;
}
.azul {
    background-color: #3D88CE;
    top: 37%;
}
.rosa {
    background-color: #DB2EB0;
    top: 50%;
}
.aqua {
    background-color: #40C0C4;
    top: 63%;
}
.laranja {
    background-color: #EDA200;
    top: 76%;
}
.cinza:hover, .azul:hover, .rosa:hover, .aqua:hover, .laranja:hover {
    width: 3%;
}
.cinza:hover ~ .tenis {
    filter: grayscale(1);
}
.azul:hover ~ .teni {
    filter: hue-rotate(140deg) brightness(0.7);
}
.rosa:hover ~ .tenis {
    filter: hue-rotate(-110deg) brightness(0.7);
}
.aqua:hover ~ .tenis {
    filter: hue-rotate(110deg) brightness(0.7);
}
.laranja:hover ~ .tenis {
    filter: hue-rotate(-40deg);
}
.galeria {
    width: 100%;
    background-color: #333;
    height: 260px;
    padding: 20px;
}
.galeria article {
    width: 23%;
    float: left;
    margin: 0 1%;
    text-align: center;
    border: 5px solid #fff;
    height: 220px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}
.galeria article img {
    height: 100%;
    transition: 0.4s;
}
.galeria article p {
    position: absolute;
    width: 100%;
    background-color: #fff;
    top: 30%;
    padding: 3%;
    font-size: 20px;
    left: -100%;
    transition: 0.5s;
}
.galeria article:hover img {
    transform: scale(1.2);
    filter: grayscale(1) blur(3px);
}
.galeria article:hover p {
    left: 0;
}
.loja {
    width: 100%;
    height: 65%;
    position: relative;
}
.descriloja {
    width: 22%;
    float: left;
}
.textoloja1 {
    font-size: 18px;
    padding-left: 5%;
    margin: 0;
    line-height:20px;
    margin-top:4%;
}

.textoloja2 {
    background-color: #333;
    color: #fff;
    font-size: 19px;
    font-weight: lighter;
    padding: 5% 10%;
    margin-top: 3%;
    line-height: 20px;
    width: 88%;
}

.prod {
    width: 14%;
    float: left;
    text-align: center;
    height: 100%;
    margin-left: 1.5%;
    margin-top: -0.5%;
}

.prod p {
    background-color: #333;
    color: #fff;
    padding: 4%;
    cursor: pointer;
    border-radius: 10px;
}

.prod div {
    width: 100%;
    cursor: pointer;
    height: 120px;
    overflow: hidden;
    transition: 0.5s;
}

.prod div:hover, .prod p:hover ~ div {
    height: 90%;
}

.slogan {
    width: 100%;
    position: absolute;
    font-size: 70px;
    text-align: center;
    font-weight: 100;
    bottom: 0;
    transition: 0.6s;
}

.prod:hover ~ .slogan {
    opacity: 0;
    z-index: -1;
}

.news {
    width: 100%;
    height: 26%;
    background-color: #ccab12;
    margin-top: 2%;
}

.news article {
    width: 50%;
    float: left;
}

.news article p {
    margin: 0;
    font-size: 20px;
    margin-left: 20%;
    margin-top: 5%;
}

.news article form {
    width: 60%;
    margin: auto;
    margin-top: 9%;
}

.news article form input {
    width: 80%;
    padding: 4%;
    border: none;
    outline: none;
    border-radius: 50px 0 0 50px;
}

.news article form button {
    border: none;
    background-color: #333;
    color: #fff;
    border-radius: 0 50px 50px 0;
    padding: 4%;
    cursor: pointer;
}

footer {
    width: 100%;
    height: auto;
    padding: 2%;
    background-color: #333;
    color: #999;
}

footer a {
    color: #666;
    font-size: 20px;
}

footer a:hover {
    color: #fff;
}

.social {
    width: 20%;
    float: left;
    text-align: center;
}

.end {
    width: 64%;
    float: right;
    text-align: right;
}

.rodape {
    clear: both;
    border-top: 1px solid #fff;
    padding-top: 1%;
    margin-top: 7%;
    text-align: center;
    margin-bottom: 0;
}