@media only screen and (max-width: 1600px) {

}

@media only screen and (max-width: 1200px) {

	:root{
		--wp--preset--spacing--40: 30px;
	}

	header {
		height: 75px;
	}

	body:not(.home) main{
	    padding-top: 100px;
	}

	header #btn-menu {
		z-index: 999;
		width: 32px;
		height: 28px;
		padding: 0;
		border: 0;
		background-color: transparent;
		display: flex;
		gap: 8px;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		position: relative;
		cursor: pointer;
	}

	header #btn-menu span,
	header #btn-menu::before,
	header #btn-menu::after{
	  background-color: #F8F4E3;
	}

	header #btn-menu span,
	header #btn-menu::before,
	header #btn-menu::after {
		content: '';
		width: 100%;
		height: 2px;
		transition: all 280ms ease;
		position: absolute;
		left: 0;
	}

	header #btn-menu::before {
		top: 5px;
	}

	header #btn-menu::after {
		bottom: 5px;
	}

	header.open #btn-menu span {
		background-color: white;
		opacity: 0;
	}

	header.open #btn-menu::before {
		background-color: white;
		transform: rotate(45deg);
		top: 50%;
	}

	header.open #btn-menu::after {
		background-color: white;
		transform: rotate(-45deg);
		top: 50%;
	}

	header .menu-principal-container {
		right: -100%;
		display: flex;
		position: fixed;
		background-color: #6a0f24a9;
		top: 0;
		width: 100%;
		min-height: 100vh;
		align-items: end;
		justify-content: start;
		transition: all 300ms ease;
		flex-direction: column;
		padding: var(--wp--preset--spacing--40);
	}

	header .menu {
		padding-top: 80px;
		gap: 30px;
		display: flex;
		flex-direction: column;
		align-items: end;
		justify-content: center;
	}

	header .menu li a{
		color: white;
	}
		
	header .menu li a:hover,
	header li.current-menu-item a{
	    color: var(--texto);
	}

	header #logo {
		width: 11vw;
	}

	header.open .menu-principal-container {
		right: 0;
	}

	.wp-block-post-content {
		margin-top: 75px;
	}

}

@media only screen and (max-width: 920px) {

	body.home .wp-block-cover:first-child span.wp-block-cover__background{
		opacity: 0.8 !important;
	}
	.post-blog{
	    flex-direction: column;
	    gap: 50px; 
	}
	.post-blog .post-sidebar {
		max-width: 100%;
	}

}


@media only screen and (max-width: 768px) {

	:root{
		--wp--preset--spacing--40: 20px;
	}


}