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

.banner-container {
	width: 90%;
    position: relative;
    display: inline-block;
}
.banner-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 75px;
    height: 75px;
    border: 1px solid #cbbba0;
    transform: translate(50px, var(--square-y, -20px));
    z-index: -1;
    transition: transform 0.3s ease-out;
}
.banner-title{
	max-width: 500px;
	font-size: 50px;
	padding-bottom: 50px;
	line-height: 1.3;
}

@media only screen and (max-width: 900px) {
	.banner-container {
		width: 85%;
	}
}

@media only screen and (max-width: 600px) {
	#banner {
		min-height: 600px;
		align-items: flex-end;
	}
	.banner-container {
		width: 85%;
	}
	.banner-title{
		max-width: 300px;
		font-size: 30px;
	}
}
/* PERSONALIZADOS */
#bn-home, #bn-importados, #bn-nacionais {
	width: 100vw;
	min-height: 800px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	overflow: hidden;
	padding-top: 100px;
}
#bn-home::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: url("../img/Barao-do-Charuto-Charutos-Online.jpg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	transition: transform 0.3s ease-out;
	z-index: -1;
	transform: scale(var(--bg-scale, 1));
}
#bn-importados::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: url("../img/Barao-do-Charuto-Charutos-Importados-Online.jpg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	transition: transform 0.3s ease-out;
	z-index: -1;
	transform: scale(var(--bg-scale, 1));
}
#bn-nacionais::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: url("../img/Barao-do-Charuto-Charutos-Nacionais-Online.jpg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	transition: transform 0.3s ease-out;
	z-index: -1;
	transform: scale(var(--bg-scale, 1));
}