@charset "utf-8";
/* CSS Document */

/*
 CSS for the main interaction
*/

.tabela{
	width: 90%;
	margin: auto;
	text-align: left;
	margin-top: 100px;
	margin-bottom: 100px;
}


.wrapper{
	min-height: 100vh;
	box-sizing: border-box;
	padding-top: 5%;
	font-family: "Metric Light";
	line-height: 1.5;
	max-width: 100%;
	margin: 0 auto;
}

.content p{
	color: #000000;
	font-family: "Metric Light";
	font-size: 20px;
}

.box{
	display: flex;
	flex-wrap: wrap;
}



.box label{
	background: #01A982;
	font-weight: bold;
	text-align: center;
	box-shadow: 0 2px 10px -2px rgba(0,0,0,0.5);
	order: 1;
	display: block;
	padding: 16px 127px;
	margin-right: 4px;
	cursor: pointer;
}
.box .content{
	display: none;
	padding: 30px;
	background: #ffffff;
	box-shadow: 0 2px 10px -2px rgba(0,0,0,0.5);
	order: 99;
	flex-grow: 1;
	width: 100%;
	
}
.box input[type="radio"]{
	display: none;
}
.box input[type="radio"]:checked + label{
	background: #fff;
}

.box input[type="radio"]:checked + label + .content{
	display: block;
}


.sucesso h4{
	
	font-size: 27px;
}
.service-row{
	margin-top: 5%;
	display: flex;
	justify-content: space-between;
}

.service-row-col{
	flex-basis: 48%;
	padding: 30px 2px;
	
}

.service-row-col img{
	width: 410px;
	float: right;
	
}

.service-row-col h1{
	font-family: "Metric Black";
	font-size: 44px;
	font-weight: 700;
	color: #000000;
	text-align: start;
}

.service-row-col p{
	font-family: "Metric Light";
	font-size: 20px;
	font-weight: 400;
	color: #000000;
}

.srv-button{
  background-color: #4CAF50; /* Green */
  border: 1px solid #000000;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
}


.service-adm-col h1{
	font-family: "Metric Black";
	font-size: 27px;
}

.service-adm-col p{
	font-family: "Metric Light";
	font-size: 22px;
}

.btn-service{
	font-size: 20px;
	color: #01A982;
	font-family: "Metric SemiBold";
}





@media (max-width: 600px){
	.box .content, 
	.box label{
		order: initial;
		}
	.box label{
		width: 100%;
		margin-right: 0;
	}
}