@charset "utf-8";
#charutos {
	width: 100vw;
	min-height: 800px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	position: relative;
	overflow: hidden;
}
#charutos::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: url("../images/Charutos-Santo-Migliorin-BG-Principal.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));
}
.charutos-container {
	width: 90%;
    position: relative;
    display: inline-block; /* Para que o quadrado se ajuste ao conteúdo */
}
.charutos-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 75px;
    height: 75px;
    border: 1px solid yellow;
    transform: translate(50px, var(--square-y, -20px));
    z-index: -1;
    transition: transform 0.3s ease-out;
}
.charutos-title{
	max-width: 500px;
	font-size: 70px;
	padding-bottom: 50px;
}

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

@media only screen and (max-width: 600px) {
	#charutos {
		min-height: 700px;
	}
	.charutos-container {
		width: 85%;
	}
	.charutos-title{
		max-width: 350px;
		font-size: 40px;
	}
}
