.btn-ecommerce, .btn-app, .btn-ofertas {
    width: 65px;
    height: 65px;
    text-decoration: none;
    color: #fff;
    background: #0069b4;
    border:solid #fff 3px;
    border-radius: 100%;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
	flex-direction: column;
    transition: 1s ease;
}

.btn-ecommerce p, .btn-ofertas p, .btn-app p {
	font-size:9px;
	margin:0;
}

.logo {
    width:75px;
}

.e-commerce-header {
   height:38px;
   padding-top: 8px;
   display:flex;
   justify-content:space-around;
   background: #887CC8;
   padding: 7px 0px;
	}

.e-commerce img {
	margin-left: 219px;
	}

.e-commerce-header p {
    text-decoration: none;
    color: #fff;
	text-align: left;
    font-size: 18px;
    white-space: nowrap;
    margin: 5px 5px 0 17px;
}

.box-header {
	display:flex;
	flex-direction:row;
	justify-content:space-evenly;
	align-items:center;
	background-size:cover;
	background-color: #ffff;
}

.button {
    padding: 7px 20px;
    background-color: #e8308a;
    color: #fff;
    border-radius: 37px;
	text-decoration: none;
    font-weight: 800; 
}

.social-links {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.social-links img {
    width: 24px;
}


.item-categoria {
    width:10%;
    display:flex;
    justify-content: center;
    align-items: center;
}

.search-container {
    border: 1px solid #888;
    border-radius: 30px;
    height: 40px;
    padding-right: 1px;
    padding-left: 1px;
    cursor: pointer;
	}

form div input {
    border: 0px solid #ededed00;
    border-radius: 30px;
	width: 50vw;
    height: 36px;
    padding-right: 6px;
	padding-left: 20px;
}

form div input[type="submit"] {
	background: url(https://blog.appspid.com.br/wp-content/uploads/icons/search-icon.svg) no-repeat;
    background-size: 23px 21px !important;
    background-position: 0px 4px !important;
    width: 10px;
	position: relative;
    cursor: pointer;
	bottom: 34px;
	left: 48vw;
}

.lista-header {
    width: 42vw;
    height: 100%;
	display:flex;
	flex-direction:column;
	align-items:center;
    justify-content: space-evenly;
}

.box-texto-blog {
    width:140px;
	display:flex;
    justify-content: space-between;
	align-items: center;
    flex-direction:row;
	margin: 0px;
}

.texto-blog {
	font-family: 'Morning Holiday', Montserrat, sans-serif;
	font-size: xxx-large;
	color: #ff008e;
}

.box-logo {
	height: 100%;
    display: flex;
    justify-content: space-between;
}


.nav-links {
   height:50px;
   display:flex;
   flex-direction:row;
   justify-content:space-around;
   list-style:none;
   background: #ffffff;
    
}

.categorias-nav {
    font-size:13px;
    color:#020202;
    text-decoration:none;
    font-weight:450;
    transition: 1s ease;
}

.categorias {
    font-size:13px;
    color:#ffff;
    text-decoration:none;
    font-weight:450;
    transition: 1s ease;
}

.categorias:hover {
    font-size: 14px;
    font-weight: 800;
}

.post-title {
	width:25vw;
}

@media (min-width: 769px) {
    .hamburger {
        display: none;
    }
  }

@media (max-width: 768px) {
	.e-commerce-header {
    	width: 100%;
        padding: 25px 0;
        background: #333333;
        align-items: center;
        flex-direction: column;  
	}

	.e-commerce img {
	margin-left: 20px;
	}
	.e-commerce-header li {
    	margin:0 10px 0 0;
	}
	
	.box-texto-blog {
		width:100px;
	}
	
	.texto-blog {
    	font-size: xx-large;
	}
	
	.logo {
		width:60px;
	}
	

	.search-container {
    	width: 100%;
		border:none;
	}
	
	.outros-links {
	    justify-content: space-between;
	    flex-direction:row;	
	}

    .button {
        display: block;
        text-align: center;
        width: 45%;
        margin: 10px auto;
    }

	
	form div {
		height:10px;
	}
	
    form div input {
		width:100%;
		font-size:10px;
		border-radius:unset;
		border:solid 1px;
    }
    
    form div input[type="submit"] {
		bottom: 34px;
   	    left: 85vw;
		border:none;
    }
    
    .lista-header {
        width:100%;
		height:auto;
    }
    
    
    .link-ecommerce {
        font-size:2vw;
    }

    .social-links img {
        width:3vw;
    }
    
    .btn-ecommerce, .btn-app, .btn-ofertas {
        border:none;
    }
	
	
    .btn-ecommerce:hover, .btn-app:hover, .btn-ofertas:hover {
        background-color:transparent;
    }
	
	.link-header:hover {
        filter:brightness(0);
	}
	
    
    .box-links-spid {
        justify-content: space-between;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        background-color: #333;
        width: 100%;
        text-align: center;
        transition: max-height 0.3s ease-in-out; 
    }
    
    .nav-links.show {
        position:relative;
        top:0;
        height:50vh;
        max-height: 50vh;
        display: flex;
        align-items:center;
    }

    .hamburger {

        height:5vh;      
        background-color:#887CC8;
        display: flex;
        justify-content:center;
        align-items:center;
    }
	
	.hamburger span {
        color: #fff;
	}
    
    .categorias {
        font-size:7px;

    }

	.categorias-nav {
        color: #fff;
	} 
    
    .item-categoria {
        width:100%;
        height:100%;
        background-color: #e8308a;
        border:solid #ffffff 1px
    }
	
	.post-title {
		width:95vw;
	}
}