@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root{
    --white-color:#FFFFFF;
    --roxo-color:#6A3DB5;
    --pink-color:#98163d;
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html,body{
    height: auto;/*aumentar o degrade*/
    margin: 0;
    padding: 0;
}




body{
    font-family: 'Poppins', sans-serif;
    background-image: linear-gradient(to right top, #acc6ee, #85a6e2, #6285d4, #4364c5, #2743b2);
    margin: 0;
    padding: 0;
    text-rendering: optimizeLegibility;
    background-size: 100% 100%;
    background-attachment: fixed;
    background-position: center top;
    background-repeat: no-repeat;    
    overflow-x: hidden; /*isto tira o scroll horizontal*/   
}



.top-image{
    position: absolute;
    width: 101.5%;
    height: 2053.76px;
    left: -5px;
    top: 0px;
}

.top-image2{
  display: none;
  margin-left: -10px;
}


.bottom-image2 img{
  display: none;
  margin-left: -10px;
  
}
.bottom-image3 img{
  display: none;
  margin-left: -10px;
}
.bottom-image4 img{
  display: none;
  margin-left: -10px;
}
.bottom-image5 img{
  display: none;
}

/*imagem de baixo*/
.bottom-image{
    position: absolute;
    z-index: -1;
    display: flex;
    width: 100%;
    height: auto;
    flex-direction: column;
    background-position: bottom;
    height: 515px;
    padding-top: 86%;
    /*background-image: url(/imagens/fundo2.png);*/
    /*position: absolute;*/
    /*z-index: -1;*/
    /*display: flex;*/
    /*width: 100%;*/
    /*height: auto;*/
    /*flex-direction: column;*/
    /*background-position: bottom;*/
    /*background-position-x: left;*/
    /*background-position-y: bottom;*/
    /*width: 100%;*/
    /*height: 198vh;*/
    /* padding-top: 225%; */
    /*bottom: -2580px;*/
    /*ackground-size: cover;*/
    /*background-repeat: no-repeat;*/
    /*justify-content: flex-end;*/
    /* background-attachment: fixed;
}

.bottom-image .bg {
  position: absolute;
  bottom:0;
  /* background-image: url("/imagens/fundo2.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom; */
}

.bottom-imageDesenWeb{
  position:relative;
  left: 0px;   
  top: 0px;
  margin-top: -32%;
  width: 100%;
  height: auto;
  z-index: -1;  
}
.bottom-imageDesign{
  position:relative;
  left: 0px;   
  top: 910px;
  width: 100%;
  height: auto;
  z-index: -1; 
}


/*ver se é preciso estaparte*/
a{
    color: var(--white-color);
    text-decoration: none;
}

ul{
    list-style-type: none;
}

button{
    background-color: transparent;
    color: #ffffff;
    border: none;
    font-size: 100px;
    cursor: pointer;
    transition: all 300ms ease-in-out;
}
button:hover{
    opacity: 0.9;
}

/*experiencia da nav passar para roxo*/
.nav-menu.white-bg {
    background-color: #2C2556; /* Altere a cor de fundo para a cor desejada */
    box-shadow: 0px 10px 7px 0px rgba(1, 1, 1, 0.1);
}

.nav-brand{
    color: var(--white-color);
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 2px;
    
}

.nav-menu{
    background-color: transparent; /*isto é para por o fundo trasparente pk vou por imagem*/
    box-shadow: 0px 10px 7px 0px rgba(1, 1, 1, 0.1);  
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;  
}

.nav-container{
    max-width: 1300px;
    margin: auto;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 95px;
}
.nav-overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;  
    transition: opacity 0.3s, visibility 0s linear 0.3s;
    
}

.nav-overlay.open{
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
}

.show-overlay{
    opacity: 1;
    visibility: visible;
}

.nav-overlay-container{
    width: 100%;
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    /*align-items: center;*/
    justify-content: center;
    /*text-align: center;*/
    box-shadow: 0 0 3px 2px rgba(0, 0, 0, 0.2);
    position: relative;
}
/*botão de sair*/
#menu-hide-btn{
    position: absolute;
    right: 90px;
    top: 90px;
    width: 60px;
    height: 60px;
    line-height: 40px;
    border-radius: 50%;
    background-color: var(--white-color);
    color: var(--roxo-color);
}

.nav-links li{
    margin: 0;
    position: relative;
}


.nav-links li ::before{
    top: 0;
    left: 0;
}
.nav-links li ::after{
    bottom: 0;
    right: 0;
}
.nav-links li:hover::before, .nav-links li:hover::after{
    width: 75%;
    opacity: 1;
}
.nav-links li a{    
    font-size: 55px;
    letter-spacing: 6px;
    font-weight: 500;
    transition: all 300ms ease-in-out;
    color: #FFFFFF;
    font-family: 'Poppins';
    text-rendering: optimizeLegibility;
    text-decoration: none;
    padding-left: 7rem;
}
.nav-links li:hover a{
    color:rgba(255, 255, 255, 0.527);
}

@media(max-width:600px){
    .nav-links li a{
        font-size: 22px;
    }
    .nav-overlay{
        padding: 30px;
    }
}

/*Aqui é as defenições do dropdown que acontece no menu ao clicar nos serviços*/

@media(max-width:600px){
  .dropdown-menu li a{
      font-size: 22px;
  }
  .dropdown-menu{
      padding: 30px;
  }
}
.dropdown-menu li a{
  font-size: 25px;
  letter-spacing: 6px;
  font-weight: 500;
  transition: all 300ms ease-in-out;
  color: #FFFFFF;
  font-family: 'Poppins';
  text-rendering: optimizeLegibility;
  text-decoration: none;
  padding-left: 5rem;
}
.dropdown-menu li:hover a{
  color:rgba(255, 255, 255, 0.527);
  background-color: transparent;
  border: none;
  box-shadow: none;
}

.btn-servico11{
  font-size: 55px;
  letter-spacing: 6px;
  font-weight: 500;
  transition: all 300ms ease-in-out;
  color: #FFFFFF;
  font-family: 'Poppins';
  text-rendering: optimizeLegibility;
  text-decoration: none;
  padding-left: 7rem;
}

.dropdown-menu.brancoMenu {
  background-color: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
}

@media(max-width:600px){
  .btn-servico11{
    font-size: 22px;
  }
  .btn-servico11{
    padding-left: 110px;
    padding-top: 20px;
    padding-bottom: 20px;      
  }
}






/*texto principa, do inicio da página*/
#text{
    position: absolute;
    width: 35%;
    height: auto;
    left: 52%;
    top: 40%;

    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 5vw;
    line-height: 1.2;
    /* or 71% */

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    color: #FFFFFF;
    transform: translateX(-50%); /* Centralizar horizontalmente */
}



/*butao contactar*/
.btn-contactohome{
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 8px;

    position: absolute;
    width: 15%;
    height: 50px;
    left: 43.5%;
    top: 67%;
    transform: translateX(-50%, -50%); /* Centralizar horizontal e verticalmente */

    background: #ffffff;
    box-shadow: 10px 10px 46.85px rgba(255, 255, 255, 0.25), 0px 0px 13px rgba(255, 255, 255, 0.15), 0px 0px 6.15px rgba(255, 255, 255, 0.15), 0px 0px 3.15px rgba(236, 214, 214, 0.15);
    border-radius: 35px;

    color: black;
    font-size: 20px;
    display: flex;
    align-items: center;
    text-align: center;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    z-index: 1;
}

.col-md-6.offset-md-3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}


/*Os nossos serviços*/

#texto-sev1{
    position: absolute;
    width: 40%;
    height: auto;
    left: 31%;
    top: 160%;
    transform: translateX(-50%, -50%); /* Centralizar horizontal e verticalmente */


    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 3vw;
    line-height: 1;
    /* identical to box height, or 27% */

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    color: #FFFFFF;
}

#texto-sev2{
    position: absolute;
    width: 80%;
    height: auto;
    top: 170%;
    left: 10%;
    transform: translateX(-50%, -50%); /* Centralizar horizontal e verticalmente */


    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 1.5vw;
    line-height: 1.1;
    /* or 161% */

    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;

    color: #FFFFFF;   
}

/* defenição dos retangulos dos serviços*/
.wrapper{
    position: absolute;
    width: 80%;
    height: 631px;
}


[class^="box"] {
	margin: 30px;
}
[class*="retangle"] {
	height: 350px;
	width: 300px;
  position: absolute;
    
}

[class$="primeiro"] {
    position: absolute;
    left: 27%;
    top: 210%;

    background: rgba(255, 255, 255, 0.3);
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8.5px);
    border-radius: 35px;  
         
}

  
[class$="primeiro"]::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-box-shadow: 0 0 17px 3px #ffffff75,0 0 4px 2px #ffffff75;
    box-shadow: 0 0 17px 3px #ffffff75,0 0 4px 2px #ffffff75;
    z-index: -1;
    -webkit-animation-name: gradient-shadow;
            animation-name: gradient-shadow;
    -webkit-animation-timing-function: ease;
            animation-timing-function: ease;
    -webkit-animation-duration: 2s;
            animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
    border-radius: 35px;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    -ms-border-radius: 35px;
    -o-border-radius: 35px;
   
  }


[class$="segundo"] {
    position: absolute;
    left: 52%;
    top: 210%;

    background: rgba(255, 255, 255, 0.3);
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8.5px);

    border-radius: 35px;
}

[class$="segundo"]::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-box-shadow: 0 0 17px 3px #ffffff75,0 0 4px 2px #ffffff75;
            box-shadow: 0 0 17px 3px #ffffff75,0 0 4px 2px #ffffff75;
    z-index: -1;
    -webkit-animation-name: gradient-shadow;
            animation-name: gradient-shadow;
    -webkit-animation-timing-function: ease;
            animation-timing-function: ease;
    -webkit-animation-duration: 2s;
            animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
    border-radius: 35px;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    -ms-border-radius: 35px;
    -o-border-radius: 35px;
   
  }


/* interior retangulo desenvolvimento web*/

.desenvolvimento-servico{
    position: absolute;
}

#texto-sev3{
    position: absolute;
    width: 50%;
    height: 164.45px;
    left: 20%;
    top: 20%;

    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 22px;
    /* or 132% */

    display: flex;
    align-items: center;
    text-align: center;

    color: #ffffff;
}

#texto-int1{
    position: absolute;
    width: 80%;
    height: 150px;
    left: 10%;
    top: 40%;

    font-family: 'Poppins';
    font-style: normal;
    font-weight: 410;
    font-size: 13px;
    line-height: 20px;
    /* or 132% */

    display: flex;
    align-items: center;
    text-align: center;

    color: #ffffff;
}

/*button ver mais da para os dois*/
.btn-desenver{
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 8px;

    position: absolute;
    width: 50%;
    height: 45px;
    left: 25%;
    top: 75%;
    transform: translateX(-50%, -50%); /* Centralizar horizontal e verticalmente */


    background: #ffffff;
    box-shadow: 10px 10px 46.85px rgba(255, 255, 255, 0.25), 0px 0px 13px rgba(255, 255, 255, 0.15), 0px 0px 6.15px rgba(255, 255, 255, 0.15), 0px 0px 3.15px rgba(236, 214, 214, 0.15);
    border-radius: 35px;

    color: black;
    font-size: 15px;
    display: flex;
    align-items: center;
    text-align: center;
    font-family: 'Poppins';
    font-style: normal;   
    font-weight: 550;
    line-height: 20px;
}

/* interior do retangulo Design grafico*/

.design-servico{
    position: absolute;    
}

#texto-sev4{
    position: absolute;
    width: 20%;
    height: 164.45px;
    left: 36%;
    top: 20%;

    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 22px;
    /* or 132% */

    display: flex;
    align-items: center;
    text-align: center;

    color: #ffffff;
}

#texto-int2{
    position: absolute;
    width: 80%;
    height: 150px;
    left: 12%;
    top: 37%;

    font-family: 'Poppins';
    font-style: normal;
    font-weight: 410;
    font-size: 13px;
    line-height: 20px;
    /* or 132% */

    display: flex;
    align-items: center;
    text-align: center;

    color: #ffffff;
}

/*Projetos*/
#texto-proj1{
    position: absolute;
    width: 40%;
    height: auto;
    left: 31%;
    top: 245%;
    transform: translateX(-50%, -50%); /* Centralizar horizontal e verticalmente */


    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 3vw;
    line-height: 1;
    /* identical to box height, or 27% */

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    color: #FFFFFF;
}
#texto-proj2{
    position: absolute;
    width: 100%;
    height: auto;
    top: 252%;
    transform: translateX(-50%, -50%); /* Centralizar horizontal e verticalmente */


    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 1.5vw;
    /* or 161% */

    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;

    color: #FFFFFF; 
}

a[href="contactos.html"] {
    color: white;
    font-weight: 700;
    font-family: 'Poppins';
    padding-left: 10px;
    font-style: normal;
    font-size: 20px;
    line-height: 70px;
    display: flex;
    align-items: center;
    text-align: center;
    text-decoration-line: underline;
    text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
  }

  /*portefólio nav(onde leva os projetos)*/

  .portfolio-nav{
    position: absolute;
    top: 252%;
    left: 50%;
    transform: translate(-50%, 50%);
    margin-top: 50px;
    text-align: center;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 17px;
    line-height: 50px;
    margin-bottom: 40px;
  }

  .portfolio-nav ul{
    margin: 0 auto;
    float: none;
    text-align: center;
  }

  .portfolio-nav ul li{
    display: inline-block;
    top:160%;
    padding-left:10px;
    cursor: pointer;
    color: var(--white-color);
    font-family: 'Poppins';
  }
  .portfolio-nav ul li:hover{
    color: #ffffff8c;
  }
  .portfolio-nav ul li:active{
    color: #ffffff8c;
  }

  .portfolio-nav ul li span{
    padding: 8px 5;
    border-bottom: 2px solid transparent;
  }

  .portfolio-nav ul li.current span{
    border-bottom: 3px solid #ffffff;
  }
 
/*imagens dos portflolios*/
  .bagas-mel{
    position: absolute; 
    left: 20%;
    top: 275%; 
  }   
  /*tornar a imagem escura */

  .bagas-mel img {
    transition: filter 0.3s ease; /* Adiciona uma transição suave */
  }
  
  .bagas-mel:hover img {
    filter: brightness(50%) blur(5px); /* Aplica o efeito de escurecimento e desfoque */
  }
  /*esta*/
  
  .bagas-mel:hover::before {
    content: "Bagas de Mel Design Gráfico";
    position: absolute;
    top: 60%;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 17px;
    font-weight: bold;
    font-family: 'Poppins';
    font-style: normal;
    z-index: 2;    
  }

  .bagas-mel:hover::after {
    content: "+";
    position: absolute;
    top: 35%;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 70px;
    font-weight: normal;
    font-family: 'Poppins';
    font-style: normal;
    z-index: 2;
  }


.via-xl{
    position: absolute; 
    left: 55%;
    top: 285%; 
    }
.via-xl img {
    transition: filter 0.3s ease; /* Adiciona uma transição suave */
    }
  
  .via-xl:hover img {
    filter: brightness(50%) blur(5px); /* Aplica o efeito de escurecimento e desfoque */
  }
  .via-xl:hover::before {
    content: "Via XL Design Gráfico";
    position: absolute;
    top: 60%;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 17px;
    font-weight: bold;
    font-family: 'Poppins';
    font-style: normal;
    z-index: 2;
    
  }

  .via-xl:hover::after {
    content: "+";
    position: absolute;
    top: 35%;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 70px;
    font-weight: normal;
    font-family: 'Poppins';
    font-style: normal;
    z-index: 2;
  }


.soares-cardoso{
    position: absolute; 
    left: 20%;
    top: 350%; 
}

.soares-cardoso img {
    transition: filter 0.3s ease; /* Adiciona uma transição suave */
  }
  
  .soares-cardoso:hover img {
    filter: brightness(50%) blur(5px); /* Aplica o efeito de escurecimento e desfoque */
  }
  
  .soares-cardoso:hover::before {
    content: "Soares Cardoso Design Gráfico";
    position: absolute;
    top: 60%;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 17px;
    font-weight: bold;
    font-family: 'Poppins';
    font-style: normal;
    z-index: 2;
    
  }

  .soares-cardoso:hover::after {
    content: "+";
    position: absolute;
    top: 35%;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 70px;
    font-weight: normal;
    font-family: 'Poppins';
    font-style: normal;
    z-index: 2;
  }


/*transição para o passar para cima------------------------------*/
  .projeto-cortlar.active {
    transform: translateY(2050px);
    margin-left: -3%;
    display: block!important;
  }

  
.cortlar{
  position: absolute; 
  left: 55%;
  top: 360%; 
}


.cortlar img {
  transition: filter 0.3s ease; /* Adiciona uma transição suave */
}

  
.cortlar:hover img {
  filter: brightness(50%) blur(5px); /* Aplica o efeito de escurecimento e desfoque */
}
.cortlar:hover::before {
  content: "Cortlar Desenvolvimento Web";
  position: absolute;
    top: 60%;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 17px;
    font-weight: bold;
    font-family: 'Poppins';
    font-style: normal;
    z-index: 2;
    
}

  .cortlar:hover::after {
    content: "+";
    position: absolute;
    top: 35%;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 70px;
    font-weight: normal;
    font-family: 'Poppins';
    font-style: normal;
    z-index: 2;
  }

/*texto portflólio*/
/*bagas*/
#title-bagas{
    transform: rotate(-90deg); /* Equal to rotateZ(45deg) */

    position: absolute;
    left: -23%;
    top: 79%;

    font-family: 'Poppins';
    font-style: normal;
    font-weight: 800;
    font-size: 20px;
    line-height: 50px;
    /* identical to box height, or 161% */

    display: flex;
    align-items: center;
    text-align: center;

    color: #FFFFFF;
}

#bagas-descricao{
    transform: rotate(-90deg); /* Equal to rotateZ(45deg) */

    position: absolute;
    left: -20%;
    top: 45%;

    font-family: 'Poppins';
    font-style: normal;
    font-weight: 300;
    font-size: 15px;
    line-height: 50px;
    /* identical to box height, or 161% */

    display: flex;
    align-items: center;
    text-align: center;

    color: #FFFFFF;
}

/*via XL*/
#title-via{
    transform: rotate(-90deg); /* Equal to rotateZ(45deg) */

    position: absolute;
    left: -13%;
    top: 87%;

    font-family: 'Poppins';
    font-style: normal;
    font-weight: 800;
    font-size: 20px;
    line-height: 50px;
    /* identical to box height, or 161% */

    display: flex;
    align-items: center;
    text-align: center;

    color: #FFFFFF;
}

#via-descricao{
    transform: rotate(-90deg); /* Equal to rotateZ(45deg) */

    position: absolute;
    left: -19%;
    top: 65%;

    font-family: 'Poppins';
    font-style: normal;
    font-weight: 300;
    font-size: 15px;
    line-height: 50px;
    /* identical to box height, or 161% */

    display: flex;
    align-items: center;
    text-align: center;

    color: #FFFFFF;
}

/*soares e cardoso*/

#title-soares{
    transform: rotate(-90deg); /* Equal to rotateZ(45deg) */

    position: absolute;
    left: -26%;
    top: 76%;

    font-family: 'Poppins';
    font-style: normal;
    font-weight: 800;
    font-size: 20px;
    line-height: 50px;
    /* identical to box height, or 161% */

    display: flex;
    align-items: center;
    text-align: center;

    color: #FFFFFF;
}

#soares-descricao{
    transform: rotate(-90deg); /* Equal to rotateZ(45deg) */

    position: absolute;
    left: -19%;
    top: 43%;

    font-family: 'Poppins';
    font-style: normal;
    font-weight: 300;
    font-size: 15px;
    line-height: 50px;
    /* identical to box height, or 161% */

    display: flex;
    align-items: center;
    text-align: center;

    color: #FFFFFF;
}

/*cortlar*/
#title-cortlar{
    transform: rotate(-90deg); /* Equal to rotateZ(45deg) */

    position: absolute;
    left: -15%;
    top: 86.5%;

    font-family: 'Poppins';
    font-style: normal;
    font-weight: 800;
    font-size: 20px;
    line-height: 50px;
    /* identical to box height, or 161% */

    display: flex;
    align-items: center;
    text-align: center;

    color: #FFFFFF;
}

#cortlar-descricao{
    transform: rotate(-90deg); /* Equal to rotateZ(45deg) */

    position: absolute;
    left: -26.5%;
    top: 56%;

    font-family: 'Poppins';
    font-style: normal;
    font-weight: 300;
    font-size: 15px;
    line-height: 50px;
    /* identical to box height, or 161% */

    display: flex;
    align-items: center;
    text-align: center;

    color: #FFFFFF;
}

.btn-mais{
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 8px;

    position: absolute;
    width: 15%;
    height: 45px;
    left: 42%;
    top: 428%;
    transform: translateX(-50%, -50%); /* Centralizar horizontal e verticalmente */


    background: #ffffff;
    box-shadow: 10px 10px 46.85px rgba(255, 255, 255, 0.25), 0px 0px 13px rgba(255, 255, 255, 0.15), 0px 0px 6.15px rgba(255, 255, 255, 0.15), 0px 0px 3.15px rgba(236, 214, 214, 0.15);
    border-radius: 35px;

    color: black;
    font-size: 15px;
    display: flex;
    align-items: center;
    text-align: center;
    font-family: 'Poppins';
    font-style: normal;   
    font-weight: 550;
    
}

/*contactos ao fundo// email e telefone*/

#texto-fundo{
    position: absolute;
    width: 588px;
    height: 34px;
    left: 5%;
    top: 438%;

    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    
    /* or 400% */

    display: flex;
    align-items: center;
    text-align: center;

    color: #FFFFFF;
}

#texto-email{
    position: absolute;
    width: 223px;
    height: 33px;
    left: 70%;
    top: 438%;

    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
  
    /* or 160% */

    display: flex;
    align-items: center;

    color: #FFFFFF;
}

#texto-telef{
    position: absolute;
    width: 223px;
    height: 33px;
    left: 85%;
    top: 438%;

    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
 
    /* or 160% */

    display: flex;
    align-items: center;

    color: #FFFFFF;
}

.eml{
    position: absolute;
    right: 33.62%;
    left: 0%;
    top: 438%;
    bottom: 1.65%;
    color: #FFFFFF;
    width: 10%;
    height: auto;
}

.telef{
    position: absolute;
    left: 201%;
    right: 33.62%;
    top: 100%;
    bottom: 1.65%;
    color: #FFFFFF;
    width: 10%;
    height: auto;
}

/*a partir daqui temos todo o css da página sobre*/

/*texto inicial sobre*/

#titulo-sobre{
    position: absolute;
    left: 80%;
    right: 41.41%;
    top: 30%;
    bottom: 90.85%;
    width: 35%;
    height: auto;

    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 100px;
    /* or 167% */

    display: flex;
    align-items: center;
    text-align: center;

    color: #FFFFFF;
    transform: translateX(-50%);

}

#titulo-desenvolve1{
  position: absolute;
  left: 68.7%;
  right: 41.41%;
  top: 30%;
  bottom: 90.85%;
  width: 35%;
  height: auto;

  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 100px;
  /* or 167% */

  display: flex;
  align-items: center;
  text-align: center;

  color: #FFFFFF;
  transform: translateX(-50%);

}
#titulo-sobredesign{
  position: absolute;
  left: 75%;
  right: 41.41%;
  top: 30%;
  bottom: 90.85%;
  width: 35%;
  height: auto;

  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 100px;
  /* or 167% */

  display: flex;
  align-items: center;
  text-align: center;

  color: #FFFFFF;
  transform: translateX(-50%);
}


#descrição-sobre{
    position: absolute;
    left: 50%;
    right: 17%;
    top: 57%;
    bottom: 80.39%;

    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 45px;
    /* or 216% */

    display: flex;
    align-items: center;

    color: #FFFFFF;
}

.imagem-sobre{
    position: absolute; 
    top:15%;
    left: 7%;  
}



#texto-destingue{
    position: absolute;
    width: 40%;
    height: auto;
    left: 31%;
    top: 114%;
    transform: translateX(-50%, -50%); /* Centralizar horizontal e verticalmente */


    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 3vw;
    line-height: 1;
    /* identical to box height, or 27% */

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    color: #FFFFFF;
}

#texto-destingue2{
    position: absolute;
    width: 80%;
    height: auto;
    left: 10%;
    top: 122%;
    transform: translateX(-50%, -50%); /* Centralizar horizontal e verticalmente */


    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 1.5vw;
    line-height: 1.1;
    /* or 161% */

    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;

    color: #FFFFFF;
}

/*Retangulos O que nos destingue*/

.wrapper{
    position: absolute;
    width: 80%;
    height: 631px;
}

[class^="box"] {
	margin: 30px;
}
[class*="retangle1"] {
	height: 300px;
	width: 300px;
  position: absolute;
    
}

[class$="primeiro1"] {
    position: absolute;
    left: 15%;
    top: 155%;

    background: rgba(255, 255, 255, 0.3);
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8.5px);
    /* Note: backdrop-filter has minimal browser support */

    border-radius: 35px;  
         
}

  
[class$="primeiro1"]::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-box-shadow: 0 0 17px 3px #ffffff75,0 0 4px 2px #ffffff75;
            box-shadow: 0 0 17px 3px #ffffff75,0 0 4px 2px #ffffff75;
    z-index: -1;
    -webkit-animation-name: gradient-shadow;
            animation-name: gradient-shadow;
    -webkit-animation-timing-function: ease;
            animation-timing-function: ease;
    -webkit-animation-duration: 2s;
            animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
    border-radius: 35px;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    -ms-border-radius: 35px;
    -o-border-radius: 35px;
   
  }


[class$="segundo2"] {
    position: absolute;
    left: 40%;
    top: 155%;

    background: rgba(255, 255, 255, 0.3);
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8.5px);

    border-radius: 35px;
}

[class$="segundo2"]::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-box-shadow: 0 0 17px 3px #ffffff75,0 0 4px 2px #ffffff75;
            box-shadow: 0 0 17px 3px #ffffff75,0 0 4px 2px #ffffff75;
    z-index: -1;
    -webkit-animation-name: gradient-shadow;
            animation-name: gradient-shadow;
    -webkit-animation-timing-function: ease;
            animation-timing-function: ease;
    -webkit-animation-duration: 2s;
            animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
    border-radius: 35px;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    -ms-border-radius: 35px;
    -o-border-radius: 35px;
   
  }
  /**/
  [class$="terceiro3"] {
    position: absolute;
    left: 65%;
    top: 155%;

    background: rgba(255, 255, 255, 0.3);
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8.5px);

    border-radius: 35px;
}

[class$="terceiro3"]::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-box-shadow: 0 0 17px 3px #ffffff75,0 0 4px 2px #ffffff75;
            box-shadow: 0 0 17px 3px #ffffff75,0 0 4px 2px #ffffff75;
    z-index: -1;
    -webkit-animation-name: gradient-shadow;
            animation-name: gradient-shadow;
    -webkit-animation-timing-function: ease;
            animation-timing-function: ease;
    -webkit-animation-duration: 2s;
            animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
    border-radius: 35px;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    -ms-border-radius: 35px;
    -o-border-radius: 35px;
   
  }

  /* interior do retangulo Design grafico*/

.inovacao-criatividade{
    position: absolute; 
}

#texto-inovar{
    position: absolute;
    width: 50%;
    height: 164.45px;
    left: 25%;
    top: 25%;

    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 22px;
    /* or 132% */

    display: flex;
    align-items: center;
    text-align: center;

    color: #ffffff;
}

#texto-ivovarDescri{
    position: absolute;
    width: 90%;
    height: 150px;
    left: 5%;
    top: 50%;

    font-family: 'Poppins';
    font-style: normal;
    font-weight: 410;
    font-size: 13px;
    line-height: 20px;
    /* or 132% */

    display: flex;
    align-items: center;
    text-align: center;

    color: #ffffff;
}

.processo-trabalho{
    position: absolute; 
}

#texto-processo{
    position: absolute;
    width: 50%;
    height: 164.45px;
    left: 25%;
    top: 25%;

    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 22px;
    /* or 132% */

    display: flex;
    align-items: center;
    text-align: center;

    color: #ffffff;
}

#texto-processoDescri{
    position: absolute;
    width: 100%;
    height: 150px;
    left: 1%;
    top: 50%;

    font-family: 'Poppins';
    font-style: normal;
    font-weight: 410;
    font-size: 13px;
    line-height: 20px;
    /* or 132% */

    display: flex;
    align-items: center;
    text-align: center;

    color: #ffffff;
}

.experiencia-qualidade{
    position: absolute; 
}

#texto-experiencia{
    position: absolute;
    width: 50%;
    height: 164.45px;
    left: 25%;
    top: 25%;

    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 22px;
    /* or 132% */

    display: flex;
    align-items: center;
    text-align: center;

    color: #ffffff;
}

#texto-experienciadescri{
    position: absolute;
    width: 100%;
    height: 150px;
    left: 1%;
    top: 50%;

    font-family: 'Poppins';
    font-style: normal;
    font-weight: 410;
    font-size: 13px;
    line-height: 20px;
    /* or 132% */

    display: flex;
    align-items: center;
    text-align: center;

    color: #ffffff;
}

.btn-contactar{
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 1px;

    position: absolute;
    width: 30vh;
    height: 45px;
    left: 43.5%;
    top: 183%;
    transform: translateX(-50%, -50%); /* Centralizar horizontal e verticalmente */


    background: #6A3DB5;
    box-shadow: 10px 10px 46.85px rgba(255, 255, 255, 0.25), 0px 0px 13px rgba(255, 255, 255, 0.15), 0px 0px 6.15px rgba(255, 255, 255, 0.15), 0px 0px 3.15px rgba(236, 214, 214, 0.15);
    border-radius: 35px;

    color: rgb(255, 255, 255);
    font-size: 15px;
    display: flex;
    align-items: center;
    text-align: center;
    font-family: 'Poppins';
    font-style: normal;   
    font-weight: 550;
    line-height: 20px;
}

/*os clientes*/
#texto-clientes{
    position: absolute;
    width: 40%;
    height: auto;
    left: 31%;
    top: 205%;
    transform: translateX(-50%, -50%); /* Centralizar horizontal e verticalmente */


    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 3vw;
    line-height: 1;
    /* identical to box height, or 27% */

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    color: #FFFFFF;
}

#texto-clientes2{
    position: absolute;
    width: 80%;
    height: auto;
    top: 215%;
    left: 10%;
    transform: translateX(-50%, -50%); /* Centralizar horizontal e verticalmente */


    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 1.5vw;
    
    /* or 161% */

    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;

    color: #FFFFFF;
}

/*retangulo com os logos dos clientes onde estão os logotipos das empresas*/

.retanguloClientes{
    position: absolute;
    width: 800px;
    height: 400px;
    left: 646px;
    top: 227%;

    background: #FFFFFF;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8.5px);
    /* Note: backdrop-filter has minimal browser support */

    border-radius: 35px;
}



/*imagem fundo*/
.fundoS-image{
    position:relative;
    left: -10%;
    top: 150vh;
    bottom: 0;
    width: 110%;
    height: 110px;
    z-index: -1;   
}

/*contactos ao fundo// email e telefone*/

#texto-fundosobre{
    position: absolute;
    width: 588px;
    height: 34px;
    left: 5%;
    top: 288vh;

    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    
    /* or 400% */

    display: flex;
    align-items: center;
    text-align: center;

    color: #FFFFFF;
}

#texto-emailsobre{
    position: absolute;
    width: 223px;
    height: 33px;
    left: 70%;
    top: 288%;

    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
  
    /* or 160% */

    display: flex;
    align-items: center;

    color: #FFFFFF;
}

#texto-telefsobre{
    position: absolute;
    width: 223px;
    height: 33px;
    left: 85%;
    top: 288%;

    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
 
    /* or 160% */

    display: flex;
    align-items: center;

    color: #FFFFFF;
}

.material-symbols-outlined{
    position: absolute;
    left: 167%;
    right: 33.62%;
    top: 7%;
    bottom: 1.65%;
    color: #FFFFFF;
    width: 10%;
    height: auto;
}

.telef{
    position: absolute;
    left: 201%;
    right: 33.62%;
    top: 7%;
    bottom: 1.65%;
    color: #FFFFFF;
    width: 10%;
    height: auto;
}
/*imagens dos logos */
.logo-bpi{
    position: absolute; 
    top: 10%;
    left: 4%;
    filter: grayscale(100%);
    opacity: 6;
    transition: .4s;
}

.logo-bpi:hover{
    filter: grayscale(0%);
    opacity: 1;
    margin-top: -2px;
}

.logo-ctt{
    position: absolute; 
    top: 10%;
    left: 27%;
    filter: grayscale(100%);
    opacity: 6;
    transition: .4s;
}

.logo-ctt:hover{
    filter: grayscale(0%);
    opacity: 1;
    margin-top: -2px;
}

.logo-cuf{
    position: absolute; 
    top: 10%;
    left: 52%;
    filter: grayscale(100%);
    opacity: 6;
    transition: .4s;
}

.logo-cuf:hover{
    filter: grayscale(0%);
    opacity: 1;
    margin-top: -2px;
}

.logo-db{
    position: absolute; 
    top: 10%;
    left: 77%;
    filter: grayscale(100%);
    opacity: 6;
    transition: .4s;
}

.logo-db:hover{
    filter: grayscale(0%);
    opacity: 1;
    margin-top: -2px;
}

.logo-decathlon{
    position: absolute; 
    top: 35%;
    left: 4%;
    filter: grayscale(100%);
    opacity: 6;
    transition: .4s;
}

.logo-decathlon:hover{
    filter: grayscale(0%);
    opacity: 1;
    margin-top: -2px;
}

.logo-delnext{
    position: absolute; 
    top: 35%;
    left: 27%;
    filter: grayscale(100%);
    opacity: 6;
    transition: .4s;
}

.logo-delnext:hover{
    filter: grayscale(0%);
    opacity: 1;
    margin-top: -2px;
}

.logo-galp{
    position: absolute; 
    top: 35%;
    left: 52%;
    filter: grayscale(100%);
    opacity: 6;
    transition: .4s;
}

.logo-galp:hover{
    filter: grayscale(0%);
    opacity: 1;
    margin-top: -2px;
}

.logo-gls{
    position: absolute; 
    top: 35%;
    left: 77%;
    filter: grayscale(100%);
    opacity: 6;
    transition: .4s;
}

.logo-gls:hover{
    filter: grayscale(0%);
    opacity: 1;
    margin-top: -2px;
}

.logo-meo{
    position: absolute; 
    top: 57%;
    left: 4%;
    filter: grayscale(100%);
    opacity: 6;
    transition: .4s;
}

.logo-meo:hover{
    filter: grayscale(0%);
    opacity: 1;
    margin-top: -2px;
}

.logo-vodafone{
    position: absolute; 
    top: 57%;
    left: 27%;
    filter: grayscale(100%);
    opacity: 6;
    transition: .4s;
}

.logo-vodafone:hover{
    filter: grayscale(0%);
    opacity: 1;
    margin-top: -2px;
}

.logo-viaverde{
    position: absolute; 
    top: 57%;
    left: 50%;
    filter: grayscale(100%);
    opacity: 6;
    transition: .4s;
}

.logo-viaverde:hover{
    filter: grayscale(0%);
    opacity: 1;
    margin-top: -2px;
}

.logo-tranquilidade{
    position: absolute; 
    top: 57%;
    left: 77%;
    filter: grayscale(100%);
    opacity: 6;
    transition: .4s;
}

.logo-tranquilidade:hover{
    filter: grayscale(0%);
    opacity: 1;
    margin-top: -2px;
}

.logo-viadireta{
    position: absolute; 
    top: 77%;
    left: 4%;
    filter: grayscale(100%);
    opacity: 6;
    transition: .4s;
}

.logo-viadireta:hover{
    filter: grayscale(0%);
    opacity: 1;
    margin-top: -2px;
}

.logo-santo{
    position: absolute; 
    top: 77%;
    left: 27%;
    filter: grayscale(100%);
    opacity: 6;
    transition: .4s;
}

.logo-santo:hover{
    filter: grayscale(0%);
    opacity: 1;
    margin-top: -2px;
}

.logo-repsol{
    position: absolute; 
    top: 77%;
    left: 52%;
    filter: grayscale(100%);
    opacity: 6;
    transition: .4s;
}

.logo-repsol:hover{
    filter: grayscale(0%);
    opacity: 1;
    margin-top: -2px;
}

.logo-envialia{
    position: absolute; 
    top: 77%;
    left: 77%;
    filter: grayscale(100%);
    opacity: 6;
    transition: .4s;
}

.logo-envialia:hover{
    filter: grayscale(0%);
    opacity: 1;
    margin-top: -2px;
}

.imagem-clientes{
    position: absolute; 
    top:215%;
    left: 5%; 
}


/*página desenvolvimento web*/
.imagem-desenvoWeb{
    position: absolute; 
    top:7%;
    left: 7%;  
}

/*imagem fundo*/
.fundoDesn-image{
    position:relative;
    top: 70vh;
    bottom: 0;
    width: auto;
    height: auto;
    z-index: -1;   
}

.top-image1{
    position: absolute;
    width: 101.5%;
    height: 2053.76px;
    top: 0px;
    left: -1%;
}

.top-imagebagas{
  position: absolute;
  width: 100%;
  height: auto;
  top: -5%;
}

.imagempagBM img{
  clip-path: circle();
  position: absolute;
  left:5%;
  top:15%;
  width: 35%;
}


.wrapper3{
  position: absolute;
  width: 80%;
  height: 631px;
}


[class^="box"] {
margin: 30px;
}
[class*="retangleBM"] {
height: 200px;
width: 500px;
position: absolute;
  
}

[class$="primeiroBM"] {
  position: absolute;
  left: 15%;
  top: 135%;

  background: rgba(255, 255, 255, 0.3);
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8.5px);
  /* Note: backdrop-filter has minimal browser support */

  border-radius: 35px;  
       
}


[class$="primeiroBM"]::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 0 17px 3px #ffffff75,0 0 4px 2px #ffffff75;
          box-shadow: 0 0 17px 3px #ffffff75,0 0 4px 2px #ffffff75;
  z-index: -1;
  -webkit-animation-name: gradient-shadow;
          animation-name: gradient-shadow;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  border-radius: 35px;
  -webkit-border-radius: 35px;
  -moz-border-radius: 35px;
  -ms-border-radius: 35px;
  -o-border-radius: 35px;
 
}


[class$="segundoBM"] {
  position: absolute;
  left: 52%;
  top: 135%;

  background: rgba(255, 255, 255, 0.3);
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8.5px);

  border-radius: 35px;
}

[class$="segundoBM"]::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 0 17px 3px #ffffff75,0 0 4px 2px #ffffff75;
          box-shadow: 0 0 17px 3px #ffffff75,0 0 4px 2px #ffffff75;
  z-index: -1;
  -webkit-animation-name: gradient-shadow;
          animation-name: gradient-shadow;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  border-radius: 35px;
  -webkit-border-radius: 35px;
  -moz-border-radius: 35px;
  -ms-border-radius: 35px;
  -o-border-radius: 35px;
 
}


/* interior retangulo desenvolvimento web*/

.cento img{
  position: absolute;
  left: 7%;
  top:25%;
}
.imagemcerto img{
  position: absolute;
  left: 7%;
  top:25%;
}

#texto-designpersoBM{
  position: absolute;
  width: 50%;
  height: 164.45px;
  left: 30%;
  top: -5%;

  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 22px;
  /* or 132% */

  display: flex;
  align-items: center;
  text-align: center;

  color: #ffffff;
}

#texto-intBM{
  position: absolute;
  width: 60%;
  height: 150px;
  left: 30%;
  top: 23%;

  font-family: 'Poppins';
  font-style: normal;
  font-weight: 410;
  font-size: 13px;
  line-height: 20px;
  /* or 132% */

  display: flex;
  align-items: center;
  text-align:start;

  color: #ffffff;
}

#texto-designBM{
  position: absolute;
  width: 50%;
  height: 164.45px;
  left: 30%;
  top: -5%;

  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 22px;
  /* or 132% */

  display: flex;
  align-items: center;
  text-align: center;

  color: #ffffff;
}

#texto-intDesignBM{
  position: absolute;
  width: 60%;
  height: 150px;
  left: 30%;
  top: 23%;

  font-family: 'Poppins';
  font-style: normal;
  font-weight: 410;
  font-size: 13px;
  line-height: 20px;
  /* or 132% */

  display: flex;
  align-items: center;
  text-align:start;

  color: #ffffff;
}

#titulo-bagasMEl{
  position: absolute;
  left: 81.7%;
  right: 41.41%;
  top: 35%;
  bottom: 90.85%;
  width: 35%;
  height: auto;

  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 100px;
  /* or 167% */

  display: flex;
  align-items: center;
  text-align: center;

  color: #FFFFFF;
  transform: translateX(-50%);

}

#titulo-destaqueProj{
  position: absolute;
  left: 54%;
  right: 41.41%;
  top: 110%;
  bottom: 90.85%;
  width: 35%;
  height: auto;

  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 100px;
  /* or 167% */

  display: flex;
  align-items: center;
  text-align: center;

  color: #FFFFFF;
  transform: translateX(-50%);
}

#descrição-BM{
  position: absolute;
  left: 55%;
  right: 10%;
  top: 40%;
  bottom: 80.39%;

  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 45px;
  /* or 216% */

  display: flex;
  align-items:start;

  color: #FFFFFF;
}
.btn-maisBM{
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 8px;

  position: absolute;
  width: 15%;
  height: 45px;
  left: 65%;
  top: 75%;
  transform: translateX(-50%, -50%); /* Centralizar horizontal e verticalmente */


  background: #ffffff;
  box-shadow: 10px 10px 46.85px rgba(255, 255, 255, 0.25), 0px 0px 13px rgba(255, 255, 255, 0.15), 0px 0px 6.15px rgba(255, 255, 255, 0.15), 0px 0px 3.15px rgba(236, 214, 214, 0.15);
  border-radius: 35px;

  color: black;
  font-size: 15px;
  display: flex;
  align-items: center;
  text-align: center;
  font-family: 'Poppins';
  font-style: normal;   
  font-weight: 550;  
}




.imagem-criacao img{
    display: none;
    top:130%;
    left: 26%;  
}

.btn-contactardesen{
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 1px;

    position: absolute;
    width: 30vh;
    height: 45px;
    left: 43.5%;
    top: 170%;
    transform: translateX(-50%, -50%); /* Centralizar horizontal e verticalmente */


    background: #6A3DB5;
    box-shadow: 10px 10px 46.85px rgba(255, 255, 255, 0.25), 0px 0px 13px rgba(255, 255, 255, 0.15), 0px 0px 6.15px rgba(255, 255, 255, 0.15), 0px 0px 3.15px rgba(236, 214, 214, 0.15);
    border-radius: 35px;

    color: rgb(255, 255, 255);
    font-size: 15px;
    display: flex;
    align-items: center;
    text-align: center;
    font-family: 'Poppins';
    font-style: normal;   
    font-weight: 550;
    line-height: 20px;
}


/*Projetos desenvolvimento web*/
#texto-desenolvimentoproj1{
    position: absolute;
    width: 90%;
    height: auto;
    left: 5%;
    top: 200%;
    transform: translateX(-50%, -50%); /* Centralizar horizontal e verticalmente */


    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 3vw;
    line-height: 1;
    /* identical to box height, or 27% */

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    color: #FFFFFF;
}
#texto-densenvolcimentoproj2{
    position: absolute;
    width: 100%;
    height: auto;
    top: 205%;
    transform: translateX(-50%, -50%); /* Centralizar horizontal e verticalmente */


    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 1.5vw;
    /* or 161% */

    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;

    color: #FFFFFF; 
}


/*imagens dos portflolios*/
.permis{
    position: absolute; 
    left: 20%;
    top: 220%; 
  }   
  /*tornar a imagem escura */

  .permis img {
    transition: filter 0.3s ease; /* Adiciona uma transição suave */
  }
  
  .permis:hover img {
    filter: brightness(50%) blur(5px); /* Aplica o efeito de escurecimento e desfoque */
  }
  /*esta*/
  
  .permis:hover::before {
    content: "Permis de Construire ";
    position: absolute;
    top: 60%;
    left: 25%;
    width: 50%;
    text-align: center;
    color: #fff;
    font-size: 17px;
    font-weight: bold;
    font-family: 'Poppins';
    font-style: normal;
    z-index: 2;    
  }

  .permis:hover::after {
    content: "+";
    position: absolute;
    top: 35%;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 70px;
    font-weight: normal;
    font-family: 'Poppins';
    font-style: normal;
    z-index: 2;
  }


.FPR{
    position: absolute; 
    left: 55%;
    top: 230%; 
    }
.FPR img {
    transition: filter 0.3s ease; /* Adiciona uma transição suave */
    }
  
  .FPR:hover img {
    filter: brightness(50%) blur(5px); /* Aplica o efeito de escurecimento e desfoque */
  }
  .FPR:hover::before {
    content: "FPRM Logística";
    position: absolute;
    top: 60%;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 17px;
    font-weight: bold;
    font-family: 'Poppins';
    font-style: normal;
    z-index: 2;
    
  }

  .FPR:hover::after {
    content: "+";
    position: absolute;
    top: 35%;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 70px;
    font-weight: normal;
    font-family: 'Poppins';
    font-style: normal;
    z-index: 2;
  }


.alore{
    position: absolute; 
    left: 20%;
    top: 295%; 
}

.alore img {
    transition: filter 0.3s ease; /* Adiciona uma transição suave */
  }
  
  .alore:hover img {
    filter: brightness(50%) blur(5px); /* Aplica o efeito de escurecimento e desfoque */
  }
  
  .alore:hover::before {
    content: "NRegras";
    position: absolute;
    top: 60%;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 17px;
    font-weight: bold;
    font-family: 'Poppins';
    font-style: normal;
    z-index: 2;
    
  }

  .alore:hover::after {
    content: "+";
    position: absolute;
    top: 35%;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 70px;
    font-weight: normal;
    font-family: 'Poppins';
    font-style: normal;
    z-index: 2;
  }


.cortlar2{
    position: absolute; 
    left: 55%;
    top: 305%; 
}

.cortlar2 img {
    transition: filter 0.3s ease; /* Adiciona uma transição suave */
  }
  
  .cortlar2:hover img {
    filter: brightness(50%) blur(5px); /* Aplica o efeito de escurecimento e desfoque */
  }
  .cortlar2:hover::before {
    content: "Cortlar";
    position: absolute;
    top: 60%;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 17px;
    font-weight: bold;
    font-family: 'Poppins';
    font-style: normal;
    z-index: 2;
    
  }

  .cortlar2:hover::after {
    content: "+";
    position: absolute;
    top: 35%;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 70px;
    font-weight: normal;
    font-family: 'Poppins';
    font-style: normal;
    z-index: 2;
  }

/*texto portflólio*/
/*bagas*/
#title-permis{
    transform: rotate(-90deg); /* Equal to rotateZ(45deg) */

    position: absolute;
    left: -35%;
    top: 70%;

    font-family: 'Poppins';
    font-style: normal;
    font-weight: 800;
    font-size: 20px;
    line-height: 50px;
    /* identical to box height, or 161% */

    display: flex;
    align-items: center;
    text-align: center;

    color: #FFFFFF;
}

#permis-descricao{
    transform: rotate(-90deg); /* Equal to rotateZ(45deg) */

    position: absolute;
    left: -28%;
    top: 25%;

    font-family: 'Poppins';
    font-style: normal;
    font-weight: 300;
    font-size: 15px;
    line-height: 50px;
    /* identical to box height, or 161% */

    display: flex;
    align-items: center;
    text-align: center;

    color: #FFFFFF;
}

/*via XL*/
#title-FPR{
    transform: rotate(-90deg); /* Equal to rotateZ(45deg) */

    position: absolute;
    left: -25%;
    top: 78%;

    font-family: 'Poppins';
    font-style: normal;
    font-weight: 800;
    font-size: 20px;
    line-height: 50px;
    /* identical to box height, or 161% */

    display: flex;
    align-items: center;
    text-align: center;

    color: #FFFFFF;
}

#FPR-descricao{
    transform: rotate(-90deg); /* Equal to rotateZ(45deg) */

    position: absolute;
    left: -26%;
    top: 39%;

    font-family: 'Poppins';
    font-style: normal;
    font-weight: 300;
    font-size: 15px;
    line-height: 50px;
    /* identical to box height, or 161% */

    display: flex;
    align-items: center;
    text-align: center;

    color: #FFFFFF;
}

/*soares e cardoso*/

#title-allure{
    transform: rotate(-90deg); /* Equal to rotateZ(45deg) */

    position: absolute;
    left: -16%;
    top: 82%;

    font-family: 'Poppins';
    font-style: normal;
    font-weight: 800;
    font-size: 20px;
    line-height: 50px;
    /* identical to box height, or 161% */

    display: flex;
    align-items: center;
    text-align: center;

    color: #FFFFFF;
}

#allure-descricao{
    transform: rotate(-90deg); /* Equal to rotateZ(45deg) */

    position: absolute;
    left: -26%;
    top: 48%;

    font-family: 'Poppins';
    font-style: normal;
    font-weight: 300;
    font-size: 15px;
    line-height: 50px;
    /* identical to box height, or 161% */

    display: flex;
    align-items: center;
    text-align: center;

    color: #FFFFFF;
}

/*cortlar*/
#title-cortlar{
    transform: rotate(-90deg); /* Equal to rotateZ(45deg) */

    position: absolute;
    left: -15%;
    top: 86.5%;

    font-family: 'Poppins';
    font-style: normal;
    font-weight: 800;
    font-size: 20px;
    line-height: 50px;
    /* identical to box height, or 161% */

    display: flex;
    align-items: center;
    text-align: center;

    color: #FFFFFF;
}

#cortlar-descricao{
    transform: rotate(-90deg); /* Equal to rotateZ(45deg) */

    position: absolute;
    left: -26.5%;
    top: 56%;

    font-family: 'Poppins';
    font-style: normal;
    font-weight: 300;
    font-size: 15px;
    line-height: 50px;
    /* identical to box height, or 161% */

    display: flex;
    align-items: center;
    text-align: center;

    color: #FFFFFF;
}

.btn-mais2{
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 8px;

    position: absolute;
    width: 15%;
    height: 45px;
    left: 42%;
    top: 372%;
    transform: translateX(-50%, -50%); /* Centralizar horizontal e verticalmente */


    background: #ffffff;
    box-shadow: 10px 10px 46.85px rgba(255, 255, 255, 0.25), 0px 0px 13px rgba(255, 255, 255, 0.15), 0px 0px 6.15px rgba(255, 255, 255, 0.15), 0px 0px 3.15px rgba(236, 214, 214, 0.15);
    border-radius: 35px;

    color: black;
    font-size: 15px;
    display: flex;
    align-items: center;
    text-align: center;
    font-family: 'Poppins';
    font-style: normal;   
    font-weight: 550;
    
}

/*contactos ao fundo// email e telefone*/

#texto-fundodesenvolvimento{
    position: absolute;
    width: 588px;
    height: 34px;
    left: 5%;
    top: 380vh;

    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    
    /* or 400% */

    display: flex;
    align-items: center;
    text-align: center;

    color: #FFFFFF;
}

#texto-emaildesenvolvimento{
    position: absolute;
    width: 223px;
    height: 33px;
    left: 70%;
    top: 380%;

    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
  
    /* or 160% */

    display: flex;
    align-items: center;

    color: #FFFFFF;
}

#texto-telefdesenvolvimento{
    position: absolute;
    width: 223px;
    height: 33px;
    left: 85%;
    top: 380%;

    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
 
    /* or 160% */

    display: flex;
    align-items: center;

    color: #FFFFFF;
}

#texto-emaildesenvolvimento1{
  position: absolute;
  width: 223px;
  height: 33px;
  left: 70%;
  top: 380%;

  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-size: 15px;

  /* or 160% */

  display: flex;
  align-items: center;

  color: #FFFFFF;
}

#texto-telefdesenvolvimento1{
  position: absolute;
  width: 223px;
  height: 33px;
  left: 85%;
  top: 380%;

  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-size: 15px;

  /* or 160% */

  display: flex;
  align-items: center;

  color: #FFFFFF;
}


/*Página de Design Gráfico*/
.imagem-DGrafico{
    position: absolute; 
    top:15%;
    left: 7%;  
}


/*imagens dos retangulos*/
.identidadeVisual{
    position: absolute;
    left: 17%;
    top: -9%;   
}

.design-digital{
    position: absolute; 
    left: 13%;
    top: -9%;  
}

.design-marchandising{
    position: absolute; 
    left: 17%;
    top: -9%;  
}

.btn-contactarDesign{
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 1px;

    position: absolute;
    width: 30vh;
    height: 45px;
    left: 43.5%;
    top: 185%;
    transform: translateX(-50%, -50%); /* Centralizar horizontal e verticalmente */


    background: #6A3DB5;
    box-shadow: 10px 10px 46.85px rgba(255, 255, 255, 0.25), 0px 0px 13px rgba(255, 255, 255, 0.15), 0px 0px 6.15px rgba(255, 255, 255, 0.15), 0px 0px 3.15px rgba(236, 214, 214, 0.15);
    border-radius: 35px;

    color: rgb(255, 255, 255);
    font-size: 15px;
    display: flex;
    align-items: center;
    text-align: center;
    font-family: 'Poppins';
    font-style: normal;   
    font-weight: 550;
    line-height: 20px;
}

/*Projetos de desenvolvimento gráfico*/

#texto-design{
    position: absolute;
    width: 90%;
    height: auto;
    left: 5%;
    top: 200%;
    transform: translateX(-50%, -50%); /* Centralizar horizontal e verticalmente */


    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 3vw;
    line-height: 1;
    /* identical to box height, or 27% */

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    color: #FFFFFF;
}
#texto-ddesign2{
    position: absolute;
    width: 100%;
    height: auto;
    top: 205%;
    transform: translateX(-50%, -50%); /* Centralizar horizontal e verticalmente */


    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 1.5vw;
    /* or 161% */

    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;

    color: #FFFFFF; 
}


/*imagens dos portflolios*/
.bagasDesign{
    position: absolute; 
    left: 20%;
    top: 220%; 
  }   
  /*tornar a imagem escura */

  .bagasDesign img {
    transition: filter 0.3s ease; /* Adiciona uma transição suave */
  }
  
  .bagasDesign:hover img {
    filter: brightness(50%) blur(5px); /* Aplica o efeito de escurecimento e desfoque */
  }
  /*esta*/
  
  .bagasDesign:hover::before {
    content: "Bagas de Mel";
    position: absolute;
    top: 60%;
    left: 25%;
    width: 50%;
    text-align: center;
    color: #fff;
    font-size: 17px;
    font-weight: bold;
    font-family: 'Poppins';
    font-style: normal;
    z-index: 2;    
  }

  .bagasDesign:hover::after {
    content: "+";
    position: absolute;
    top: 35%;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 70px;
    font-weight: normal;
    font-family: 'Poppins';
    font-style: normal;
    z-index: 2;
  }


.viaDesign{
    position: absolute; 
    left: 55%;
    top: 230%; 
    }
.viaDesign img {
    transition: filter 0.3s ease; /* Adiciona uma transição suave */
    }
  
  .viaDesign:hover img {
    filter: brightness(50%) blur(5px); /* Aplica o efeito de escurecimento e desfoque */
  }
  .viaDesign:hover::before {
    content: "Via XL";
    position: absolute;
    top: 60%;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 17px;
    font-weight: bold;
    font-family: 'Poppins';
    font-style: normal;
    z-index: 2;
    
  }

  .viaDesign:hover::after {
    content: "+";
    position: absolute;
    top: 35%;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 70px;
    font-weight: normal;
    font-family: 'Poppins';
    font-style: normal;
    z-index: 2;
  }


.soaresDesign{
    position: absolute; 
    left: 20%;
    top: 295%; 
}

.soaresDesign img {
    transition: filter 0.3s ease; /* Adiciona uma transição suave */
  }
  
  .soaresDesign:hover img {
    filter: brightness(50%) blur(5px); /* Aplica o efeito de escurecimento e desfoque */
  }
  
  .soaresDesign:hover::before {
    content: "Soares Cardoso";
    position: absolute;
    top: 60%;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 17px;
    font-weight: bold;
    font-family: 'Poppins';
    font-style: normal;
    z-index: 2;
    
  }

  .soaresDesign:hover::after {
    content: "+";
    position: absolute;
    top: 35%;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 70px;
    font-weight: normal;
    font-family: 'Poppins';
    font-style: normal;
    z-index: 2;
  }


.nectaresDao{
    position: absolute; 
    left: 55%;
    top: 305%; 
}

.nectaresDao img {
    transition: filter 0.3s ease; /* Adiciona uma transição suave */
  }
  
  .nectaresDao:hover img {
    filter: brightness(50%) blur(5px); /* Aplica o efeito de escurecimento e desfoque */
  }
  .nectaresDao:hover::before {
    content: "Néctares do Dão";
    position: absolute;
    top: 60%;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 17px;
    font-weight: bold;
    font-family: 'Poppins';
    font-style: normal;
    z-index: 2;
    
  }

  .nectaresDao:hover::after {
    content: "+";
    position: absolute;
    top: 35%;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 70px;
    font-weight: normal;
    font-family: 'Poppins';
    font-style: normal;
    z-index: 2;
  }


/*texto portflólio*/
/*bagas*/
#title-bagasDesign{
    transform: rotate(-90deg); /* Equal to rotateZ(45deg) */

    position: absolute;
    left: -23%;
    top: 79%;

    font-family: 'Poppins';
    font-style: normal;
    font-weight: 800;
    font-size: 20px;
    line-height: 50px;
    /* identical to box height, or 161% */

    display: flex;
    align-items: center;
    text-align: center;

    color: #FFFFFF;
}

#descricao-bagasDesign{
    transform: rotate(-90deg); /* Equal to rotateZ(45deg) */

    position: absolute;
    left: -20%;
    top: 45%;

    font-family: 'Poppins';
    font-style: normal;
    font-weight: 300;
    font-size: 15px;
    line-height: 50px;
    /* identical to box height, or 161% */

    display: flex;
    align-items: center;
    text-align: center;

    color: #FFFFFF;
}

/*via XL*/
#title-viaDesign{
    transform: rotate(-90deg); /* Equal to rotateZ(45deg) */

    position: absolute;
    left: -13%;
    top: 87%;

    font-family: 'Poppins';
    font-style: normal;
    font-weight: 800;
    font-size: 20px;
    line-height: 50px;
    /* identical to box height, or 161% */

    display: flex;
    align-items: center;
    text-align: center;

    color: #FFFFFF;
}

#descricao-viaDesign{
    transform: rotate(-90deg); /* Equal to rotateZ(45deg) */

    position: absolute;
    left: -19%;
    top: 65%;

    font-family: 'Poppins';
    font-style: normal;
    font-weight: 300;
    font-size: 15px;
    line-height: 50px;
    /* identical to box height, or 161% */

    display: flex;
    align-items: center;
    text-align: center;

    color: #FFFFFF;
}

/*soares e cardoso*/

#title-soaresDesign{
    transform: rotate(-90deg); /* Equal to rotateZ(45deg) */

    position: absolute;
    left: -26%;
    top: 76%;

    font-family: 'Poppins';
    font-style: normal;
    font-weight: 800;
    font-size: 20px;
    line-height: 50px;
    /* identical to box height, or 161% */

    display: flex;
    align-items: center;
    text-align: center;

    color: #FFFFFF;
}

#descricao-soaresDesign{
    transform: rotate(-90deg); /* Equal to rotateZ(45deg) */

    position: absolute;
    left: -19%;
    top: 43%;

    font-family: 'Poppins';
    font-style: normal;
    font-weight: 300;
    font-size: 15px;
    line-height: 50px;
    /* identical to box height, or 161% */

    display: flex;
    align-items: center;
    text-align: center;

    color: #FFFFFF;
}

/*cortlar*/
#title-nectares{
    transform: rotate(-90deg); /* Equal to rotateZ(45deg) */

    position: absolute;
    left: -26%;
    top: 76%;

    font-family: 'Poppins';
    font-style: normal;
    font-weight: 800;
    font-size: 20px;
    line-height: 50px;
    /* identical to box height, or 161% */

    display: flex;
    align-items: center;
    text-align: center;

    color: #FFFFFF;
}

#nectares-descricao{
    transform: rotate(-90deg); /* Equal to rotateZ(45deg) */

    position: absolute;
    left: -18.5%;
    top: 42%;

    font-family: 'Poppins';
    font-style: normal;
    font-weight: 300;
    font-size: 15px;
    line-height: 50px;
    /* identical to box height, or 161% */

    display: flex;
    align-items: center;
    text-align: center;

    color: #FFFFFF;
}


/*_____________________Pagína portflolio____________________________________________________*/

/*imagem fundo*/
.fundoprtfolio-image{
    position:relative;
    bottom: 0;
    width: 107%;
    height: 100%;
    z-index: -1;   
}

/*projetos portfólio*/

/*Projetos*/
#texto-paginaPortflolio1{
    position: absolute;
    width: 40%;
    height: auto;
    left: 31%;
    top: 20%;
    transform: translateX(-50%, -50%); /* Centralizar horizontal e verticalmente */


    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 3vw;
    line-height: 1;
    /* identical to box height, or 27% */

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    color: #FFFFFF;
}
#texto-descricaoPortflolio2{
    position: absolute;
    width: 100%;
    height: auto;
    top: 25%;
    transform: translateX(-50%, -50%); /* Centralizar horizontal e verticalmente */


    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 1.5vw;
    /* or 161% */

    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;

    color: #FFFFFF; 
}

a[href="contactos.html"] {
    color: white;
    font-weight: 700;
    font-family: 'Poppins';
    font-style: normal;
    font-size: 20px;
    line-height: 70px;
    display: flex;
    align-items: center;
    text-align: center;
    text-decoration-line: underline;
    text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
  }

  /*portefólio nav(onde leva os projetos)*/

  .portfolio-nav1{
    position: absolute;
    top: 23%;
    left: 50%;
    transform: translate(-50%, 50%);
    margin-top: 50px;
    text-align: center;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 17px;
    line-height: 50px;
    margin-bottom: 40px;
  
  }

  .portfolio-nav1 ul{
    margin: 0 auto;
    float: none;
    text-align: center;
  }

  .portfolio-nav1 ul li{
    display: inline-block;
    top:160%;
    cursor: pointer;
    padding-left:10px;
    color: var(--white-color);
    font-family: 'Poppins';
  }
  .portfolio-nav1 ul li:hover{
    color: #ffffff8c;
  }
  .portfolio-nav1 ul li:active{
    color: #ffffff8c;
  }

  .portfolio-nav1 ul li span{
    padding: 8px 5;
    border-bottom: 2px solid transparent;
  }

  .portfolio-nav1 ul li.current span{
    border-bottom: 3px solid #ffffff;
  }
  
/*imagens dos portflolios*/
  .portfolioBagas-mel{
    position: absolute; 
    left: 20%;
    top: 50%; 
  }   
  /*tornar a imagem escura */

  .portfolioBagas-mel img {
    transition: filter 0.3s ease; /* Adiciona uma transição suave */
  }
  
  .portfolioBagas-mel:hover img {
    filter: brightness(50%) blur(5px); /* Aplica o efeito de escurecimento e desfoque */
  }
  /*esta*/
  
  .portfolioBagas-mel:hover::before {
    content: "Bagas de Mel Design Gráfico";
    position: absolute;
    top: 60%;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 17px;
    font-weight: bold;
    font-family: 'Poppins';
    font-style: normal;
    z-index: 2;    
  }

  .portfolioBagas-mel:hover::after {
    content: "+";
    position: absolute;
    top: 35%;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 70px;
    font-weight: normal;
    font-family: 'Poppins';
    font-style: normal;
    z-index: 2;
  }


.Portfoliovia-xl{
    position: absolute; 
    left: 55%;
    top: 60%; 
    }
.Portfoliovia-xl img {
    transition: filter 0.3s ease; /* Adiciona uma transição suave */
    }
  
  .Portfoliovia-xl:hover img {
    filter: brightness(50%) blur(5px); /* Aplica o efeito de escurecimento e desfoque */
  }
  .Portfoliovia-xl:hover::before {
    content: "Via XL Design Gráfico";
    position: absolute;
    top: 60%;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 17px;
    font-weight: bold;
    font-family: 'Poppins';
    font-style: normal;
    z-index: 2;
    
  }

  .Portfoliovia-xl:hover::after {
    content: "+";
    position: absolute;
    top: 35%;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 70px;
    font-weight: normal;
    font-family: 'Poppins';
    font-style: normal;
    z-index: 2;
  }


.portfolioSoares-cardoso{
    position: absolute; 
    left: 20%;
    top: 125%; 
}

.portfolioSoares-cardoso img {
    transition: filter 0.3s ease; /* Adiciona uma transição suave */
  }
  
  .portfolioSoares-cardoso:hover img {
    filter: brightness(50%) blur(5px); /* Aplica o efeito de escurecimento e desfoque */
  }
  
  .sportfolioSoares-cardoso:hover::before {
    content: "Soares Cardoso Design Gráfico";
    position: absolute;
    top: 60%;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 17px;
    font-weight: bold;
    font-family: 'Poppins';
    font-style: normal;
    z-index: 2;
    
  }

  .portfolioSoares-cardoso:hover::after {
    content: "+";
    position: absolute;
    top: 35%;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 70px;
    font-weight: normal;
    font-family: 'Poppins';
    font-style: normal;
    z-index: 2;
  }

 
  
.projeto-projeto.active{
  transform: translateY(380px);
  margin-left: -32px;
}

.portfolioCortlar{
    position: absolute; 
    left: 55%;
    top: 135%; 
}

.portfolioCortlar img {
    transition: filter 0.3s ease; /* Adiciona uma transição suave */
  }
  
  .portfolioCortlar:hover img {
    filter: brightness(50%) blur(5px); /* Aplica o efeito de escurecimento e desfoque */
  }
  .portfolioCortlar:hover::before {
    content: "Cortlar Desenvolvimento Web";
    position: absolute;
    top: 60%;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 17px;
    font-weight: bold;
    font-family: 'Poppins';
    font-style: normal;
    z-index: 2;
    
  }

  .portfolioCortlar:hover::after {
    content: "+";
    position: absolute;
    top: 35%;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 70px;
    font-weight: normal;
    font-family: 'Poppins';
    font-style: normal;
    z-index: 2;
  }

  .fpr-projeto.active{
    transform: translateY(445px);  
    margin-left: 80px;
  }

  .PortfolioFPR{
    position: absolute; 
    left: 55%;
    top: 210%; 
    }
    .PortfolioFPR img {
    transition: filter 0.3s ease; /* Adiciona uma transição suave */
    }
  
  .PortfolioFPR:hover img {
    filter: brightness(50%) blur(5px); /* Aplica o efeito de escurecimento e desfoque */
  }
  .PortfolioFPR:hover::before {
    content: "FPRM Logística";
    position: absolute;
    top: 60%;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 17px;
    font-weight: bold;
    font-family: 'Poppins';
    font-style: normal;
    z-index: 2;
    
  }

  .PortfolioFPR:hover::after {
    content: "+";
    position: absolute;
    top: 35%;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 70px;
    font-weight: normal;
    font-family: 'Poppins';
    font-style: normal;
    z-index: 2;
  }

  .alore-projeto.active{
    transform: translateY(940px);  
    margin-left: 123px;  
  }

.PortfolioAlore{
    position: absolute; 
    left: 20%;
    top: 200%; 
}

.PortfolioAlore img {
    transition: filter 0.3s ease; /* Adiciona uma transição suave */
  }
  
  .PortfolioAlore:hover img {
    filter: brightness(50%) blur(5px); /* Aplica o efeito de escurecimento e desfoque */
  }
  
  .PortfolioAlore:hover::before {
    content: "NRegras";
    position: absolute;
    top: 60%;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 17px;
    font-weight: bold;
    font-family: 'Poppins';
    font-style: normal;
    z-index: 2;
    
  }

  .PortfolioAlore:hover::after {
    content: "+";
    position: absolute;
    top: 35%;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 70px;
    font-weight: normal;
    font-family: 'Poppins';
    font-style: normal;
    z-index: 2;
  }
  /*contactos ao fundo// email e telefone*/

#texto-fundoProtfolio{
    position: absolute;
    width: 588px;
    height: 34px;
    left: 5%;
    top: 280vh;

    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    
    /* or 400% */

    display: flex;
    align-items: center;
    text-align: center;

    color: #FFFFFF;
}

#texto-emailPortfolio{
    position: absolute;
    width: 223px;
    height: 33px;
    left: 70%;
    top: 280%;

    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
  
    /* or 160% */

    display: flex;
    align-items: center;

    color: #FFFFFF;
}

#texto-telefPortfolio{
    position: absolute;
    width: 223px;
    height: 33px;
    left: 85%;
    top: 280%;

    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
 
    /* or 160% */

    display: flex;
    align-items: center;

    color: #FFFFFF;
}

/*formulário de contacto*/


.container1 {
  max-width: 480px;
  width: 195%;
  position: absolute;
  top:18vh;
  left: 34%;
}

#contact input[type="text"],
#contact input[type="email"],
#contact input[type="tel"],
#contact textarea,
#contact button[type="submit"] {
  font: 400 12px/16px "Poppins";
}

#contact {
  padding: 25px;
  margin: 50px 0;
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8.5px);
   /* Note: backdrop-filter has minimal browser support */
   border-radius: 35px;
}

#contact h4 {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    color: #FFFFFF;
    margin-left: 27%;

}
.nome-lista{
    max-width: 49%;
}
.empresa-lista{
    max-width: 49%;
}

fieldset {
  border: medium none !important;
  margin: 0 0 10px;
  min-width: 100%;
  padding: 0;
  width: 100%;
}

#contact input[type="text"],
#contact input[type="email"],
#contact input[type="tel"],
#contact input[type="url"],
#contact textarea {
  width: 100%;
  border: 1px solid #ccc;
  margin: 0 0 5px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.14);
  border-radius: 35px;
}

#contact input[type="text"]:hover,
#contact input[type="email"]:hover,
#contact input[type="tel"]:hover,
#contact input[type="url"]:hover,
#contact textarea:hover {
  -webkit-transition: border-color 0.3s ease-in-out;
  -moz-transition: border-color 0.3s ease-in-out;
  transition: border-color 0.3s ease-in-out;
  border: 1px solid #aaa;
}

#contact textarea {
  height: 100px;
  max-width: 100%;
  resize: none;
}

#contact input:focus,
#contact textarea:focus {
  outline: 0;
  border: 1px solid #999;
}
::-webkit-input-placeholder {
  color: #888;
}
:-moz-placeholder {
  color: #888;
}
::-moz-placeholder {
  color: #888;
}
:-ms-input-placeholder {
  color: #888;
}

.contactos-texto{    
    position: absolute;
    left: 60%;
    right: 41.41%;
    top: 18%;
    bottom: 90.85%;
    width: 35%;
    height: auto;

    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 100px;
    /* or 167% */

    display: flex;
    align-items: center;
    text-align: center;

    color: #FFFFFF;
    transform: translateX(-50%);
}

.btn-enviar{
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 8px;

    position: absolute;
    width: 30%;
    height: 45px;
    left: 35%;
    top: 95%;
    transform: translateX(-50%, -50%); /* Centralizar horizontal e verticalmente */


    background: #ffffff;
    box-shadow: 10px 10px 46.85px rgba(255, 255, 255, 0.25), 0px 0px 13px rgba(255, 255, 255, 0.15), 0px 0px 6.15px rgba(255, 255, 255, 0.15), 0px 0px 3.15px rgba(236, 214, 214, 0.15);
    border-radius: 35px;

    color: black;
    font-size: 15px;
    display: flex;
    align-items: center;
    text-align: center;
    font-family: 'Poppins';
    font-style: normal;   
    font-weight: 550;
    
}

.fundocontacto-image{
    position:relative;
    top: 15vh;
    bottom: 0;
    width: auto;
    height: auto;
    z-index: -1;   
}

.btn-maisportf{
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 8px;

  position: absolute;
  width: 15%;
  height: 45px;
  left: 42%;
  top: 275%;
  transform: translateX(-50%, -50%); /* Centralizar horizontal e verticalmente */


  background: #ffffff;
  box-shadow: 10px 10px 46.85px rgba(255, 255, 255, 0.25), 0px 0px 13px rgba(255, 255, 255, 0.15), 0px 0px 6.15px rgba(255, 255, 255, 0.15), 0px 0px 3.15px rgba(236, 214, 214, 0.15);
  border-radius: 35px;

  color: black;
  font-size: 15px;
  display: flex;
  align-items: center;
  text-align: center;
  font-family: 'Poppins';
  font-style: normal;   
  font-weight: 550;
}

#titulo-pagBagas{
  position: absolute;
  left: 85%;
  right: 41.41%;
  top: 45%;
  bottom: 90.85%;
  width: 100%;
  height: auto;

  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-size: 80px;
  line-height: 100px;
  /* or 167% */

  display: flex;
  align-items: center;
  text-align: center;

  color: #FFFFFF;
  transform: translateX(-50%);

}

.btn-contactarbagas{
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 1px;

  position: absolute;
  width: 30vh;
  height: 45px;
  left: 45%;
  top: 55%;
  transform: translateX(-50%, -50%); /* Centralizar horizontal e verticalmente */


  background: #ffffff;
  box-shadow: 10px 10px 46.85px rgba(255, 255, 255, 0.25), 0px 0px 13px rgba(255, 255, 255, 0.15), 0px 0px 6.15px rgba(255, 255, 255, 0.15), 0px 0px 3.15px rgba(236, 214, 214, 0.15);
  border-radius: 35px;

  color: rgb(0, 0, 0);
  font-size: 15px;
  display: flex;
  align-items: center;
  text-align: center;
  font-family: 'Poppins';
  font-style: normal;   
  font-weight: 550;
  line-height: 20px;
}

.imagem-paginaBagas {
  position: absolute;
  top: 20%;
  left: 10%;
  filter: drop-shadow(10px 16px 10px rgba(64, 112, 136, 0.1));
  border-radius: 0px 276px 337.5px 337.5px;
 }

 /*retangulos de design grafico___ esta aqui devido a tornar respinsivo não pode ter os mesmos nomes que os do sobre*/
 

.wrapper{
  position: absolute;
  width: 80%;
  height: 631px;
}

[class^="box"] {
margin: 30px;
}
[class*="retangle5"] {
  height: 300px;
  width: 300px;
  position: absolute;
  
}

[class$="primeiro11"] {
  position: absolute;
  left: 15%;
  top: 155%;

  background: rgba(255, 255, 255, 0.3);
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8.5px);
  /* Note: backdrop-filter has minimal browser support */

  border-radius: 35px;  
       
}


[class$="primeiro11"]::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 0 17px 3px #ffffff75,0 0 4px 2px #ffffff75;
          box-shadow: 0 0 17px 3px #ffffff75,0 0 4px 2px #ffffff75;
  z-index: -1;
  -webkit-animation-name: gradient-shadow;
          animation-name: gradient-shadow;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  border-radius: 35px;
  -webkit-border-radius: 35px;
  -moz-border-radius: 35px;
  -ms-border-radius: 35px;
  -o-border-radius: 35px;
 
}


[class$="segundo22"] {
  position: absolute;
  left: 40%;
  top: 155%;

  background: rgba(255, 255, 255, 0.3);
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8.5px);

  border-radius: 35px;
}

[class$="segundo22"]::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 0 17px 3px #ffffff75,0 0 4px 2px #ffffff75;
          box-shadow: 0 0 17px 3px #ffffff75,0 0 4px 2px #ffffff75;
  z-index: -1;
  -webkit-animation-name: gradient-shadow;
          animation-name: gradient-shadow;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  border-radius: 35px;
  -webkit-border-radius: 35px;
  -moz-border-radius: 35px;
  -ms-border-radius: 35px;
  -o-border-radius: 35px;
 
}
/**/
[class$="terceiro33"] {
  position: absolute;
  left: 65%;
  top: 155%;

  background: rgba(255, 255, 255, 0.3);
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8.5px);

  border-radius: 35px;
}

[class$="terceiro33"]::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 0 17px 3px #ffffff75,0 0 4px 2px #ffffff75;
          box-shadow: 0 0 17px 3px #ffffff75,0 0 4px 2px #ffffff75;
  z-index: -1;
  -webkit-animation-name: gradient-shadow;
          animation-name: gradient-shadow;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  border-radius: 35px;
  -webkit-border-radius: 35px;
  -moz-border-radius: 35px;
  -ms-border-radius: 35px;
  -o-border-radius: 35px;
 
}

/* interior do retangulo Design grafico*/

#texto-identidadeVi{
  position: absolute;
  width: 50%;
  height: 164.45px;
  left: 25%;
  top: 25%;

  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 22px;
  /* or 132% */

  display: flex;
  align-items: center;
  text-align: center;

  color: #ffffff;
}

#texto-identidadedescri{
  position: absolute;
  width: 90%;
  height: 150px;
  left: 5%;
  top: 50%;

  font-family: 'Poppins';
  font-style: normal;
  font-weight: 410;
  font-size: 13px;
  line-height: 20px;
  /* or 132% */

  display: flex;
  align-items: center;
  text-align: center;

  color: #ffffff;
}


#texto-digitalDesign{
  position: absolute;
  width: 50%;
  height: 164.45px;
  left: 25%;
  top: 25%;

  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 22px;
  /* or 132% */

  display: flex;
  align-items: center;
  text-align: center;

  color: #ffffff;
}

#texto-designDescri{
  position: absolute;
  width: 100%;
  height: 150px;
  left: 1%;
  top: 50%;

  font-family: 'Poppins';
  font-style: normal;
  font-weight: 410;
  font-size: 13px;
  line-height: 20px;
  /* or 132% */

  display: flex;
  align-items: center;
  text-align: center;

  color: #ffffff;
}


#texto-merchandising{
  position: absolute;
  width: 50%;
  height: 164.45px;
  left: 25%;
  top: 25%;

  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 22px;
  /* or 132% */

  display: flex;
  align-items: center;
  text-align: center;

  color: #ffffff;
}

#texto-merchandisingDescri{
  position: absolute;
  width: 100%;
  height: 150px;
  left: 1%;
  top: 50%;

  font-family: 'Poppins';
  font-style: normal;
  font-weight: 410;
  font-size: 13px;
  line-height: 20px;
  /* or 132% */

  display: flex;
  align-items: center;
  text-align: center;

  color: #ffffff;
}

.btn-mais3{
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 8px;

  position: absolute;
  width: 15%;
  height: 45px;
  left: 42%;
  top: 372%;
  transform: translateX(-50%, -50%); /* Centralizar horizontal e verticalmente */


  background: #ffffff;
  box-shadow: 10px 10px 46.85px rgba(255, 255, 255, 0.25), 0px 0px 13px rgba(255, 255, 255, 0.15), 0px 0px 6.15px rgba(255, 255, 255, 0.15), 0px 0px 3.15px rgba(236, 214, 214, 0.15);
  border-radius: 35px;

  color: black;
  font-size: 15px;
  display: flex;
  align-items: center;
  text-align: center;
  font-family: 'Poppins';
  font-style: normal;   
  font-weight: 550;  
}

/*desenvolvimento web experiencia */

.process {
  width: 800px;
  height: 300px;
  margin: 3em auto;
  cursor: default;
  margin-top: 65%;
  z-index: 2;
}

.process-items {
  display: table;
  margin: 0 0 10px;
  padding: 0;
  list-style-type: none;
  color: #fff;
  font-size: 20px;
  font-family: 'Poppins';
  font-style: normal;
  text-align: center;
  z-index: 2;
}
.process-items li {
  display: table-cell ;
  width: 25%;
  vertical-align: bottom;
  padding: 0 3.2em;
  transform: scale(0.90) translateY(50px);
  transform-origin: bottom center;
  transition: transform 0.5s;
  z-index: 2;
}
.process-items li.active  {
  transform: scale(1) translateY(0);
}
