button,
select,
input,
a,
button:active,
select:active,
input:active,
a:active,
button:focus,
select:focus,
input:focus,
a:focus {
	outline: none;
}
input:required,
input:invalid {
    box-shadow: none;
}

.btn {
	position: relative;
	color: inherit;
	font-family: inherit;
	cursor: pointer;
	border-radius: 10px;
	border: 0;
	max-width: 100%;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	box-sizing: border-box;
	text-decoration: none;
    font-weight: 500;
    font-size: 20px;
	padding: 15px 20px;
	outline: none;
}
.btn:active {
	top: 1px;
	box-shadow: 0 0 0 1px rgba(0,0,0,0.15) inset, 0px 0 3px rgba(0, 0, 0, 0.2) inset;
	outline: none;
}
.btn-default {
	color: #FFF;
	background: linear-gradient(to right, #00A2E0, #003770);
}

.btn-small {
	font-weight: 400;
	font-size: 17px;
	padding: 8px 20px;
}

.btn-azul {
	color: #0069B4;
	background: transparent;
	border: 1px solid #0069B4;
}
.btn-branco {
	color: #FFF;
	background: transparent;
	border: 1px solid #FFF;
}

/* Cores */
.btn-1 {
	color: #00A2E0;
	background: transparent;
	border: 1px solid #00A2E0;
}
.btn-2 {
	color: #95C11F;
	background: transparent;
	border: 1px solid #95C11F;
}
.btn-3 {
	color: #F39200;
	background: transparent;
	border: 1px solid #F39200;
}
.btn-4 {
	color: #662400;
	background: transparent;
	border: 1px solid #662400;
}
.btn-5 {
	color: #E30613;
	background: transparent;
	border: 1px solid #E30613;
}
.btn-6 {
	color: #0069B4;
	background: transparent;
	border: 1px solid #0069B4;
}
.btn-alt {
	border-width: 2px;
}


/* Checkbox
** ----------------------------------------------- */
.checkbox {
	cursor: pointer;
}
.checkbox [type="checkbox"] {
	display: none;
}
.checkbox span {
	position: relative;
	padding-left: 30px;
	align-items: center;
}
.checkbox span:before,
.checkbox span:after {
	position: absolute;
	top: 1px;
	left: 0;
	content: '';
	width: 16px;
	height: 16px;
	border-radius: 3px;
}
.checkbox span:after {
	transform: scale(0);
	left: 2px;
	top: 3px;
	transition: transform 0.3s ease 0s;
}
.checkbox span:before {
	transition: background-color 0.3s ease 0s, border 0.3s ease 0s;
	border: 2px solid #DBDBDB;
	background-color: #FFF;
}

.checkbox span:hover:before {
	border-color: #00A2E0;
}
.checkbox [type="checkbox"]:checked ~ span::after {
	background-color: #00A2E0;
	transform: scale(0.7);
}

.checkbox.invalid {
	border: 2px solid #e31313;
	padding: 4px;
	border-radius: 5px;
}

/* Form
** ----------------------------------------------- */
button:focus {
	outline: 0;
}
.input,
[type="text"],
[type="email"],
[type="url"],
[type="search"],
[type="password"],
[type="number"],
[type="file"],
[type="time"],
[type="tel"],
select,
textarea {
	font-family: inherit;
	max-width: 100%;
	box-sizing: border-box;
	border: 2px solid #DBDBDB;
	border-radius: 2px;
	color: inherit;
	background-color: #FFF;
	outline: none;
	font-size: 18px;
	padding: 10px 15px;
	border-radius: 8px;
	font-weight: 300;
	font-family: arial;
	transition: border 0.3s, box-shadow 0.3s, transform 0.3s;
	box-shadow: 0;
}

.input:hover,
[type="text"]:hover,
[type="email"]:hover,
[type="url"]:hover,
[type="search"]:hover,
[type="password"]:hover,
[type="number"]:hover,
[type="file"]:hover,
[type="tel"]:hover,
select:hover,
textarea:hover {
	border-color: #00A2E0;
}

.input:focus,
[type="text"]:focus,
[type="email"]:focus,
[type="url"]:focus,
[type="search"]:focus,
[type="password"]:focus,
[type="number"]:focus,
[type="file"]:focus,
[type="tel"]:focus,
textarea:focus {
	outline: none;
	transform: scale(1.04);
	border-color: #00A2E0;
	box-shadow: 0 0 10px rgba(0, 162, 224, 0.4);
}
select:focus {
	transform: none;
}
.secao-form-box-w-100p input,
.secao-form-box-w-100p textarea {
	width: 100%;
}

@media (max-width: 980px) {
	.btn-default {
		padding: 10px 15px;
		font-size: 20px;
	}
}

@media (max-width: 680px) {
	.btn {
		font-size: 18px;
		padding: 10px 20px;
	}
}