/* Importações */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

/* Reset do documento */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Montserrat', sans-serif;
}

a {
	text-decoration: none;
	color: #fff;
}

ul {
	list-style: none;
}

.active {
	border-top: 2px solid #fff;
	border-bottom: 2px solid #fff;
	text-decoration: none;
	font-weight: bold;
}

.active:hover {
	color: #fb8123;
	transition: 0.5s;
}

body, html {
	overflow-x: hidden;
}

/* Navbar */
.navbar {
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	width: 100%;
	justify-content: space-between;
	padding: 1.25rem;
	color: fff;
	font-size: 1.25rem;
	font-family: 'Montserrat', sans-serif;
}

.logo {
	height: 9.6875rem;
	width: 4.0625rem;
}

.logo img {
	width: auto;
	max-height: 100%;
}

.nav-links {
	display: flex;
	align-items: center;
}

.nav-links li {
	margin: 0 1.875rem;
}
/* Fim Navbar */

/* Header */
header {
	width: 100vw;
	height: 100vh;
	background-image: url("../img/background-image.jpg");
	background-position: bottom;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;
}

.header-content {
	margin-bottom: 9.375rem;
	color: whitesmoke;
	text-align: center;
}

.header-content h2 {
	font-size: 4vmin;
	text-shadow:
    0 0 7px #fff,
    0 0 10px #fff,
    0 0 21px #fff,
    0 0 42px #fff,
    0 0 82px #fff,
    0 0 92px #fff,
    0 0 102px #fff,
    0 0 151px #fff;
    color: #000;
}

.line {
	width: 9.375rem;
	height: 0.25rem;
	background: #21d02b;
	margin: 0.625rem auto;
	border-radius: 0.3125rem;
}

.header-content h1 {
	font-size: 7vmin;
	margin-top: 3.125rem;
	margin-bottom: 1.875rem;
	text-shadow:
    0 0 7px #fff,
    0 0 10px #fff,
    0 0 21px #fff,
    0 0 42px #fff,
    0 0 82px #fff,
    0 0 92px #fff,
    0 0 102px #fff,
    0 0 151px #fff;
    color: #000;
}

.ctn {
	padding: 0.5rem 0.9375rem;
	background: #21d02b;
	border-radius: 1.875rem;
	color: whitesmoke;
}

.menu-btn {
	position: absolute;
	top: 1.875rem;
	right: 1.875rem;
	width: 3.75rem;
	cursor: pointer;
	display: none;
}
/* Fim Header */

/* Intro */ 
section {
	width: 100%;
	margin: 5rem auto;
}

.title {
	text-align: center;
	font-size: 4vmin;
	color: #000;
}

.row {
	display: flex;
	align-items: center;
	width: 100%;
	justify-content: space-between;
}

.row .col {
	display: flex;
	flex-direction: column;
	align-items: center;
}


.intro .row {
	margin-top: 3.125rem;
}

h4 {
	font-size: 3vmin;
	color: #000;
	margin: 1.25rem auto;
}

p {
	color: #7c7c7c;
	padding: 0rem 2.5rem;
}

.intro .ctn {
	margin-top: 3.75rem;
}
/*Fim Intro*/

/*Explore*/
.explore {
	width: 100%;
	height: 80vh;
	background-image: url('../img/explore.jpg');
	background-position: center; 
	background-size: cover;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
}

.explore-content {
	width: 60%;
	padding: 3.125rem;
	color: #fff;
	display: flex;
	align-items: center;
	flex-direction: column;
}

.explore-content h1 {
	font-size: 7vmin;
	margin-bottom: 3.125rem;
	color: #fff;
}

.explore-content .line {
	margin-bottom: 3.125rem;
}

.explore-content p {
	color: #fff;
}

.explore-content .ctn {
	margin-top: 2.5rem;
}
/*Fim Explore*/

/*Explore 2*/
.explore-2 .row .col {
	width: 50%;
}

.content-col {
	width: 40%;
}

.image-col {
	width: 60%;
}

.explore-2 .image-gallery {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	align-items: center;
}

.image-gallery img {
	max-width: 16.75rem;
	margin: 0.5rem;
}

.content-col h1 {
	font-size: 7vmin;
	color: #000;
}

.content-col .line {
	margin-left: -1px;
}

.content-col p {
	padding: 0;
	margin: 1.875rem auto;
}

.content-col .ctn {
	margin-left: -6.25rem;
}

/*Footer*/
.main-footer{
  height: 35rem;
  width: 100%;
  padding: 1.25rem 5rem;
  margin: 0;
  background-color: #343a40;
  background-image: url('../img/world-map.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  text-align: center;
}

.main-footer .footer-col {
	width: 30%;
	height: auto;
	text-align: center;
}

.main-footer .footer-col p {
	align-items: center;
	text-align: center;
	color: #fff;
}

.social-icons {
	text-align: center;
	align-items: center;
	padding-top: 1.875rem;
	position: relative;
	display: inline-block;
	font-size: 2.625rem;
}

.social-icons li {
	padding-top: 1.25rem;
}

.social-icons a:hover {
	color: #fb8123;
	transition: 0.5s;
}

.contact-icons a {
	font-size: 2.625rem;
}

.contact-icons {
	text-align: center;
	align-items: center;
	padding-top: 30px;
	position: relative;
	display: inline-block;
	font-size: 42px;
	color: #fff;
}

.contact-icons li {
	padding-top: 20px;
}

.contact-icons p {
	font-size: 16px;
}

.contact-icons a:hover {
	color: #fb8123;
	transition: 0.5s;
}
/*Fim Footer*/

/*SERVIÇOS*/
.solutions .solutions-col {
	width: 30%;
	height: auto;
	text-align: center;
}

.solutions .solutions-col p {
	align-items: center;
	text-align: center;
	color: #000;
	padding-top: 15px;
}
/*Fim SERVIÇOS*/

/* EQUIPE */
.staff h1 {
	text-align: center;
}
/*Fim EQUIPE */

/* SOBRE */
.about ul {
	text-align: center;
}

.about ul li {
	padding-top: 20px;
}

.about p {
	text-align: center;
	padding: 20px 25px;
}

.about {
	width: 100%;
}

.contact-form {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 10px 45px;
	width: 500px;
	box-shadow: 0px 0px 25px 15px rgba(220, 220, 220,0.85);
	-webkit-box-shadow: 0px 0px 25px 15px rgba(220, 220, 220,0.85);
	-moz-box-shadow: 0px 0px 25px 15px rgba(220, 220, 220,0.85);	
	background-color: rgba(220, 220, 220, 0.6);
}

.contact-form form {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.contact-form form label {
	font-size: 17px;
	margin-bottom: 4px;
}

.contact-form form input {
	padding: 15px;
	outline: none;
	border: 0;
	margin-bottom: 15px;
	font-size: 15px;
	transition: all 0.5s;
}

.contact-form form input:focus {
	border-radius: 16px;
}

.contact-form form textarea {
	padding: 10px;
	outline: none;
	border: 0;
	font-size: 15px;
	margin-bottom: 30px;
	transition: all 0.5s;
}

.contact-form form textarea:focus {
	border-radius: 16px;
}

.contact-form form button {
	padding: 15px;
	cursor: pointer;
	font-size: 16px;
	outline: none;
	border: 0;
	transition: all 1s;
	margin-bottom: 20px;
}

/*Mobile*/
@media only screen and (max-width:850px){
	.menu-btn {
		display: block;
	}
	.navbar {
		padding: 0;
	}
	.logo {
		position: absolute;
		top: 30px;
		left: 30px;
	}
	.nav-links {
		flex-direction: column;
		width: 100%;
		height: 100vh;
		justify-content: center;
		background: #030018;
		margin-top: -900px;
		transition: all 0.5s ease;
	}
	.mobile-menu {
		margin-top: 0px;
		border-bottom-right-radius: 30%;
	}
	.nav-links li {
		margin: 30px auto;
	}
	/**/
	.row {
		flex-direction: column;
	}
	.row .col {
		margin: 20px auto;
	}
	.col img {
		max-width: 90%;
	}
	.explore-content {
		width: 100%;
	}
	.explore-2 .col {
		width: 100%;
	}
	.image-gallery {
		justify-content: center;
		align-items: center;
	}
	.image-gallery img {
		width: 90%;
	}
	.main-footer {
		padding: 10px;
	}
	.main-footer img {
		display: none;
	}
	.main-footer .footer-col  .contact-icons {
		display: none;
	}
	.solutions {
		text-align: center;
	}
	.solutions img {
		width: 90%;
	}
}

/* Animações */
img {
	transition: transform .3s ease;
}

img:hover {
	transform: scale(1.1);
}

.ctn:hover {
	background: whitesmoke;
	color: #21d02b;
	transition: all 1s;
	box-shadow: 0px 0px 25px 10px rgba(33,208,43,1);
	-webkit-box-shadow: 0px 0px 25px 10px rgba(33,208,43,1);
	-moz-box-shadow: 0px 0px 25px 10px rgba(33,208,43,1);
}

li:hover {
	color: #21d02b;
	cursor: pointer;
}

/* Whats App Button */
.icon {
  position: fixed;
  bottom: 60px;
  right: 30px;
  font-size: 30px;
  background-color: #21d02b;;
  color: #ffffff;
  border-radius: 50%;
  padding: 3px;
  width: 50px;
  height: 50px;
  text-align: center;
  text-decoration: none;
  z-index: 100;
  box-shadow: 2px 2px 2px #c0bdbd;
}

.icon .fab{
  padding-top: 9px;
}

.icon:hover{
  background-color: #fff;
  color: #029e3b;
  font-weight: 900;
  box-shadow: 2px 2px 20px #21d02b;;
}

#back-to-top {
	position: fixed;
	bottom: 150px;
	right: 40px;
	cursor: pointer;
	color: #21d02b;
}

