/* Breakpoints */
@media (min-width: 1400px) {
	.container {
		max-width: min(85%, 1640px);
	}
}

@media (min-width: 993px) and (max-width: 1279px) {
	/* Container */
	.container {
		max-width: 85%;
	}
}
/* End Breakpoints */

@media (min-width: 1280px) {
	.mobile-nav-show {
		display: none;
	}
}

@media (max-width: 1279px) {
	#navbar_dir {
		top: 125px;
		display: none;
	}

	.navbar > ul > li > a:before {
		display: none;
	}

	.mobile-nav-active #navbar_dir.navbar:before {
		background-color: transparent;
	}

	.mb_only {
		display: block;
	}

	.navbar {
		position: fixed;
		top: 0;
		right: -100%;
		width: 100%;
		max-width: 300px;
		bottom: 0;
		transition: 0.3s;
		z-index: 9997;
	}

	.navbar ul {
		display: block;
		position: absolute;
		inset: 0;
		padding: 50px 0.5rem 100px 0.5rem;
		margin: 0;
		background: var(--color-white);
		overflow-y: auto;
		transition: 0.3s;
		z-index: 10001;
	}

	.navbar.scrolled ul {
		display: block;
		position: absolute;
		inset: 0;
		padding: 50px 0.5rem 100px 0.5rem;
		margin: 0;
		background: var(--color-white);
		overflow-y: auto;
		transition: 0.3s;
		z-index: 10001;
	}

	#header .header-social-desktop {
		display: none;
	}

	#header .navbar-social-mobile {
		display: block;
		position: absolute;
		left: 0;
		right: 0;
		bottom: 28px;
		z-index: 10002;
		padding: 0 20px;
	}

	#header .navbar-social-mobile .social .styled-icons {
		position: static;
		inset: auto;
		display: flex;
		justify-content: center;
		gap: 0.75rem;
		margin: 0;
		padding: 0;
		background: transparent;
		overflow: visible;
		transition: none;
		z-index: auto;
	}

	#header .navbar-social-mobile .social .styled-icons li {
		list-style: none;
	}

	#header .navbar-social-mobile .social .styled-icons a,
	#header .navbar-social-mobile .social .styled-icons a:focus {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 44px;
		height: 44px;
		padding: 0;
		border-radius: 50%;
		background-color: var(--color-grey);
	}

	#header .navbar-social-mobile .social .styled-icons a i,
	#header .navbar-social-mobile .social .styled-icons a:focus i {
		margin-left: 0;
		font-size: 22px;
		line-height: 1;
		color: var(--color-white);
	}

	.navbar.scrolled {
		.btn-default {
			a {
				color: var(--color-white);
			}
		}
	}

	.navbar a,
	.navbar a:focus {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 10px 20px;
		font-size: 15px;
		font-weight: 600;
		color: var(--color-purple);
		white-space: nowrap;
		transition: 0.3s;
	}

	.navbar.scrolled a,
	.navbar.scolled a:focus {
		color: var(--color-purple);
	}

	.navbar .current-menu-item a,
	.navbar.page .current-menu-item a {
		color: var(--color-secondary);
	}

	.navbar > ul > li {
		padding: 0;
	}

	.navbar a i,
	.navbar a:focus i {
		font-size: 12px;
		line-height: 0;
		margin-left: 5px;
	}

	.navbar a:hover,
	.navbar .active,
	.navbar .active:focus,
	.navbar li:hover > a {
		color: var(--color-red);
	}

	.navbar .button,
	.navbar .button:focus,
	.navbar.scrolled .button,
	.navbar .button:focus,
	.navbar.page .button,
	.navbar.page .button:focus {
		margin: 0 20px;
	}

	.navbar .dropdown ul,
	.navbar .dropdown .dropdown ul {
		position: static;
		display: none;
		padding: 10px 0;
		margin: 10px 20px;
		transition: all 0.5s ease-in-out;
		border: 1px solid #19335c;
	}

	.navbar .dropdown > .dropdown-active,
	.navbar .dropdown .dropdown > .dropdown-active {
		display: block;
	}

	.navbar .menu-item-has-children ul,
	.navbar .menu-item-has-children .menu-item-has-children ul {
		position: static;
		display: block;
		padding: 10px 0;
		box-shadow: none;
		margin: 0px 20px;
		transition: all 0.5s ease-in-out;
		border: none;
		visibility: visible;
		opacity: 1;
	}

	.mobile-nav-active .navbar {
		right: 0;
	}

	.mobile-nav-hide {
		color: black;
		font-size: 32px;
		cursor: pointer;
		line-height: 0;
		transition: 0.5s;
		position: fixed;
		left: 90%;
		top: 25px;
		z-index: 9999;
	}
}

/* Mobile */
@media (min-width: 320px) and (max-width: 992px) {
	.navbar .current-menu-item a:before,
	.navbar.page .current-menu-item a:before {
		visibility: hidden;
		width: 0;
	}

	section {
		padding-block: 2.5rem;
	}

	#header {
		height: 60px;

		& .logo img {
			height: 55px;
		}
	}

	#hero {
		margin-top: 60px;


	}

	#sobre {
		padding-bottom: 0;

		& .row {
			gap: 0;
		}

		& .content {
			z-index: 3;

			& .box {
				position: relative;
				top: -4rem;
				width: 100%;

				transform: unset;
			}
		}

		& .images {
			position: relative;
			z-index: 1;
			top: -6rem;

			flex-direction: row;

			& .image2,
			& .image3 {
				width: 50%;
			}

			gap: 0;

			& img {
				aspect-ratio: 9 / 14;
			}
		}
	}

	#wa_button {
		bottom: 0px;
		right: -45px;
	}
}
