* {
	margin: 0;
	padding: 0;
}

/*INICIO BODY */
body {
	margin: 0;
	padding: 0;
	background-image: linear-gradient(to right, #20c2eb, #0193c6, #0a669c, #123c6f, #0f1642);
	font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    overflow-x: hidden;
}
/*FINAL BODY */

/*INICIO MENU */
a {
    text-decoration: none;
}
li {
    list-style: none;
}

/* NAVBAR ESTILO */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0px;
    background-color: #0e1641;
    color: #fff;
    width: 100%;
    z-index: 10000;
}
.nav-links a {
    color: #fff;
}

/* LOGO */
.logo {
    font-size: 32px;
}
#logo-menu {
    color: white;
    height: 80px;
}

/* NAVBAR MENU */
.menu {
    display: flex;
    gap: 1em;
    font-size: 18px;
}
.menu li:hover {
    background-color: #20c2eb;
    border-radius: 5px;
    transition: 0.5s ease;
}
.menu li {
    padding: 5px 14px;
}

/* CHECKBOX HACK */
input[type=checkbox]{
    display: none;
}

/*HAMBURGER MENU*/
.hamburger {
    display: none;
    font-size: 24px;
    user-select: none;
}
/*FINAL MENU*/
section{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 10px 45px;
    margin-right: 300px;
    background: #1d1d2e;
    width:500px;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}
section h2{
    color: #f5f5f5;
    font-size: 2.5rem;
    margin: 2rem;
}
section form{
    display: flex;
    flex-direction: column;
    width: 100%;
}
form label{
    color: #f5f5f5;
    font-size: 17px;
    margin-bottom: 4px;
}
form input{
    padding: 15px;
    outline: none;
    border: 0;
    margin-bottom: 20px;
    font-size: 15px;
    transition: all 0.5s;
}
form input:focus{
    border-radius: 16px;
}
form textarea{
    padding: 10px;
    outline: none;
    border: 0;
    font-size: 15px;
    margin-bottom: 30px;
    transition: all 0.5s;
}
form textarea:focus{
    border-radius: 16px;
}
form button{
    padding: 15px;
    cursor: pointer;
    font-size: 16px;
    background: transparent;
    border: 2px solid #f5f5f5;
    color: #f5f5f5;
    transition: all 1s;
    margin-bottom: 20px;
}
form button:hover{
    background: #f5f5f5;
    color: #101026;
    border-radius: 16px;
}
.formulario{
    margin-top: 57px;
    display: flex;
    flex-direction: row-reverse;
}

.select-box select {
    padding: 15px;
    width: 100%;
    outline: none;
    border: 0;
    margin-bottom: 20px;
    font-size: 15px;
    transition: all 0.5s;
  }

.mapa-google {
    height: 500px;
    width: 600px;
    padding-right: 160px;
    padding-top: 100px;
}
.lista-email {
    color: white;
    width: 300px;
    height: 150px;
    margin-left: 300px;
}
/*Página do Obrigado*/

.main{
   display: flex;
   align-items: center;
   justify-content: center;
   min-height: 100vh;
   background: #101026;
   flex-direction: column;
}
.text{
    font-size: 45px;
    color: #f5f5f5;
    margin-bottom: 30px;
}
.paragrafo{
    color: #f5f5f5;
    margin-bottom: 50px;
}
.btn{
    padding: 15px 55px;
    background: #f5f5f5;
    text-decoration: none;
    color: #101026;
    font-size: 18px;
    transition: all 0.5s;
}
.btn:hover{
    border-radius: 16px;
}
/*INICIO GRID FOOTER */
.footer-grid {
    border: 3px solid #0e1641;
	display: grid;
	grid-template-columns: repeat(4, auto);
	grid-template-areas: "footer1 footer2 footer3 footer4";
	background-color: #0e1641;
	margin-top: 50px;
}

.footer1 {
	grid-area: footer1;
	color: #fbfcfca9;
	padding-top: 20px;
	margin-left: 365px;
}
.footer2 {
	grid-area: footer2;
	color: #fbfcfca9;
	padding-top: 30px;
    text-align: center;
    padding-right: 100px;
}
.footer3 {
	grid-area: footer3;
	color: #fbfcfca9;
	padding-top: 30px;
}
.footer4 {
	grid-area: footer4;
	color: #fbfcfca9;
	padding-top: 30px;
	padding-right: 255px;
}
.footer-svg {
	padding-left: 20px;
	padding-top: 15px;
	height: 30px;
}
/*FINAL GRID FOOTER */

/*INICIO ESTILIZAÇÃO GRID FOOTER */
#footer-titulo1 {
	color: #fbfcfca9;
}
/*FINAL ESTILIZAÇÃO GRID FOOTER */
