* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}


/* Style base */

body {
    background-color: #24262b;
}

.interface {
    max-width: 90%;
    margin: 0 auto;
    padding: 0 10%;
}

p{
    font-weight: 200;
}


/* Style dos botões de Contato */

.btn-contato {
    display: inline-block;
    font-size: 1.1rem;
    color: white;
    padding: 20px 26px;
    border-radius: 30px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    background-color: rgb(46, 46, 231);
    border: none;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-contato:hover{
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
    background-color: rgb(19, 19, 138);
    transform: scale(1.02);
}


/* Style do title com gradiente */

.gradiente {
    background-image: linear-gradient(90deg, rgb(19, 19, 138), rgb(39, 39, 241), rgb(0, 0, 255));    
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: gradient-animation 4s ease infinite;
}

@keyframes gradient-animation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}


/* Style do Inicio */

.inicio {
    background-image: url(/images/Novo\ Projeto.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 88dvh;
}

.logo img {
    max-width: 250px;
    height: auto;
    margin-left: -33px;
}

.title-inicio h1 {
    font-size: 2.6rem;
    padding: 10px auto;
    padding-top: 15px;
    font-family: "Inter", sans-serif;
}

.title-inicio p1 {
    font-size: 1.3rem;
    color: white;
    border-bottom: 3px solid rgb(19, 19, 138);
    font-weight: 200;
}

.title-inicio p {
    font-size: 1.3rem;
    font-weight: 200;
    color: white;
    margin-top: 15px;
    line-height: 30px;
}

.inicio .btn-contato {
    margin-top: 30px;
    padding: 20px 70px;
}


/* Style do Sobre */

.sobre {
    padding-bottom: 50px;
    display: flex;
    align-items: center;
    gap: 60px;
    background-color: #ddd;
    border-radius: 100px;
}

.sobre-img {
    flex: 1;
    background-color: #ddd;
    height: 400px;
}

.sobre-img img {
    width: 500px;
}

.sobre-cont {
    flex: 0.8;
    margin-top: 45px;
}

.title-sobre {
    font-size: 1.7rem;
    border-bottom: 5px solid rgb(19, 19, 138);
    margin: 12px auto;
    align-self: flex-end;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: 0;
}

.corpo-sobre {
    margin-bottom: 24px;
    text-align: left;
}

.corpo-sobre h2 {
    font-size: 1.7rem;
    padding: 15px 0px;
}

.corpo-sobre p {
    font-size: 1.2rem;
}

.corpo-sobre span {
    font-weight: bold;
}

#diff {
    font-size: 1.3rem;
    font-weight: bold;
    padding-bottom: 5px;
}


/* Animação fade-in-scroll (aparecer ao rolar a tela) */

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* Style dos Principios da empresa */

.grid-sobre {
    display: flex;
    gap: 80px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 60px;
    padding-bottom: 120px;
    position: relative;
    z-index: 2;   
}

.grid {
    background-color: #ddd;
    border-radius: 12px;
    min-height: 50dvh;
    width: 320px;
    height: fit-content;
    text-align: center;
    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;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.grid img {
    width: 50px;
    margin-top: 15px;
}

.grid h1 {
    font-size: 1.7rem;
    margin: 10px auto;
    border-bottom: 5px solid rgb(19, 19, 138);
    width: fit-content;
}

.grid p {
    font-size: 1.1rem;
    padding: 10px 8%;
}


/* Style da Parallax */

.parallax-section {
    /* IMAGEM DE BACKGROUND */
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url(/images/fundo-parallax2.webp);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    /* STYLE DA SECTION */
    box-shadow: 
        rgba(0, 0, 0, 0.2) 0px 30px 36px -20px inset,
        rgba(0, 0, 0, 0.2) 0px -30px 36px -20px inset;
    min-height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-bottom: 5px solid rgb(19, 19, 138);
    border-top: 5px solid rgb(19, 19, 138);
    margin-bottom: 120px;
    margin-top: -180px;
}

.parallax-text {
    color: white;
    max-width: 50%;
    margin-top: 80px;
}

.parallax-text h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.parallax-text img {
    width: 130px;
}

.parallax-text p {
    font-size: 1.2rem;
    padding: 20px;
}


/* Style dos serviços */

.servicos {
    text-align: center;
    margin-bottom: 120px;
    background-color: #24262b;
}

.servicos h1 {
    font-size: 2.2rem;
}

.grid-servico {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    gap: 80px;
    padding: 60px;
}

.servico-card {
    background-color: #ddd;
    border-radius: 12px;
    width: 320px;
    text-align: center;
    overflow: hidden;
}

.servico-card img {
    width: 300px;
    border-radius: 12px;
    border-bottom: 5px solid rgb(19, 19, 138);
    margin-top: 10px;
    margin-bottom: 20px;
}

.servico-card h2 {
    padding-bottom: 20px;
}

.servicos .btn-contato {
    padding: 20px 70px;
}



/*-------------------------------footer----------------------------------------------------------*/
.container{
	max-width: 1170px;
	margin:auto;
}

.row{
	display: flex;
	flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

ul{
	list-style: none;
}

.footer{
	background-color: #ffffff;
    position: relative;
    padding: 120px 0 70px 0;
    border-top: none;
}

.footer-wave{
    position: absolute;
    top: -5px;              
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 1;
}

.footer .container {
    position: relative;      
    z-index: 10;
}

.footer-col{
    width: auto; 
    padding: 0 15px;
}

.footer-col h4{
	font-size: 18px;
	color: #24262b;
	text-transform: capitalize;
	margin-bottom: 35px;
	font-weight: 500;
	position: relative;
}

.footer-col h4::before{
	content: '';
	position: absolute;
	left:0;
	bottom: -10px;
	background-color: rgb(19, 19, 138);
	height: 2px;
	box-sizing: border-box;
	width: 50px;
}

.footer-col ul {
    display: flex;
    gap: 20px;
}


.footer-col ul li a{
	font-size: 16px;
    display: inline-block;
	text-transform: capitalize;
	color: #24262b;
	text-decoration: none;
	font-weight: 300;
	color: #24262b;
	transition: all 0.3s ease;
}

.footer-col ul li a:hover{
	color: #24262b;
    transform: translateY(5px);
}

.footer-col .social-links a{
	display: inline-block;
	height: 40px;
	width: 40px;
	background-color: #838383;
	margin: 0px 5px ;
	text-align: center;
	line-height: 40px;
	border-radius: 50%;
	color: #24262b;
	transition: all 0.5s ease;
}

.footer-col .social-links a:hover{
	color: #24262b;
	background-color: #b3b3b4;
    transform: translateY(5px);
}

/*------------------------------MAPA--------------------------------------*/

.localizacao {
    padding-top: 30px;
    margin-bottom: 40px;
}

.map-box {
    display: grid;
    grid-template-columns: 70% 30%;
    gap: 80px;
    align-items: center;
}

.map-interative {
    width: 100%;
    height: 380px;
    border-radius: 15px;
    background-color: #e9e9e9;
    padding: 0;
    overflow: hidden;
}

.map-interative iframe {
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.map-text {
   text-align: start;
}

.style-text {
    display: flex;
    gap: 10px;
}

.map-text h1 {
    font-size: 2rem;
    font-weight: lighter;
    border-bottom: 5px solid rgb(19, 19, 138);
    width: fit-content;
    margin-bottom: 30px;
}

.map-text h2 {
    font-size: 1.5rem;
    font-weight: lighter;
    padding-bottom: 4px;
}

.map-text p {
    padding-bottom: 20px;
    font-size: 1rem;
    font-weight: lighter;
}

.map-text h1, .map-text h2, .map-text p, .map-text i {
    color: white;
}