*{
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

.section-container{
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.background-section-one{    
    background-image: url(../assets/bg1.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
}

.background-section-three{    
    background-image: url(../assets/bg3.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
}

.section-two{
    position: relative;
    top: 50%;
	flex-wrap: wrap;
	justify-content: space-between;
    background-color: #000;
}

.produto{
	display: flex;
	background: #fff;
	flex-direction: column;
	align-items: center;
	border-radius: 20px;
	box-shadow: 0 10px 20px rgba(252, 252, 252, 0.61);
	flex-basis: 15%;
	margin-bottom: 50px;
    margin-left: 10px;
    margin-right: 10px;
}

.produto h3{
	text-align: center;
    margin: 2px 2px;
	color: #000000;
}

.produto img{
	display: flex;
    margin: 0 auto;
	height: 50%;
	width: 50%;
}

.description{
	font-size: 20px;
	text-align: center;
	color: #464646;
	margin: 10px 2px;
}

.buy{
	width: 80%;
    margin: 10px auto 10px auto;
    display: block;
    background-color: #999393;
    border: none;
    padding: 10px 0;
    border-radius: 200px;
    color: #fff;
}

.buy:hover{
	cursor: pointer;
	background-color: #303030;
}

.text-container{
    float: left;
	width: 50%;
	box-sizing: border-box;
	padding: 0 18px;
}

.text-container h1{
    color: #fff;
	text-align: center;
	font-size: 20px;
    background: #000;
	border:#830183 solid 3px;
	border-radius: 20px;
	padding: 25px;
}

.card-container{
    background: #000;
	border:#830183 solid 3px;
	border-radius: 20px;
	padding: 18px;
    max-width: 450px;
}

input{
    width: 100%;
    height: 30px;
    margin-bottom: 10px;
    text-align: center;
    border-radius: 12px;
    background: #fff;
    color: #000
}

form{
    display: grid
}

footer{
    height: 10px;
    padding: 25px;
    text-align: center;
    background-color:#0d0d0d;
    color: #fff;
}