* {
    margin:0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}


:root {

    --blue:#005F83;
    --green:#00AA99;
}

html {
    scroll-behavior: smooth;
}


header {
    position:fixed;
    width:100%;
    height: 90px;
    background-color: var(--blue);
    z-index:999;
    padding:0px 20px;
}

.header-scrolled {
    transition: all 1s;
    color:var(--green);
    background-color: white;
}

.header-scrolled a.main-menu-link {
    color:#00AA99;

}

header .container {
    display: flex;
    padding-top:25px;
    justify-content: space-between;
}

.Logo-Partnet4Dev {
    width:140px;
    margin-top: -5px;
}

ul.main-menu {
    list-style: none;
    display: flex;
    animation: main-menu-load 300ms ease-in;
}

ul.main-menu li{
    margin:7px 30px;
    
}

a.main-menu-link{
    text-decoration: none;
    color:white;
    font-weight: 500;
    padding-top:10px;
    transition: 0.5s;
    font-size: 18px;
}

a.main-menu-link:hover{
    color:#00AA99;
}

span.menu-icon {
    display: none;
    cursor: pointer;
}

span.menu-close {
    display: none;
    cursor: pointer;
}

section {
    width:100%;
    
}

.section-title {
    font-size: 32px;
    color:var(--green);
    font-weight: 800;
    margin-bottom: 1.5em;
}

.container {
    width:80%;
    margin:0 auto;
}



/* ==================================================================================== */

/*  HERO SECTION */

.hero {
    width:100%;
    height: 650px;
    background-color:var(--blue);
}

.cta {
    padding-top: 200px;
}

.cta h1{
    font-size:2.4em;
    font-weight: 800;
    margin-bottom:1em;
    animation: left-load 0.5s ease-in;
    color:white;
}

.cta p {
    font-weight: 400;
    font-size:1.3em;
    line-height: 2em;
    margin:40px 0px;
    animation: left-load 0.5s ease-in;
    color:white;
}

a.btn-cta {
    padding:20px 30px;
    background-color:var(--green);
    border-radius:5px;
    color:white;
    text-decoration:none;
    animation: bottom-load 0.5s ease-in;
    font-size: 1.2em;
    margin-top:1.3em;
}

a.btn-cta:hover {
    background-color:#2CCC99;
}

.img-hero {
    position: absolute;
    width: 100%;
    height:800px;
    background-image: url(../images/cover01.png);
    background-repeat: no-repeat;
    background-size:1000px;
    background-position: bottom;
    bottom:263px;

}

.hero-panel {
    background: var(--green);
    display: block;
    width: 100%;
    height: 650px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    background-image: url(../images/dots-bg.png);
    background-size:cover;
    background-position: left bottom;
    background-blend-mode: soft-light;
}

/*  //HERO SECTION */

/* ==================================================================================== */

/*  SOBRE SECTION */


.sobre {
    padding: 80px 0px;
}

.sobre-content {
    padding: 80px 0px;
}

.sobre-content p{
    margin-bottom:15px;
    line-height: 2em;
    color:var(--blue);
    animation: left-load 0.5s ease-in;
    font-weight: 400;
}

.sobre-content-image {
    position: absolute;
    display: block;
    width:40%;
    border-radius:5px;
}

/*  //SOBRE SECTION */



/* ==================================================================================== */



/*  SERVICOS SECTION */

.servicos {
    margin-top: 60px;
    padding: 80px 0px;
    position: relative;
}

.servicos-row {
    display: flex;
    flex-flow: wrap;
    gap:40px;
}

.servicos-box {
    display: block;
    border:1px solid #171717;
    border-radius: 5px;
    width:48%;
}

.servicos-box h3 {
    display: flex;
    align-items: baseline;
    color:#171717;
    font-weight: 700;
}

.servicos-number {
    display: block;
    width:70px;
    padding-top:50px;
    padding-bottom: 15px;
    text-align: center;
    background-color:var(--green);
    color:white;
    text-align: center;
    margin-top:-20px;
    margin-left:20px;
    margin-right: 20px;
    font-size:1.1em;
    border-radius:5px;
    font-weight: 800;
    
}

.servicos-box strong {
    display: block;
    color:var(--green);
    margin-left:110px;
    margin-top:-20px;
    margin-bottom:30px;
    font-weight: 500;
    font-size:1.2em;
}

.servicos-box p {
    display: block;
    margin:0px 50px 50px 50px;
    color:#171717;
    line-height: 2em;
}

.servicos-quote {
    display: block;
    background-color:var(--blue);
    color:white;
}


.servicos-quote p {

    color:white;
    font-size: 1.5em;
    margin:0 auto;
    padding:80px 0px;
    line-height: 1.5em;
}



/*  //SERVICOS SECTION */

/* ==================================================================================== */

/*  SERVICOS CARDS SECTION */

.servicos-cards {
    padding: 80px 0px;
    background-color:#F2F2F2;
}

.servicos-cards-content {
    display: flex;
    flex-flow: wrap;
    gap: 40px;
}


.servicos-cards-content .card {
    width:30%;
    min-height: 400px;
    background-color:white;
    border-radius:4px;
    padding: 40px;
} 


.servicos-cards-content .card:hover {
    box-shadow: 0 4px 44px rgba(17,29,48,.26);

} 

.card-icon {
    display: block;
    width:100px;
    margin:0 auto;
    margin-top: -90px;
}

.servicos-cards-content .card h3{
    margin:10px 0px;
    text-align: center;
    font-weight: 600;
    font-size: 1.3em;
    color:var(--green);
    margin-bottom:30px;
} 

.servicos-cards-content p {
    color:#171717;
    line-height: 2em;
} 


/*  //SERVICOS CARDS SECTION */

/* ==================================================================================== */

/*  CONTATO */

.contacto {
    background-color:var(--blue);
}

.contacto-content {
    padding:80px 0px;
    position: relative;
    color:white;
}

.contacto-content h2 {
    margin-bottom:40px;
    font-weight: 500;
    color:white;

}

.contacto-content h3 {
    margin-bottom:15px;
    color:#707070;
}

.contacto-content p {
    margin-bottom:15px;
    color:#707070;
}

.contacto-content img {
    position: absolute;
    display: block;
    width:50%;
    bottom: -80px;
    right: 0px;
   

}

.email-icon {
    margin-right:15px;
    vertical-align: bottom;
}

/*  //CONTACTO SECTION */

/* ==================================================================================== */

/*  FOOTER  */


footer {
    padding: 80px 0px;
    background-color:var(--blue);
    color:white;
    text-align: center;
    padding-top:170px;

}



/*  //FOOTER */

/* ==================================================================================== */

/*  MOBILE */



@media only screen and (max-width: 690px) {

    header {
        padding:0px 10px;
    }

    header .container {
        display: block;
    }

    .hero {
        height:570px;
    }

    .hero-content {
        background-size:contain;
        display: block;
    }

    .img-hero {
        height: 550px;
        background-size:contain;
      }

    span.menu-icon {
        display: block;
        position:absolute;
        top:23px;
        right:20px;
        cursor:pointer;
        color:black;
    }

    span.menu-close {
        display: block;
        color:white;
        position:absolute;
        top:20px;
        right:20px;
        margin-bottom: 20px;
        cursor:pointer;
    }

    ul.main-menu {
        position:fixed;
        right:0px;
        top:0px;
        display: block;
        width:40%;
        height: 100vh;
        background-color: #2F6661;
        padding-top:80px;
        transform:translateX(100%); 
        transition:transform 0.6s ease-in;
        text-align: right;
    }

   .main-menu.open {
        transform:translateX(0%); 
    }

    ul.main-menu li {
        display: block;
        padding:10px 10px;
      }

    ul.main-menu li .main-menu-link {
    color:white;
    }

    .hero-content {
        flex-direction: column;
    }

    .col-cta {
        width: 100%;
        height: 300px;
    }

    .cta {
        position: relative;
        padding-top:100px;
        text-align: center;
        margin:0px;
    }

    .cta h1 {
        font-size: 1.3em;
        margin-bottom: 15px;
    }

    .cta p {
        width:100%;
        font-size: 1em;
    }

    .col-img-hero {
        position:absolute;
        width: 100%;
        height: 330px;
        background-image: linear-gradient(#2CCC99, #00AA99);
      }

      .img-hero {
        height: 330px;
        background-size: cover;
      }

    .sobre {
        padding: 40px 0px;
    }
    
    .sobre-content {
    flex-direction: column;
    justify-content: space-around;
    padding-top: 100px;
    
    }


    .sobre-content .col {
        width: 90%;
        margin:0 auto;
    }

    .sobre-content-image {
        width: 90%;
        bottom: -880px;
      }

    .container {
        width: 100%;
        margin: 0 auto;
    }

    .servicos-content {
        padding:20px;
    }

    .servicos-row {
        flex-direction: column;
    }


    .servicos-box h3 {
        flex-direction: column;
        align-items: center;
        margin-bottom:15px;
    }

    .servicos-number {
        margin:0 auto;
    }

    .servicos-box strong {
        text-align: center;
        
    }

    .servicos-box p {
        margin:20px;
    }

    .servicos-quote img {
        width: 100%;
    }

    .servicos-quote {
        display: block;
        padding-top:50px;

    }

    .servicos-quote img {
        width: 100%;
    } 

    .servicos-quote p {
        display: block;
        position: relative;
        width: 90%;
        padding:30px 15px;
        top:-30px;
        left: 0px;
        margin: 0 auto;
        font-size:1.2em;
        text-align:center;
    }

    .servicos-cards-content {
        flex-direction: column;
    }

    .servicos-cards-content .card {
        min-height: 400px;
        padding: 20px;
        margin:0 auto;
      }

      .contacto-content {
        text-align: center;
      }

      .contacto-content img {
        position: absolute;
        display: block;
        width:80%;
        margin:0 10%;
        bottom:-150px;
        right: initial;
      }

      footer {
        text-align: center;
    }
  }

  @keyframes main-menu-load {

    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }

  }

  @keyframes left-load {
    0% {
        transform:translateX(-50%);
        opacity: 0;
    }
    100% {
        transform:translateX(0);
        opacity: 1;
    }
  }

  @keyframes bottom-load {
    0% {
        transform:translateY(-100%);
        opacity: 0;
    }
    100% {
        transform:translateY(0);
        opacity: 1;
    }
  }

  @keyframes opacity-load {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
  }
