/* Colors
light blue = #04B2D9
dark blue = #15547D
orange = #F28705
font-family: 'Montserrat', sans-serif;
font-family: 'DM Sans', sans-serif;
*/

/* ----------- MAIN --------------- */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.overflow {
    overflow: hidden;
}

html {
    font-size: 62.5%;
    width: 100%;
    overflow-x: hidden;
    font-display: swap;
    scroll-behavior: smooth;
}

h1,h2,h3,h4,h5,h6,li,a {
    font-family: 'Montserrat', sans-serif;
}

p,span,input,textarea {
    font-family: 'DM sans', sans-serif;
    
}

li {
    list-style: none;
    color: white;
}

a {
    text-decoration: none;
    color: white;
}

h3 {
    display: inline-block;
    font-size: 4rem;
    color: #15547D;
    margin: 4rem 0;
    position: relative;
    
}

h3::after {
    content: '';
    width: 4rem;
    height: 0.5rem;
    background-color: #15547D;
    position: absolute;
    bottom: -1.2rem;
    left: 0;
    
}

h4 {
    font-weight: bold;
    font-size: 3.2rem;
    line-height: 5rem;
    
    color: #15547D;
}


.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.justify-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.align-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.margin-left {
    margin-left: 5%;
}

.margin-right {
    margin-right: 5%;
}

.center {
    width: 90%;
    margin: 0 auto;
}
.sucess-email {
    display: block;
    width: 100%;
    bottom: 5rem;
    padding: 1rem 0;

    color: white;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-size: 1.6rem;
    background-color: #04B2D9;

    border-radius: 5px;
}

/* Rolagem lateral */
::-webkit-scrollbar-track {
    background-color: #F4F4F4;
}
::-webkit-scrollbar {
    width: 6px;
    background: #F4F4F4;
}
::-webkit-scrollbar-thumb {
    background: #F28705;
}

.carousel {
    display: none;
}

.img-phone {
    width: 100vw;
    height: 60vh;
    background: url(../assets/carosel-2.jpg);
    background-size: cover;
    background-position: center center;
}

.ready {
    position: fixed;
    z-index: 100;
    width: 100vw;
    height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: black;
}


/* -------------------------------------------------------------------- */


/* ----- HOME ----- */

#home header {
    width: 100%;
    min-height: 10vh;

    padding-top: 3rem;
}

#home nav {
    display: none;
}

.logo {
    width: 18rem;
    height: 6.4rem;
}

.one,
.two,
.three {
    width: 100%;
    height: 0.7rem;
    margin: 0.7rem auto;
    background-color: #04B2D9;
    border-radius: 2px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.menu-toggle {
    width: 5.5rem;
    height: 4.5rem;

    cursor: pointer;
}

.menu-section.on {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 10;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;

    background: rgba(0, 0, 0, 0.9);
    -webkit-transition: 1s;
    -o-transition: 1s;
    transition: 1s
}

#home .menu-section.on nav {
    display: block;
    height: 100%;
}

.menu-section.on .menu-toggle {
    position: absolute;
    right: 5%;
    top: 3rem
}
.menu-section.on .one {
    -webkit-transform: translate(0, 1.5rem) rotate(45deg);
        -ms-transform: translate(0, 1.5rem) rotate(45deg);
            transform: translate(0, 1.5rem) rotate(45deg);
}

.menu-section.on .two {
    opacity: 0;
}

.menu-section.on .three {
    -webkit-transform: translate(0, -1.5rem) rotate(-45deg) ;
        -ms-transform: translate(0, -1.5rem) rotate(-45deg) ;
            transform: translate(0, -1.5rem) rotate(-45deg) ;
}

.menu-section.on ul {
    margin-top: 11vh;
    width: 100vw;
    text-align: center;
}

.menu-section.on ul li a{
    font-size: 2.4rem;
    text-transform: uppercase;
    display: block;
    height: 15rem;
    line-height: 15rem;
}

.menu-section.on ul li a:active {
    background-color: rgba(255, 255, 255, 0.459);
}

#home {
    background: url(../assets/bg-principal.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}

#home section {
    min-height: 90vh;
    padding: 8rem 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    justify-content: space-around;
}

#home .experience {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

#home .experience img {
    width: 13rem;
}

#home .experience span {
    font-size: 3.8rem;
    text-align: center;
    margin-left: 1rem;
    color: white;
}

#home .btn-budget {
    display: block;
    text-align: center;
    width: 90%;
    max-width: 400px;
    line-height: 8rem;
    margin: 5rem 0;
    font-size: 2rem;

    border-radius: 15px;
    background-color: #F28705;
    -webkit-transition: 500ms;
    -o-transition: 500ms;
    transition: 500ms;

}

#home .btn-budget:hover {
    background-color: #ce7100e1;
    -webkit-box-shadow: 8px 9px 28px -4px rgba(0,0,0,0.30);
        box-shadow: 8px 9px 28px -4px rgba(0,0,0,0.30);
}

/* ----- ABOUT ----- */
#about {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

#about section{
    margin: 10rem 0;
}

#about section p {
    font-size: 3rem;
    line-height: 5.5rem;
    color: rgba(0, 0, 0, 0.623);
}

/* ----- SERVICES ----- */

#services article {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

#services .card{
    border-radius: 8px;
    border: solid rgba(0, 0, 0, 0.116) 1.5px;

    margin: 3rem 0;
}

#services .card div:nth-child(1) {
    padding: 4rem 0;
    border-bottom: solid rgba(0, 0, 0, 0.116) 1px;
    width: 100%;
}

#services .card div:nth-child(2) {
    padding: 5rem 0;
}

#services .card img {
    display: block;
    margin: 0 auto;
    width: 24rem;
    height: 100%;
}

#services .card h4 {
    text-align: center;
}

#services .card p {
    text-align: center;
    font-size: 2rem;
    color: rgba(0, 0, 0, 0.623);

}

/* ----- CONTACT ----- */

#contact {
    background: url(../assets/bg-contact.jpg) no-repeat;
    background-size: cover;
    background-position:left bottom;
    position: relative;
}

.modalEmail {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;

    z-index: 20;
    background: rgba(0, 0, 0, 0.911);
    transition: 200ms;

    display: none;
}

#contact .loading {
    background: url(../assets/loading.svg);
    width: 200px;
    height: 200px;

}

#contact .modalEmail button {
    border: none;
    background: white;
    outline: none;

    cursor: pointer;
}

.modalEmail button i {
    font-size: 5rem;
    position: relative;
    top: -8rem;
}

#contact .return-email {
    background-color: white;
    padding: 12rem 4rem;
    border-radius: 5px;
    transition: 500ms;
}

#contact .sucess {
    display: none;
}

#contact .error {
    display: none;
}

#contact .sucess h5 {
    color: rgb(43, 189, 74);
}

#contact .error h5 {
    color: rgb(196, 42, 42);
}

#contact .return-email h5{
    display: block;
    font-size: 15rem;
    text-align: center;
    transition: 500ms;
}

#contact .return-email p {
    margin-top: 8rem;
    font-size: 2.6rem;
    font-weight: bold;
    text-align: center;
    color: black;

    transition: 500ms;
}

#contact section {
    width: 100%;
    padding: 9rem 0;
}

#contact .box-email {
    background-color: white;
    border-radius: 5px;
    max-width: 50rem;
    position: relative;
    padding: 3rem;

    -webkit-box-shadow: 8px 9px 28px -4px rgba(0,0,0,0.20);
    box-shadow: 8px 9px 28px -4px rgba(0,0,0,0.20);
}

#contact .box-email h3 {
    margin: 2rem 0 4rem 0;
}

.send-email input {
    width: 100%;
    height: 6rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    font-size: 1.8rem;
    padding-left: 2rem;
    outline:none;
    margin-bottom: 1rem;
}

.send-email input#bot {
    display: none;
}

.send-email input:focus {
    border-color: #CE580F;
}

.send-email textarea {
    font-size: 1.8rem;
    outline: none;
    padding: 1.5rem 2rem;
    width: 100%;
    height: 20rem;
    resize: none;
    margin-bottom: 1rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.send-email textarea:focus {
    border-color: #CE580F;
}

.send-email input.btn-submit {
    margin-top: 1rem;
    width: 100%;
    height: 6rem;
    cursor: pointer;
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    background: url(/assets/submit.svg) no-repeat;
    background-position: 95%;
    background-size: 10%;
    background-color: #F28705;
    -webkit-transition: 800ms;
    -o-transition: 800ms;
    transition: 800ms;
    border: none;
    border-radius: 10px;
}

.send-email input.btn-submit:hover {
    background-color: #CE580F;
}

#contact footer {
    padding-top: 2rem;
    background-color: rgba(35, 35, 35, 0.9);
}

#contact footer h4 {
    color: #216999;
    font-size: 2.8rem;
    text-align: center;
}

#contact footer h4 span {
    font-size: 2.9rem;
}


#contact footer .box-icons{   
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 2rem 0;
}

.box-icons a {
    margin: 0 2rem;
    font-size: 2rem;
}

.box-icons a:hover {
    color: #CE580F;
}

#contact .icon-contact {
    margin-right: 1rem;
    font-size: 3rem;
}


/* ----- social ----- */

.social-links {
    position: absolute;
    top: -5.9rem;
    left: 45%;
}

.social-links span {
    display: inline-block;
    font-size: 4rem;
}

.social-links p {
    display: none;
}

.social-links a {
    padding: 1rem;
    width: 6rem;
    border-radius: 4px 4px 0 0;
}

.social-links a:nth-child(1) {
    background: -o-linear-gradient(317.56deg, #853CD4 0%, #BA3865 48.95%, #F9AD07 95.91%);
    background: linear-gradient(132.44deg, #853CD4 0%, #BA3865 48.95%, #F9AD07 95.91%);
}
.social-links a:nth-child(2) {
    background: #365CA8;
}
.social-links a:nth-child(3) {
    background:#1ebea5;
}