@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&family=Titillium+Web:wght@200;300;400;600;700;900&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
#noticesHome,
#benefitsHome,
#homeWhatsapp, 
#customerAdvantages, 
#applicationProducts, 
#applicationSolutions{
	margin: 30px 0;
}
#homeWhatsapp {
	margin: 90px 0 30px;
}
.banner-others {
	margin: 100px 0 0;
	height: 220px;
	position: relative;
}
.banner-others img {
	height: 100%;
	object-fit: cover;
}
.whatsapp {
	position: fixed;
	bottom: 40px;
	height: 60px;
	width: 60px;
	right: 0;
	background: #009016;
	color: #fff;
	box-shadow: 1px 1px 4px #484848;
	text-decoration: none;
	border-radius: 2px 0 0 2px;
	font-size: 14px;
	transition: all .3s ease-in-out; /* Alterada a propriedade de transição */
	white-space: nowrap;
	overflow: hidden; /* Impede que o texto quebre a linha */
	z-index: 9;
}

.whatsapp:hover {
	width: 200px;
}

.whatsapp-text {
	font-size: 16px;
	position: absolute;
	left: 60px;
	top: 0;
	width: 0;
	opacity: 0;
	background: #009016;
	white-space: nowrap;
	overflow: hidden;
	display: flex;
	align-items: center;
	height: 60px;
	justify-content: center;
	transition: all .3s ease-in-out;
}

.whatsapp:hover .whatsapp-text {
	width: auto; /* Define a largura para 'auto' para que ela se expanda conforme o conteúdo */
	opacity: 1; /* Torna o texto visível durante a animação */
}
.whatsapp .icon{
	color: #fff;
	font-size: 36px;
	justify-content: center;
	display: flex;
	align-items: center;
	background: inherit;
	padding-top: 2px;
	height: 38px;
	padding-left: 24px;
	right: -1px;
	width: 38px;
}
@media (min-width: 992px) {
	#noticesHome,
	#benefitsHome {
			margin: 90px 0;
 }
}
