* {
	margin: 0;
	padding: 0;
}

/*INICIO BODY */
body {
	margin: 0;
	padding: 0;
	background-image: linear-gradient(to right, #20c2eb, #0193c6, #0a669c, #123c6f, #0f1642);
    height: 350px;
	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: #0f1642;
    color: #fff;
    position: fixed;
    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;
    z-index: +1;
}
/*FINAL MENU*/

/*INICIO GRID PONTE */
.div-ponte{
    padding-top: 87px;
}
.ponte-grid {
    width: 1900px;
    height: 600px;

}

/*FINAL GRID PONTE */
/*INICIO GRID INTRODUÇÃO*/
.introducao-grid {
	display: grid;
	grid-template-columns: repeat(1, 100%);
	grid-template-areas: "texto2";
	text-align: center;
	color: #0e1641;
	padding-top: 20px;
    height: 250px;

	}
    /*
    #h1-introducao {
        margin-left: 400px;
        height: 150px;
        width: 280px;
        padding-top: 150px;
        color: white;
        font-size: 35px;
    }
        */
    #p-introducao {
        width: 1100px;
        height: 110px;
        margin-left: 400px;
        text-align: justify;
        padding-top: 150px;
        color: white;
        font-size: 25px;
    }
    .link-introducao {
        color: white;
        margin-left: 100px;
        border: 1px solid white;
        border-radius: 15px;
        padding: 10px;
    }
    .introducao-grid a:hover {
        background-color: #20c2eb;
        border-radius: 3px;
        transition: 0.5s ease;
    }
/*SERVIÇOS*/
.servicos {
    background-image: linear-gradient(to right, #20c2eb, #0193c6, #0a669c, #123c6f, #0f1642);
    height: 350px;
}
.servicos-flex {
    margin-top: 10px;
    display: flex;
    color: white;
    justify-content: space-between;
    height: 300px;
    width: 1100px;
    margin-left: 375px;
    margin-right: 400px;
}
.card {
    color: white;
    display: flex;
    justify-content: center;
    margin-top: 20px;
    width: 350px;
    height: 300px;
    position: relative;
    background-image: linear-gradient(
  180deg,
  hsl(231deg 65% 15%) 5%,
  hsl(213deg 61% 34%) 92%,
  hsl(212deg 60% 45%) 100%
);
    border-radius: 20px;
    box-shadow: 0px 35px 80px rgba(0, 0, 0, 0.15);
    transition: 0.5s;
}

.card:hover {
    height: 400px;
}

.card .img-box {
    position: absolute;
    width: 250px;
    height: auto;
    top: 0px;
    transition: 0.5s;
}

.card:hover .img-box {
    top: -100px;
    scale: 0.75;
}

.card .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card .content {
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: absolute;
    top: 250px;
    width: 100%;
    padding: 0px 30px;
    text-align: center;
    height: 30px;
    overflow: hidden;
    transition: 0.5s;
}

.card:hover .content {
    top: 130px;
    height: 250px;
}

.card .read-more {
   background: #20c2eb;
    padding: 12px;
    margin-top: 20px;
   color: #fff;
   text-decoration: none;
   border-radius: 8px;
}
.card .read-more:hover {
    background-color: #0e1641;
        border-radius: 3px;
        transition: 0.9s ease;
 }
/*INICIO GRID TEXTOS */
.textos-grid {
    background-image: linear-gradient(to right, #20c2eb, #0193c6, #0a669c, #123c6f, #0f1642);
	display: grid;
	grid-template-columns: repeat(4, 100%);
	grid-template-areas: "texto1"
                         "texto2"
                         "texto3"
                         "texto4";
	text-align: center;
	color: white;
    height: 750px;
    width: auto;
	}

.texto1{
	grid-area: texto1;
    text-align: center;
    border: 3px solid white;
    width: 300px;
    margin-left: 400px;
    border-radius: 30px;
    height: 40px;
    margin-top: 80px;
    margin-bottom: 25px;
    padding-top: 5px;
    color: white;
}
.texto2{
	grid-area: texto2;
    gap: 10px;
    text-align: justify;
	font-size: 20px;
    width: 1060px;
    margin-left: 400px;
    margin-bottom: 25px;
}
.texto3{
	grid-area: texto3;
    width: 1000px;
    height: 550px;
    margin-left: 430px;
    border-radius: 10px;
}
/*FINAL GRID TEXTOS */

/*INICIO GRID TIME*/
.tiago-miche {

    background-image: url(../IMAGENS/Teste-para-nossotime.jpg);
    background-size: cover;
    height: 1300px;
    width: 1844px;
    padding: 30px;
    margin-top: 125px;
}
.time {
    display: flex;
    color: white;
    width: 1120px;
    height: 400px;
    margin-left: 400px;
    margin-top: 20px;
}
.estilização-time {
    font-size: 28px;
    text-align: justify;
    padding-right: 160px;
}
.estilizacao-nome {
    text-align: center;
    border: 3px solid white;
    width: 400px;
    margin-left: 400px;
    border-radius: 30px;
    height: 40px;
    padding-top: 5px;
    color: white;
}
.estilizacao-nome1 {
    text-align: center;
    border: 3px solid white;
    width: 400px;
    margin-left: 400px;
    border-radius: 30px;
    height: 40px;
    padding-top: 5px;
    color: white;
    margin-top: 270px;
}
/*FINAL FLEX TIME */
.time2 {
    display: flex;
    color: white;
    width: 1020px;
    height: 400px;
    margin-left: 400px;
    margin-top: 20px;
}
.estilização-time2 {
    font-size: 28px;
    text-align: justify;
    padding-right: 172px;
}
/*INICIO GRID FOOTER */
.footer-grid {
	display: grid;
	grid-template-columns: repeat(4, auto);
	grid-template-areas: "footer1 footer2 footer3 footer4";
	background-color: #0f1642;
}

.footer1 {
	grid-area: footer1;
	color: white;
	padding-top: 20px;
	margin-left: 365px;
}
.footer2 {
	grid-area: footer2;
	color: white;
	padding-top: 30px;
    text-align: center;
    padding-right: 100px;
}
.footer3 {
	grid-area: footer3;
	color: white;
	padding-top: 30px;
}
.footer4 {
	grid-area: footer4;
	color: white;
	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: white;
}
/*FINAL ESTILIZAÇÃO GRID FOOTER */

.imagens-fotos {
    height:450px;
}
.imagens-fotos1 {
    height:440px;
    width: 380px;
}