* {
    box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: "Urbanist", sans-serif;
  	font-optical-sizing: auto;
  	font-weight: 400;
  	font-style: normal;
    line-height: 1.5;
    color: #333;
	--main_color:#485a72;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}
.whatsapp-btn{
	position: fixed;
	z-index: 1000;
	border-radius: 50%;
	overflow: hidden;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
	width: 70px;
	height: 70px;
	margin-right: 20px;
	margin-bottom: 40px;
	right: 0;
	bottom: 0;
	transition: filter 0.3s ease;
}
.whatsapp-btn:hover{
	filter: brightness(0.9);
}
.whatsapp-btn img{
	width: 100%;
	height: 100%;
}
.section_title{
	font-family: "Libre Baskerville", serif;
	margin: 0;
	margin-bottom: 60px;
	text-align: center;
	font-size: 1.9em;
	position: relative;
}
.section_title::before{
	content:"";
	position: absolute;
	bottom: -5px;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 60%;
	height: 2px;
	background-color: var(--main_color);
}