@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Baskervville:ital@0;1&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import "compass/css3";
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}


:root{
    --text-color:#EAE6DF;
    --second-color:#0F2138;

    --rotate-speed: 40;
	--count: 8; /* Default count, the DOM element should override this */
	--easeInOutSine: cubic-bezier(0.37, 0, 0.63, 1);
	--easing: cubic-bezier(0.000, 0.37, 1.000, 0.63);
}

body {
    font-family: 'Poppins', serif, sans-serif;
    line-height: 1.6;
    color: #fff;
    background-color: #f4f4f4;
}

.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.3rem 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family:'Poppins';
    z-index: 100;
}

.header::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .1);
    backdrop-filter: blur(50px);
    z-index: -1;
}

.header::after{
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .4), transparent);
    transition: .5s ease;
}
.header:hover::after{
    left: 100%;
}

.icon-header{
    position: absolute;
    right: 5%; 
    font-size: 2.8rem;
    color: #fff;
    cursor: pointer;
    display: none;
}

#check{
    display: none;
}


.navbar a{
    font-size: 1.15rem;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    margin-left: 2rem;
    transition: .5s;
}
.navbar a:hover{
    color: #fff9ac;
}


/* first page */
  nav .tele{
    background: #0088cc;
  }

  nav .whats{
    background: #25d366;
  }
  
  .menu-item, .menu-open-button {
    background: #00bcd4;
    border-radius: 100%;
    max-width: 280px;
    height: 90px;
    position: absolute;
    top: 20px;
    color: white;
    text-align: center;
    line-height: normal;
    transform: translate3d(0, 0, 0);
    transition: transform ease-out 200ms;
  }
  .menu-open-button{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 280px;
    height: 60px;
    margin-left: -20px;
    border-radius: 10px;
    line-height: normal;
  }

  .menu-open-button span{
    text-transform: uppercase;
    white-space: nowrap;
    margin-top: 16px;
    height: 30px;
    font-size: 18px;
  }

  .menu-item{
    display: flex;
    height: 60px;
    border-radius: 10px;
    width: 100px;
    text-align: center;
    text-decoration: none;
  }

  .l1{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    text-transform: uppercase;
  }
  
  .l2{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    text-transform: uppercase;
    background-color: #25d366;
    
  }
  
  .menu-open {
    display: none;
  }
  
  .menu {
    position: absolute;
    left: 50%;
    margin-left: -80px;
    padding-top: 20px;
    padding-left: 80px;
    width: 250px;
    height: 150px;
    box-sizing: border-box;
    font-size: 20px;
    text-align: left;
  }
  
  .menu-item:hover {
    background: white;
    color: #0F2138;
  }
  .menu-item:nth-child(3) {
    transition-duration: 180ms;
  }
  .menu-item:nth-child(4) {
    transition-duration: 180ms;
  }
  
  .menu-open-button {
    z-index: 2;
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition-duration: 400ms;
    transform: scale(1.1, 1.1) translateX(0, 0, 0);
    cursor: pointer;
  }
  
  

  .menu-open:checked + .menu-open-button {
    transition-timing-function: linear;
    transition-duration: 200ms;
    transform: scale(0.8, 0.8) translate3d(0, 0, 0);
  }
  
  .menu-open:checked ~ .menu-item {
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .menu-open:checked ~ .menu-item:nth-child(3) {
    transition-duration: 190ms;
    transform: translate3d(-220px, 0, 0);
  }
  .menu-open:checked ~ .menu-item:nth-child(4) {
    transition-duration: 290ms;
    transform: translate3d(-110px, 0, 0);
  }
  


/*----First Page -----*/
.first-page {
    background: linear-gradient(rgba(15, 33, 56, 0.87), rgba(15, 33, 56, 0.87)), url('/assets/backgrounds/BACK\ HEADER.jpg') center/cover;
    color: #EAE6DF;
    height: 100vh;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
}

/*---hidden---*/
.hidden{
    opacity: 0;
    filter: blur(15px);
    transition: all 1s;
}
.show{
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
    transition: all 1s;
}

.first-img img{
    width: 800px;
}
.content-first{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.first-page p {
    font-family: 'Poppins';
    font-size: 1.7rem;
    max-width: 585px;
    margin-top: -80px;
    padding-right: 25px;
}

/* About */

.about {
    height: 100vh;
    display: flex;
    background: url('/assets/backgrounds/BACK-XICARA-2.png') center/cover;
    color: var(--second-color);
    justify-content: space-around;
    align-items: center;
    padding: 0 40px;
    gap: 40px;
}
.content-about{
    max-width: 1920px;
}
.text-about{
    max-width: 800px;
    min-width: 700px;
}
.about img{
    border-radius: 2%;
    max-width: 650px;
    min-width: none;
}

.about h1 {
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about h2 {
    margin-bottom: 20px;
    font-size: 2rem;
    letter-spacing: 2px;
}

.about p {
    font-size: 1.5rem;
    margin-bottom: 20px;
    margin-right: 110px;
    text-align: justify;

}

/* Areas of activity */

.services {
    background-color: #333;
    padding: 50px 20px;
    text-align: center;
    height: 100vh;
}

.services h2 {
    margin-bottom: 20px;
    font-size: 2rem;
    font-weight: 500;
    color: var(--text-color);
    letter-spacing: 2px;
}

.services h1{
    font-weight: 500;
    text-transform: uppercase;
    font-size: 2.5rem;
    letter-spacing: 2px;
} 

#container {
    display: flex;
    justify-content: center;
    align-items: center;
}
            
#carousel, #navigation {
    flex: initial;
    display: block;
}
            
#carousel {
    overflow: hidden;
    width: 1300px;
    height: 600px;
    border-radius: 4px;
}
            
.p-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.4s ease-in-out;
}
            
#button_a:checked ~ #carousel .p-wrapper {
    -webkit-transform: translateY(0);
    transform: translateY(0); 
}
            
#button_b:checked ~ #carousel .p-wrapper {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%); 
}

#button_c:checked ~ #carousel .p-wrapper {
    -webkit-transform: translateY(-200%);
    transform: translateY(-200%); 
}

#button_d:checked ~ #carousel .p-wrapper {
    -webkit-transform: translateY(-300%);
    transform: translateY(-300%); 
}
            
[class^="panel_"] {
    overflow: auto;
    position: relative;
    width: inherit;
    height: inherit;
    padding: 48px;
}
            
#navigation {
    margin-left: 24px;
}

[class^="label_"] {
    display: block;
    cursor: pointer;
    margin: 8px 0;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    border-radius: 4px;
    color: #aaa;
    background-color: #fff;
    transition: all 0.3s ease;
}
            
[class^="label_"]:hover {
    color: #ffffff;
    background-color: var(--second-color);
}
            
#button_a:checked ~ #navigation .label_a,
#button_b:checked ~ #navigation .label_b,
#button_c:checked ~ #navigation .label_c,
#button_d:checked ~ #navigation .label_d {
     cursor: default;
     color: #fff;
     background-color: #0F2138;
}

.services .service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.services .service-card {
    display: flex;
    background-color: #15283F;
    max-width: 300px;
    min-height: 240px;
    padding: 20px;
    border-radius: 8px;
    color: #fff;
    text-align: center;
}
.services .service-card:hover{
    transform: scale(1.05);
    box-shadow: 0 0 20px var(--second-color);
    transition: all 0.5s ease;
}

.services .service-card .text-card p{
    font-weight: bold;
    font-size: 1rem;
    padding-bottom: 1.5rem;
    text-transform: uppercase;
}
.text-card span{
    font-size: .92rem;
    letter-spacing: 1.5px;
}

/* Apoio */

.infos {
    height: 100vh;
    display: flex;
    background: url('/assets/backgrounds/BACK-ENG.png') center/cover;
    color: var(--second-color);
    justify-content: space-around;
    align-items: center;
    padding: 0 40px;
    gap: 40px;
}
.content-infos{
    max-width: 1920px;
}
.text-infos{
    max-width: 800px;
    min-width: 700px;
}

.text-infos .line2{
    padding-left: 50px;
}

.infos img{
    border-radius: 2%;
    max-width: 650px;
    min-width: none;
    box-shadow: 0 8px 25px #00000054;
}

.infos h1 {
    font-weight: 400;
    font-size: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.infos h2 {
    display: inline-block;
    margin-bottom: 20px;
    font-size: 2rem;
    letter-spacing: 2px;
}

.infos p {
    font-size: 1.3rem;
    margin-bottom: 20px;
    margin-right: 110px;
    text-align: justify;

}



/* Testimonials */
#testimonials{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    background-color: #0F2138;
    padding-bottom: 50px;
    height: 100vh;
}
.testimonials-heading{
    letter-spacing: 1px;
    margin: 30px 0px;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.testimonials-heading h1{
    font-size: 2.2rem;
    font-weight: 500;
    color: #ffffff;
    padding: 10px 20px;
    text-transform: uppercase;
}
.testimonials-heading span{
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: 2px;
    
}
.testimonial-box-container{
    display: flex;
    max-width: 1600px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.testimonial-box-container :nth-child(2){
    transition-delay: 400ms;
}

.testimonial-box-container :nth-child(3){
    transition-delay: 500ms;
}

.testimonial-box-container :nth-child(4){
    transition-delay: 600ms;
}

.testimonial-box-container :nth-child(5){
    transition-delay: 700ms;
}

.testimonial-box-container :nth-child(6){
    transition-delay: 800ms;
}

.testimonial-box{
    width: 500px;
    box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 15px;
    border-radius: 1%;
    background-color: #70707017;
}

.testimonial-box:hover{
    transform: translateY(-10px);
    transition: all ease .3s;
}

.name-user{
    display: flex;
    flex-direction: column;
}

.name-user strong{
    color: var(--text-color);
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.box-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.client-comments p{
    font-size: 0.9rem;
    color: #d6d6d6;
}


/* Contact */

.contact {
    display: flex;
    padding: 50px 20px;
    text-align: start;
    width: 100%;
    height: 70vh;
    background: url('/assets/backgrounds/contact-back.png') center/cover;
    align-items: center;
}

.contact-text{
    max-width: 800px;
    padding-left: 150px;
}

.contact-text h1 {
    margin-bottom: 20px;
    font-size: 2rem;
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
}

.contact-text h2 {
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 1.5rem;
    color: #fff;
}

.contact-text .h2-c{
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
}

.contact-text p {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    padding-bottom: 15px;
}
.contact-text button{
    border: none;
    border-radius: 10px;
    padding: 15px 30px;
    cursor: pointer;
    margin-right: 20px;
    margin-top: 20px;
}

.contact-text a button {
    text-decoration: none;
    text-transform: uppercase;
    font-size: 20px;
    letter-spacing: 2px;
    color: inherit;
    color: white;
}

.contact-text .whats-button{
    background-color: #25d366;
    animation: pulseWhats 1.5s infinite;
}

.contact-text .tele-button{
    background-color: #0088cc;
    animation: pulseTele 1.5s infinite;
}

@keyframes pulseWhats{
    0%{
        box-shadow: 0 0 0 0 #25d366;
    }
    100%{
        box-shadow: 0 0 20px 15px rgba(0, 0, 0, 0);
    }
}

@keyframes pulseTele{
    0%{
        box-shadow: 0 0 0 0 #0088cc;
    }
    100%{
        box-shadow: 0 0 20px 15px rgba(0, 0, 0, 0);
    }
}

/*footer -------------*/
footer {
    display: flex;
    background: #222;
    padding: 20px;
    text-align: center;
    color: #fff;
    flex-direction: column;
    align-items: center;
}

footer p{
    margin-bottom: 30px;
}
footer p a{
    text-decoration: none;
    color: #25d366;
}
footer span{
    margin-bottom: 10px;
    max-width: 70%;
    
}

/*button fly*/
#div-fixa{
    position: fixed;
    bottom: 20px;
    margin: 0 10px;
    background: rgb(89, 245, 122);
    width: 250px;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.5s all;
}

#div-fixa.shrink{
    width: 50px;
    transition: 0.5s all;
    overflow: hidden;
}


#div-fixa img{
    width: 50px;
    height: 50px;
    box-shadow: 0 0 20px 15px rgba(255, 255, 255, 0);
}
#div-fixa a{
    text-decoration: none;
}
#div-fixa a .flex-itens-button{
    display: flex;
    align-items: center;
}

#div-fixa a .flex-itens-button span{
    text-decoration: none;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: black;
    font-weight: 500;
    margin-left: 5px;
    min-width: 190px;
    opacity: 0;
}

#div-fixa a .flex-itens-button span.aparecer{
    transition: 0.5s all;
    opacity: 1;
}

.flutuar{
    animation-name: flutuar;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: ease-in-out;
}

@keyframes flutuar{
    from{
        transform: translate3d(0, 0, 0);
        filter: brightness(100%);
    }
    to{
        transform: translate3d(0, -15px, 0);
        filter: brightness(150%);
    }
}



/* scroll bar */

/* rolling background */
::-webkit-scrollbar-track{
    background-color: #0F2138;
}
::-webkit-scrollbar{
    width: 13px;
    background: #52a0ff;
}
::-webkit-scrollbar-thumb{
    background: #499bff;
    border-radius: 15px;
}

@media screen and (max-width: 1431px){
    html, body{
        overflow-x: hidden;
    }

      .menu-open-button span{
        white-space: nowrap;
      }

      .menu a {
        margin-left: 10px;
    }
    
    .about img{
        width: 400px;
        margin-left: 50px;
    }
    .text-about{
        max-width: 300px;
        min-width: 700px;
    }
    
    .about h1 {
        font-weight: 400;
        font-size: 2rem;
        text-transform: uppercase;
        letter-spacing: 2px;
    }
    
    .about h2 {
        margin-bottom: 20px;
        font-size: 1.2rem;
        letter-spacing: 2px;
    }
    
    .about p {
        font-size: 1rem;
        margin-bottom: 20px;
        margin-right: 50px;
        text-align: justify;
    
    }

    /*activity*/

    .services {
        background-color: #333;
        padding: 50px 20px;
        text-align: center;
        height: 120vh;
    }
    
    .services h2 {
        margin-bottom: 20px;
        font-size: 1.5rem;
        font-weight: 500;
        color: var(--text-color);
        letter-spacing: 2px;
    }
    
    .services h1{
        font-weight: 500;
        text-transform: uppercase;
        margin-top: 30px;
        font-size: 1.5rem;
        letter-spacing: 2px;
    } 
    
    #container {
        display: flex;
        justify-content: center;
        align-items: center;
    }
                
    #carousel, #navigation {
        flex: initial;
        display: block;
    }
                
    #carousel {
        overflow: hidden;
        border-radius: 4px;
    }

    
    .services .service-cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 5px;
        margin-top: -40px;
    }
    
    .services .service-card {
        display: flex;
        background-color: #15283F;
        width: 230px;
        padding: 20px;
        border-radius: 8px;
        color: #fff;
        text-align: center;
    }
    
    .services .service-card .text-card p{
        font-weight: bold;
        font-size: .8rem;
        padding-bottom: .9rem;
        text-transform: uppercase;
    }
    .text-card span{
        font-size: .9rem;
        letter-spacing: 1px;
    }

    #navigation{
        margin-top: -20%;
    }

    /* infos */

    .text-infos{
        max-width: 300px;
        min-width: 700px;
    }
    .infos img{
        width: 400px;
        margin-left: 50px;
    }

    .text-infos h1 {
        font-weight: 400;
        font-size: 1.5rem;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .text-infos h2 {
        margin-top: -20px;
        margin-bottom: 20px;
        text-transform: none;
        font-size: 2rem;
        font-weight: 500;
        color: #0F2138;
        letter-spacing: 2px;
    }

    .infos p {
        font-size: 1rem;
        margin-bottom: 20px;
        margin-right: 50px;
        text-align: justify;

    }

    /*Testemonials*/

    #testimonials{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        width: 100%;
        background-color: #0F2138;
        padding-bottom: 20px;
    }
    .testimonials-heading{
        margin-top: 100px;
    }
    .testimonials-heading h1{
        font-size: 2rem;
        font-weight: 400;
        color: #ffffff;
        text-transform: uppercase;
    }
    .testimonials-heading span{
        font-size: 1rem;
        color: #fff;
        margin-bottom: -15px;
        letter-spacing: 2px;
        
    }
    .testimonial-box-container{
        display: flex;
        max-width: 1430px;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        width: 100%;
        margin-top: -20px;
    }
    
    
    .testimonial-box{
        width: 350px;
        box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.1);
        padding: 20px;
        margin: 15px;
        border-radius: 1%;
        background-color: #70707017;
    }
    
    .testimonial-box:hover{
        transform: translateY(-10px);
        transition: all ease .3s;
    }
    
    .name-user{
        display: flex;
        flex-direction: column;
    }
    
    .name-user strong{
        color: var(--text-color);
        font-size: 1.1rem;
        letter-spacing: 0.5px;
    }
    
    
    .client-comments p{
        font-size: 0.8rem;
        color: #d6d6d6;
    }

    /*contact*/
    .contact {
        height: 100vh; 
    }
    
    .contact-text{
        max-width: 800px;
        padding-left: 150px;
    }
    
    .contact-text h1 {
        margin-bottom: 20px;
        font-size: 2rem;
        color: #fff;
        text-transform: uppercase;
        font-weight: 500;
    }
    
    .contact-text h2 {
        margin-bottom: 20px;
        font-weight: 500;
        font-size: 1.2rem;
        color: #fff;
    }
    
    .contact-text .h2-c{
        margin-bottom: -5px;
        font-weight: 500;
        font-size: 1.5rem;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: #fff;
    }
    
    .contact-text p {
        color: #fff;
        text-decoration: none;
        font-size: 1rem;
        padding-bottom: 15px;
    }



}



@media(max-width:1060px){
    .testimonial-box{
        width: 45%;
        padding: 10px;
    }
}


@media screen and (max-width: 992px){
    html, body{
        overflow-x: hidden;
    }
    .icon-header{
        display: inline-flex;
    }

    #check:checked~.icon-header #menu-icon{
        display: none;
    }
    #check:checked~.icon-header #close-icon{
        display: block;
    }

    .icon-header #close-icon{
       display: none; 
    }
    .navbar{
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 0;
        background: rgba(0, 0, 0, .1);
        backdrop-filter: blur(50px);
        box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
        overflow: hidden;
        transition: .3s ease;
    }

    #check:checked~.navbar{
        height: 21.6rem;
    }

    .navbar a{
        display: block;
        font-size: 1.1rem;
        margin: 1.5rem 0;
        text-align: center;
        transform: translateY(-50px);
        opacity: 0;
        transition: .3s ease;
    }

    #check:checked~.navbar a{
        transform: translateY(0);
        opacity: 1;
        transition-delay: calc(.15s * var(--i));
    }

    .global{
        flex-direction: column;
        
    }

    /*first page*/
    .menu-open-button{
        width: 170px !important;
        height: 50px;
        margin-top: 6px;
      }
    
      .menu-open-button span{
        font-size: .7rem;
        margin-top: 17px;
      }

      .menu-item{
        display: flex;
        height: 50px;
        top: 26px;
        border-radius: 10px;
        width: 80px;
        text-align: center;
        text-decoration: none;
      }

      .menu a{
        margin-left: 20px;
      }
      .menu .l2{
        margin-left: 40px;
      }

      .l1{
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: .8rem;
        text-transform: uppercase;
      }
      
      .l2{
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: .8rem;
        text-transform: uppercase;
        background-color: #25d366;
        
      }
     
      
    /*----First Page -----*/
    
    /*---hidden---*/

    .first-img img{
        width: 400px;
        position: relative;
        margin-bottom: 300px;
        margin-right: 10px;
    }
    .content-first{
        display: flex;
        flex-direction: column;
        align-items: end;
        justify-content: flex-end;
    }
    .first-page p {
        font-family: 'Poppins';
        font-size: 1rem;
        max-width: 350px;
        margin-top: -350px;
        padding-right: 20px;
    }

    /* About */

.about {
    justify-content: center;
    align-items: center;
    height: 120%;
}

.text-about{
    max-width: 400px;
    min-width: 400px;
    margin-left: 50px;
}
.about img{
    border-radius: 10%;
    margin-top: 20px;
    max-width: 250px;
    min-width: none;
    margin-right: 45px;
}
.about h1 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about h2 {
    margin-bottom: 20px;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.about p {
    font-size: .9rem;
    margin-bottom: 20px;
    margin-right: 50px;
    text-align: justify;

}

/* Apoio */

.infos {
    justify-content: center;
    align-items: center;
    height: 120%;
}
.content-infos{
    max-width: 992px;
}
.text-infos{
    max-width: 400px;
    min-width: 400px;
    margin-left: 50px;
}
.infos .eng-hidden{
    max-width: 300px;
    min-width: 300px;
    margin-left: 0;
    margin-top: 30px;
}


.infos h1 {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.infos h2 {
    display: flex;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 1rem;
    letter-spacing: 2px;
}

.infos p {
    font-size: .9rem;
    margin-bottom: 20px;
    margin-right: 50px;
    text-align: justify;

}

.text-infos .line2{
    margin-left: -50px;
}

/*Testemonials*/

#testimonials{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 120%;
    background-color: #0F2138;
    padding-bottom: 20px;
}
.testimonials-heading{
    margin-top: 50px;
}
.testimonials .testimonials-heading h1{
    font-size: 22px;
}


/*contact*/
.contact {
    height: 120%; 
}

.contact-text{
    padding-left: 0;
    text-align: justify;
}

.contact-text button{
    padding: 12px 18px;
    margin-left: 20px;
}

.contact-text a button {
    font-size: 15px;
}

/* Footer */
footer {
    display: flex;
    background: #222;
    padding: 20px;
    text-align: center;
    color: #fff;
    flex-direction: column;
    align-items: center;
}

footer p{
    font-size: 10px;
    margin-bottom: 30px;
}
footer span{
    font-size: 10px;
    max-width: 75%;
    text-align: justify;
    margin-bottom: 10px;
    
}

}

@media(max-width:790px){
    .testimonial-box{
        width: 100%;
    }
    .testimonials-heading h1{
        font-size: 1.4rem;
    }
}
@media(max-width:340px){
    .box-top{
        flex-wrap: wrap;
        margin-bottom: 10px;
    }
    .locale{
        margin-top: 10px;
    }
}