 .banner{
	width: 100%;
	background-color: #000;
}
.banner img{
	width: 100%;
	object-fit: contain;
}
.bn-d{
	display: flex;
}
.bn-m{
	display: none;
}

/* ----- CONTEUDO 1 ----- */
.conteudo1{
	width: 100%;
	padding: 5% 0 7%;
	background-color: #707070;
	background-image: url('../imagens/planos/bg2.png');
	background-repeat: no-repeat;
	background-size: 100% 100%;
	background-position: center center;
}
.conteudo1 .content{
	flex-direction: column;
}
.conteudo1-select{
	width: 70%;
	margin: 0 auto;
	justify-content: space-between;
	position: relative;
}
.select1{
	width: 48%;
	height: 6vh;
	border: 1px solid var(--verde);
	border-radius: 30px;
}
.select2{
	width: 48%;
	height: 6vh;
	border: 1px solid var(--verde);
	border-radius: 30px;
}
.conteudo1-select .select1 span, .conteudo1-select .select2 span{
	background-color: var(--verde);
	color: #fff;
	width: 40%;
	height: 100%;
	border-top-left-radius: 30px;
	border-bottom-left-radius: 30px;
	font-size: 1.2vw;
	display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 3px;
}
.conteudo1-select select{
	background-color: transparent;
	color: #fff;
	width: 60%;
	height: 100%;
	border-top-right-radius: 30px;
	border-bottom-right-radius: 30px;
	font-size: 1.2vw;
	display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 3px;
    padding-left: 5%;

    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background-image: url(../imagens/horario/select.png);
    background-repeat: no-repeat;
    background-position: 90% 58%;
    background-size: 10%;
}
.conteudo1-select select option{
	color: #000;
}
.select2:hover ~ .select-bg{
	display: flex;
}
.select-bg{
	width: 20%;
    flex-wrap: wrap;
    display: none;
    position: absolute;
    right: 10%;
    top: -225%;
}
.select-balao{
	display: flex;
    margin: 0 auto; 
    width: 100%;
    background-color: #34d2de;
    border-radius: 15px;
    height: auto;
    padding: 20px 0;
    position: relative;
}
.select-balao:after{ /*Triangulo*/
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    /*Faz seta "apontar para baixo. Definir o valor como 'top' fará ela "apontar para cima" */
    /*Aqui entra a cor da "aba" do balão */
    border-top: 20px solid #34d2de;
    bottom: -20px; /*localização. Experimente alterar para 'bottom'*/
    left: 46%;
}
.select-bg span{
	color: #fff;
    font-size: 0.7vw;
    line-height: 2;
    text-align: center;
    width: 90%;
    margin: 0 auto;
}

/* ----- CONTEUDO 2 ----- */
.conteudo2{
	width: 100%;
	margin-top: 5%;
}
.conteudo2 .content{
	flex-direction: row;
	justify-content: space-evenly;
}
.box1{
	width: 31%;
	margin-bottom: 6%;
	height: fit-content;
	border: 1px solid #fff;
	border-radius: 20px;
	flex-direction: column;
	align-items: end;
}
.box1:hover{
	margin-top: 2%;
	border: 2px solid #fff;
	-webkit-box-shadow: 0px 0px 29px 7px rgba(169,207,70,0.48); 
	box-shadow: 0px 0px 29px 7px rgba(169,207,70,0.48);
}
.box1-topo{
	width: 100%;
	padding: 2% 0;
	background-color: var(--verde);
	text-align: center;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	justify-content: center;
}
.box1-topo span{
	font-size: 1.35vw;
	color: #fff;
	letter-spacing: 4px;
	font-weight: 500;
}
.box1-info{
	padding: 6% 6%;
	width: 100%;
	justify-content: center;
}
.box1-info p{
	width: 100%;
	font-weight: 500;
	color: #fff;
	font-size: 0.80vw;
	text-align: center;
	letter-spacing: 4px;
}
.box1-info h3{
	color: var(--verde);
	font-size: 0.90vw;
	font-weight: 500;
	letter-spacing: 4px;
	text-align: center;
}
.box1-info div{
	width: 100%;
	text-align: center;
	justify-content: center;
	flex-wrap: nowrap;
	align-items: center;
}
.box1-info div h2{
	font-size: 3.5vw;
    font-weight: 900;
    color: #fff;
    width: fit-content;
}
.box1-info div span{
	color: var(--verde);
	font-size: 1.5vw;
	font-weight: 500;
	margin-right: 4%;
}
.box1-itens{
	padding: 0 6%;
	flex-direction: column;
	width: 100%;
	text-align: center;
	justify-content: center;
	margin-bottom: 3%;
}
.box1-itens span{
	width: 100%;
	font-weight: 500;
	color: #fff;
	font-size: 0.90vw;
	text-align: center;
	margin-bottom: 4%;
}
.box1-botao{
	width: 100%;
	padding: 0 6%;
	justify-content: center;
	text-align: center;
	margin-bottom: -5%;
}
.box1-botao a{
	background-color: var(--verde);
	color: #fff;
	font-size: 1vw;
	font-weight: 600;
	letter-spacing: 4px;
	border-radius: 30px;
	border: 1px solid var(--verde);
	padding: 1vh 1.5vw;
	cursor: pointer;
}
.box1-botao a:hover{
	background-color: #fff;
	color: var(--verde);
}

/* ----- CONTEUDO 3 ----- */
.conteudo3{
	width: 100%;
	background-image: url('../imagens/planos/bg1.png');
	background-size: 100% 100%;
	background-repeat: no-repeat;
}
.conteudo3-content{
	width: 85%;
	margin-right: auto;
}
.conteudo3-img{
	width: 59%;
}
.conteudo3-img img{
	width: 100%;
	object-fit: contain;
}
.conteudo3-text{
	width: 41%;
	padding: 5%;
}
.conteudo3-text h1{
	color: #fff;
	font-weight: 700;
	font-size: 2.5vw;
	font-family: 'Poppins', sans-serif!important;
	margin-bottom: 8%;
}
.conteudo3-text p{
	color: #fff;
	font-size: 0.8vw;
	margin-bottom: 10%;
}
.conteudo3-text h3{
	color: #fff;
	font-size: 1vw;
	font-weight: 600;
	font-family: 'Poppins', sans-serif!important;
}
.conteudo3-text a{
	border: 2px solid var(--verde);
	color: var(--verde);
	font-size: 1vw;
	font-weight: 600;
	padding: 0.5vw 1vw;
	background-color: transparent;
	border-radius: 30px;
	letter-spacing: 3px;
	font-family: 'Poppins', sans-serif!important;
	cursor: pointer;
	align-self: center;
}
.conteudo3-text a:hover{
	color: #fff;
	border: 2px solid #fff;
}


/* MEDIA DESKTOP */
@media screen and (max-width: 1600px){
	
}

@media screen and (max-width: 1440px){
	
}

@media screen and (max-width: 1366px){
	
}

@media screen and (max-width: 1280px){
	
}

@media screen and (max-width: 1024px){
	
}

/* MOBILE */
@media screen and (max-width: 768px){

}

@media screen and (max-width: 480px){
	.bn-d{
		display: none;
	}
	.bn-m{
		display: flex;
	}

	.conteudo1{
		padding: 10% 0;
	}
	.conteudo1-select{
		width: 90%;
	}
	.select1, .select2{
		width: 100%;
		margin: 0 auto 5%;
	}
	.conteudo1-select .select1 span, .conteudo1-select .select2 span{
		font-size: 4vw;
	}
	.conteudo1-select select{
		font-size: 4vw;
	}
	.conteudo2{
		margin-top: 10%;
	}
	.box1{
		width: 80%;
		margin: 0 auto 10%;
	}
	.box1-topo span{
		font-size: 5vw;
	}
	.box1-info p{
		font-size: 3.5vw;
	}
	.box1-info div span{
		font-size: 8vw;
	}
	.box1-info div h2{
		font-size: 10vw;
	}
	.box1-info h3{
		font-size: 3vw;
	}
	.box1-itens span{
		font-size: 4vw;
	}
	.box1-botao a{
		font-size: 3.5vw;
		padding: 1vh 3.5vw;
	}
	.conteudo3-content{
		width: 100%;
	}
	.conteudo3-img{
		width: 100%;
	}
	.conteudo3-text{
		width: 90%;
		margin: 10% auto;
		padding: 0;
	}
	.conteudo3-text h1{
		font-size: 7.5vw;
	}
	.conteudo3-text h3{
		font-size: 6vw;
	}
	.conteudo3-text p{
		font-size: 3.8vw;
	}
	.conteudo3-text a{
		font-size: 4vw;
		padding: 0.5vw 4vw;
	}
	.select2:hover ~ .select-bg{
		display: none;
	}
}

@media screen and (max-width: 400px){

}

@media screen and (max-width: 375px){

}