/* Estilizações básicas ========================================================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

:root {
    --blue: #0064de;
    --dark-blue: #0d4c99;
    --red: #E82728;
    --gray: #F0F1F3;
}
/* Resets de CSS */
*, 
*:after,
*:before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    border: none;
}

html {
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--blue);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-blue);
}

body{
    font-size: 100%;
    list-style-type: none;
    position: relative;
    z-index: -1000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

a:visited, a {
    color: #000;
}

a:visited:hover, a:hover {
    color: var(--blue);
    font-weight: 700;
}

p {
    font-size: 20px;
    color: #000;
}

h1 {
    font-size: 40px;
    font-weight: 700;
    color: var(--blue);
}

h2 {
    font-size: 24px;
    font-weight: 400;
}

h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 28px;
}

h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--blue);
}

h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.container{
    padding: 0 180px;
}

#menuMobile {
    display: none;
}

i.botaoAbrir, #navbar i.navAbrir {
    display: none;
}
/* Estilizações básicas ========================================================================================================== */

#navbar {
    width: 100%;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: -120px;
    transition: top 500ms ease;
    z-index: 1200;
    padding-top: 5px;
    padding-bottom: 5px;
    overflow: hidden;
    box-shadow: 0px 5px 16px rgba(13, 76, 153, 0.1);
}

#navbar .logoHeader {
    width: 220px;
}

#navbar .login {
    box-shadow: 0px 0px 16px rgba(13, 76, 153, 0.35);
}

#loginModal, .modal-content {
    display: none;
}

.modal {
    position: fixed;
    z-index: 11000;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.closeModal {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 30px;
}

.modal-content {
    background-color: #fff;
    width: 30%;
    position: relative;
    padding: 60px;
    border-radius: 30px 10px 10px;
    box-shadow: 0px 30px 80px rgba(0, 0, 0, 0.35);
}

.modal-content label {
    font-size: 20px;
}

.modal-cancelPSW {
    width: auto;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

input[type=text], input[type=password], input[type=email], input[type=tel], textarea {
    width: 100%;
    padding: 7px 20px;
    margin: 8px 0;
    display: inline-block;
    border-top: 2px solid var(--gray);
    border-bottom: 2px solid var(--blue);
    margin-bottom: 20px;
    outline: none;
    font: 20px 'Montserrat', sans-serif;
}

.modal-content button, .contato button {
    width: 100%;
    padding: 15px;
    border-radius: 100px;
    background: var(--blue);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
}

.modal-content input[type=checkbox] {
    width: auto;
    margin-top: 20px;
}

.erro-login {
    width: 100%;
    background: #e25555;
    text-align: center;
    margin-top: 20px;
    padding: 10px;
    position: relative;
    display: none;
}

.erro-login p {
    color: #fff;
    padding: 0 40px;
}

.fecha-erro {
    color: #fff;
    font-size: 30px;
    position: absolute;
    top: 7px;
    right: 10px;
}

.modal-cancelPSW{
    margin-top: 20px;
}

.modal-content .btn-cancel {
    width: auto;
    padding: 10px 18px;
    background-color: var(--red);
}

.psw {
    cursor: pointer;
    font-size: 18px;
}

.psw:hover {
    color: var(--blue);
    font-weight: 700;
}

.modal-psw {
    position: absolute;
    z-index: 10;
    width: 35%;
    padding: 80px;
}

.modal-psw fieldset {
    margin: 40px 0;
}

.top {
    position: relative;
    height: 100vh;
    z-index: -2;
    overflow: hidden;
}

header {
    width: 100%;
    height: 117px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10;
}

.logoHeader {
    width: 295px;
}

ul li {
    display: inline-block;
    margin: 0 1em;
    cursor: pointer;
    transition: 300ms, ease;
    font-size: 18px;
}

ul li:hover {
    color: var(--blue);
    font-weight: 700;
}

.btn-login {
    width: auto;
    padding: 15px 20px;
    font-size: 20px;
    color: #fff;
    background: var(--blue);
    align-self: center;
    border-radius: 20px 10px 10px;
    cursor: pointer;
}

.btn-login i {
    color: #fff;
    margin-right: 20px;
    font-size: 20px;
}

input {
    width: 100%;
    outline: none;
    font-size: 18px;
    padding-right: 20px;   
}

.hero {
    width: 100%;
    height: 100%;
    z-index: -1;
    position: absolute;
    top: 0;
}

i {
    font-size: 40px;
    color: var(--blue);
    z-index: 10;
    cursor: pointer;
}

.hero i {
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
}


.slide1 {
    width: 100%;
    height: 100%;
    flex-direction: column;
    display: flex;
    justify-content: center;
    background: url("../images/low-angle-businessman.png") no-repeat right;
    z-index: 1;
}

.slide-infos {
    z-index: 2;
    width: 43rem;
}

.slide-infos h1, .slide-infos h2, .chamada h1, .chamada h2 {
    margin-bottom: 40px;
}

.slide1::after {
    position: absolute;
    content:"";
    height:100%;
    width:100%;
    top:0;
    left:0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 25%,rgba(250, 250, 250, 0) 85%);
    z-index: 1;
}

.slide1 img {
    z-index: 2;
    width: 1190px;
    position: absolute;
    opacity: 25%;
    left: -394px;
    top: 203px;
    transform: rotate(13.35deg);
}

.btn-principal {
    width: 416px;
    height: 63px;
    cursor: pointer;
    z-index: 2;
    background: var(--blue);
    box-shadow: 0px 14px 16px rgba(13, 76, 153, 0.35);
    border-radius: 50px;
    font-weight: 700;
    color: #fff;
    font-size: 24px;
    transition: transform 300ms ease, box-shadow 300ms ease;
}

.slide1 .btn-principal {
    margin: 20px 70px;
    
}

.btn-principal:hover {
    transform: scale(105%);
    box-shadow: 0px 30px 30px rgba(13, 76, 153, 0.35);
}

.sobre, .sobre2 {
    width: 100%;
    height: 765px;
    background: #fff url("../images/Macbook.png") no-repeat 0px -52px;
    background-size: 1100px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    position: relative;
}

.texto {
    width: 612px;
    z-index: 50;
}

.linhas {
    width: 389px;
    height: 242px;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 842px;
    z-index: 50;
}

.linhas .l1, .l2 {
    background: var(--blue);
    border: 2px solid var(--blue);
    border-radius: 10px;
    position: absolute;
}

.linhas .l1 {
    width: 377px;
    right: 0px;
}

.linhas .l2 {
    width: 242px;
    right: -122px;
    transform: rotate(90deg);
}

.linhas .circulo {
    width: 13px;
    height: 13px;
    border: 4px solid var(--blue);
    border-radius: 13px;
    position: absolute;
    left: 0px;
}

.sobre2 {
    align-items: flex-start;
}

.sobre2 img {
    width: 1332px;
    position: absolute;
    right: 0;
}

.sobre2 .texto {
    text-align: right;
}

.sobre2 .linhas {
    transform: rotate(180deg);
    right: 675px;
}

.sobre2::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top:0;
    left:0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 35%,rgba(250, 250, 250, 0) 85%);
}

.titulo {
    width: 100%;
    height: 207px;
    background: linear-gradient(to right, var(--blue) 0%, var(--dark-blue) 100%);
    background-size: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

#scroll-sobre {
    width: 100%;
    height: 50px;
    position: absolute;
    top: -60px;
}

#scroll-diferenciais {
    width: 100%;
    height: 50px;
    position: absolute;
    top: -60px;
}

#scroll-funcionalidades {
    width: 100%;
    height: 50px;
    position: absolute;
    top: -60px;
}

#scroll-contato {
    width: 100%;
    height: 50px;
    position: absolute;
    top: -60px;
}

.titulo h3, .titulo p {
    color: #fff;
    text-align: center;
}

.titulo img {
    position: absolute;
    left: 0;
    top: -255px;
    width: 873px;
    transform: scaleX(-1);
}

.blocos {
    width: 100%;
    padding: 70px 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(74.14% 187.6% at 22.37% 54.1%, rgba(0, 100, 222, 0.11) 0%, rgba(255, 255, 255, 0) 100%);
}

.blocos .bg {
    position: absolute;
    z-index: -1;
}

.box-container {
    width: 1280px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.box-diferencial {
    width: 400px;
    height: 400px;
    background: #fff;
    border-radius: 50px 20px 20px;
    box-shadow: 17px 18px 35px rgba(13, 76, 153, 0.09);
    padding: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    text-align: center;
}

.box-diferencial img {
    height: 100px;
}

.box-diferencial img.ch {
    height: 80px;
}

.chamada {
    width: 100%;
    height: 740px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    text-align: right;
    position: relative;
    padding-right: 383px;
    overflow: hidden;
}

.chamada img {
    position: absolute;
    bottom: 0;
    left: 283px;
}

.chamada img.cont-logo {
    opacity: 25%;
    z-index: -1;
}

.chamada img.formas-fundo {
    z-index: -1;
    top: 86px;
    left: 298px;
}

.chamada img.formas-fundo2 {
    z-index: -1;
    top: 176px;
    left: 823px;
}

.titulo i {
    color: #fff;
}

img.bg-titulo {
    left: 55%;
    transform: scaleX(1);
}

#funcionalidades .blocos {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px;
}

#funcionalidades .blocos img.bg-func {
    width: auto;
    height: auto;
    transform: scaleX(-1);
    position: absolute;
    bottom: 0;
    left: 0;
}

.func-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.box-funcionalidade {
    width: 752px;
    min-height: 200px;
    padding: 40px 50px;
    background: #fff;
    border-radius: 50px 20px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 17px 18px 35px rgba(13, 76, 153, 0.09);
}

.func1 {
    margin: 0 650px 77px 0;
}

.func2 {
    margin: 0 0 77px 650px;
}

.func3 {
    margin: 0 auto;
    width: 900px;
}

.func4 {
    width: 1244px;
    margin: 0 0 77px 158px;
}

.func5 {
    width: 900px;
    margin: 0 650px 77px 0;
}

.box-funcionalidade img {
    width: 100px;
    margin-right: 80px;
}

.func-container .conex {
    position: absolute;
    z-index: -1;
    top: 119px;
    height: 1866px;
}

.clientes {
    width: 100%;
    height: 826px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-bottom: 90px;
}

.clientes .cliente-feliz {
    width: 750px;
    transform: scaleX(-1);
    position: absolute;
    bottom: -20px;
    right: 70px;
    z-index: 20;
}

.clientes .infos {
    width: 1050px;
    text-align: center;
    position: relative;
}

.clientes .infos p {
    padding: 0 100px;
}

.cliente {
    width: 100%;
    height: 100%;
    padding: 50px;
    text-align: left;
    position: relative;
    display: grid;
    grid-template-columns: 168px 1fr;
    gap: 50px;
}

.logo-cliente {
    width: 168px;
    height: 168px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cliente .eurosul {
    background: #E82728;
}

.logo-cliente img {
    width: 100%;
}

.cliente p.sobre-cliente {
    font-size: 18px;
    padding: 0;
}

.controlClientes {
    display: flex;
    gap: 15px;
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
}

.control {
    width: 15px;
    height: 15px;
    border: 3px solid var(--blue);
    border-radius: 50%;
    cursor: pointer;
}

.bolinha {
    background: var(--blue);
}

.local {
    width: 100%;
    padding: 80px 180px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(74.14% 187.6% at 22.37% 54.1%, rgba(0, 100, 222, 0.11) 0%, rgba(255, 255, 255, 0) 100%);
}

.local iframe {
    width: 100%;
    height: 600px;
    margin: 30px 0;
    border-radius: 50px 20px 20px;
    box-shadow: 4px 11px 35px rgba(13, 76, 153, 0.2);
}

.local img {
    width: 100%;
    position: absolute;
    bottom: 0;
    z-index: -1;
}

.contato {
    width: 100%;
    background: var(--gray);
    padding: 60px 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.contato p {
    padding: 0 20rem;
    text-align: center;
    margin-bottom: 2.5rem;
}

.contato-content {
    width: 50%;
    background: #fff;
    padding: 50px;
    border-radius: 70px 20px 20px;
    box-shadow: 0px 20px 80px rgba(13, 76, 153, 0.2);
}

.contato-content fieldset {
    display: flex;
    gap: 20px;
}

.contato-content fieldset div {
    width: 100%;
}

.mvv {
    width: 100%;
    padding: 5rem 20rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 3.5rem;
    background: linear-gradient(to right, var(--blue) 0%, var(--dark-blue) 100%);
    position: relative;
    overflow: hidden;
}

.texto-empresa, .box-mvv-container {
    z-index: 2;
}

.texto-empresa h1 {
    text-align: center;
    color: #fff;
}

.texto-empresa p {
    padding: 0 5em;
    margin-top: 1em;
    text-align: justify;
    color: #fff;
}

.box-mvv-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.box-mvv {
    width: 30%;
    height: 20rem;
    padding: 1.25rem;
    background: #fff;
    box-shadow: 0 25px 15px #091b291f;
    border-radius: 10px;
    text-align: center;
    transition: transform 300ms ease;
}

.box-mvv:hover {
    transform: scale(1.1);
}
.box-mvv ul li {
    display: block;
}

.mvv img {
    position: absolute;
    z-index: 1;
}

footer {
    width: 100%;
    height: 360px;
    background: var(--dark-blue);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-footer {
    width: 268px;
}

footer ul li {
    display: block;
    margin: 0;
}

footer a:visited, footer a, footer a:visited:hover, footer a:hover, footer i {
    color: #fff;
}

footer .midias-sociais ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

footer .midias-sociais ul li {
    display: inline-block;
}

.registrado {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 10px;
}

.registrado p {
    color: #fff;
    font-size: 16px;
}

/* Pop-up de boas-vindas ao novo site */
.pop-up-container {
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: 5000;
    display: none;
}

.mostra-pop-up {
    display: block;
}

.pop-up {
    background: #fff;
    width: 50%;
    padding: 5rem;
    border-radius: 40px 10px 10px;
    z-index: 1;
    text-align: justify;
    position: absolute;
    display: flex;
    flex-direction: column;
    right: 210px;
    top: 110px;
}

.pop-up .ponta {
    width: 50px;
    height: 50px;
    background-color: #fff;
    position: absolute;
    border-radius: 5px 0 0 0;
    top: -20px;
    right: 25px;
    transform: rotate(45deg);
}

.pop-up i {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
}

.pop-up p {
    margin: 2rem 0 5rem;
}

.pop-up .btn-principal {
    align-self: center;
}

.fundo-pop-up {
    width: 100%;
    height: 100%;
    background: #0000007d;
    position: absolute;
}