/* --------------------------------- */
/* 0. Scroll Demorado e tipo de letra */
/* --------------------------------- */

* {
  font-family: "Roboto", sans-serif;

  font-weight: 400;
}

html {
  scroll-behavior: smooth;

  scroll-padding-top: 14em;
}

/* --------------------------------- */
/* 1. seletor universal "*" */
/* --------------------------------- */

*,
*::before,
*::after {
  /* rest do box-sizing */
  box-sizing: border-box;
}

/* --------------------------------- */
/* 2. Cores */
/* --------------------------------- */

:root {
  --azul-claro: rgba(29, 103, 249, 1);
  --azul-escuro: rgba(58, 93, 170, 1);
  --laranja-médio: rgba(252, 116, 28, 1);
  --laranja-escuro: rgba(253, 79, 8, 1);
  --laranja-claro: rgba(253, 151, 76, 1);
  --laranja-claro-opacidade-reduzida: rgba(253, 151, 76, 0.8);
  /* --------- */
  --blue-NCS: #0087bd;
  --indigo-dye: #083d77;
}

/* --------------------------------- */
/* 3. body */
/* --------------------------------- */

body {
  margin: 0;
  border: 0;
  padding: 0;

  /* seleção do tipo de letra */
  /* font-family: "Montserrat", sans-serif; */
}

/* --------------------------------- */
/* 4. header e nav */
/* --------------------------------- */

/* --------------------------------- */
/* 4.1. header e navbar -> ecrãs médios */
/* --------------------------------- */

/* header */

/* retirar o hambúrguer menu */
.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
}

.header-img-pequeno-ecrã {
  display: none;

  height: 5.5em;
}

.header-div {
  display: grid;
  grid-template-columns: 13% 17% 57% 13%;

  background-color: var(--laranja-escuro);
}

.header-div-redes-sociais {
  display: flex;

  grid-column: 2/3;

  justify-content: left;

  height: 2.3em;
}

.header-div-redes-sociais-dentro {
  display: flex;

  justify-content: center;
  align-items: center;
}

.header-rede-social {
  color: white;

  padding-left: 1em;
  padding-right: 1em;

  font-size: 1rem;

  transition: color 250ms ease-out;
}

.header-rede-social:hover {
  color: black;

  transition: color 300ms ease-in-out;
}

.header-div-contactos-localização {
  display: flex;

  grid-column: 3/4;

  justify-content: right;

  height: 2.3em;
}

.header-div-contactos-localização-dentro {
  display: flex;

  justify-content: center;
  align-items: center;
}

.header-icone-contactos {
  padding-right: 0.5em;
  margin-left: 2em;

  color: white;

  font-size: 1rem;
  font-weight: 300;

  transition: color 250ms ease-in-out;
}

.header-icone-contactos:hover {
  color: black;

  transition: color 300ms ease-in-out;
}

.header-numero-barra {
  color: white;
  font-size: 1rem;
  font-weight: 400;

  transition: color 250ms ease-in-out;
}

.header-numero-barra:hover {
  color: black;

  transition: color 300ms ease-in-out;
}

.header-numero {
  color: white;

  font-size: 1rem;
  font-weight: 400;

  transition: color 250ms ease-in-out;
}

.header-numero:hover {
  color: black;

  transition: color 300ms ease-in-out;
}

.header-email {
  color: white;

  text-decoration: none;

  font-size: 1rem;
  font-weight: 400;

  transition: color 250ms ease-in-out;
}

.header-email:hover {
  color: black;

  transition: color 300ms ease-in-out;
}

/* navbar */

.navbar {
  display: grid;
  grid-template-columns: 13% 17% 57% 13%;

  background-color: white;

  padding-bottom: 2px;
}

.imagem-nav-link {
  grid-column: 2/3;
  display: flex;

  justify-content: left;
  align-items: center;

  height: 5.5em;
}

.imagem-nav {
  width: 90px;
  margin-left: 24.5px;
}

.ul-nav {
  grid-column: 3/4;

  display: flex;
  justify-content: right;
  align-items: center;

  padding: 0;
  margin: 0;

  height: 5.5em;
}

.li-nav {
  list-style: none;
}

.li-nav a {
  text-decoration: none;

  color: black;

  font-size: 1.4rem;
  font-weight: 400;

  margin-left: 1.85em;

  transition: color 250ms ease-in-out;

  position: relative;
}

.li-nav a::before {
  content: "";

  position: absolute;
  right: 0;
  top: -15%;

  height: 3px;
  width: 0;

  background-color: var(--laranja-escuro);

  transition: 250ms ease-out;
}

.li-nav a:hover::before {
  width: 100%;
  transition: 250ms ease-in;
}

.li-nav a::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: -15%;

  height: 3px;
  width: 0;

  background-color: var(--laranja-escuro);

  transition: 250ms ease-out;
}

.li-nav a:hover::after {
  width: 100%;

  transition: 250ms ease-in;
}

/* diminuição do padding face ao tamanho do ecrã e dimensão das letras */
@media screen and (max-width: 1150px) {
  .li-nav a {
    margin-left: 1.1em;
  }
}

@media screen and (max-width: 1050px) {
  .li-nav a {
    margin-left: 0.8em;
  }
}

/* fim da diminuição */

.li-nav a:hover {
  color: var(--laranja-escuro);

  transition: color 300ms ease-in-out;
}

.li-nav a:last-child {
  padding-right: 0;
}

/* --------------------------------- */
/* 4.2. header e navbar-> ecrãs pequenos e mobile */
/* --------------------------------- */

@media screen and (max-width: 950px) {
  .header-div-redes-sociais {
    display: none;
  }

  .header-div-contactos-localização {
    display: none;
  }

  header {
    background-color: white;

    display: flex;

    align-items: center;
    justify-content: center;

    height: 7em;
  }

  .header-img-pequeno-ecrã {
    display: block;

    position: relative;
  }

  /* menu hambúrguer */
  .nav-toggle-label {
    display: inline;
    cursor: pointer;

    position: absolute;
    top: 0;
    left: 0;
    margin-left: 3.2em;
    height: 7em;
    display: flex;
    align-items: center;
  }

  .nav-toggle:checked ~ .navbar {
    transform: scale(1, 1);
  }

  .nav-toggle:checked ~ .navbar a {
    opacity: 1;
    transition: opacity 250ms ease-in-out 250ms;
  }

  .nav-toggle-label span,
  .nav-toggle-label span::before,
  .nav-toggle-label span::after {
    display: block;
    background-color: black;
    height: 3px;
    width: 2em;

    position: relative;

    transition: transform 350ms ease-in-out 50ms, opacity 400ms ease-in,
      background-color 150ms ease-in-out;
  }

  .nav-toggle-label span::before,
  .nav-toggle-label span::after {
    content: "";
    position: absolute;
  }

  .nav-toggle-label span::before {
    bottom: 8px;
  }

  .nav-toggle-label span::after {
    top: 8px;
  }

  .nav-toggle:checked ~ label > span {
    transform: rotate(45deg);
    background-color: var(--laranja-escuro);
    transition: 400ms ease-in-out;
  }

  .nav-toggle:checked ~ label > span::before {
    transition: opacity 150ms linear;
    opacity: 0;
  }

  .nav-toggle:checked ~ label > span::after {
    transform: rotate(90deg) translate(-7px);
    background-color: var(--laranja-escuro);
    transition: 400ms ease-in-out;
  }
  /* navbar - ecrãs pequenos */
  .navbar {
    display: unset;

    background-color: unset;

    position: absolute;

    top: 7em;
    left: 0;

    width: 100%;

    background-color: white;

    transform: scale(1, 0);
    transform-origin: top;
    transition: transform 400ms ease-in-out;

    padding-bottom: 0.8em;

    z-index: 2;
  }

  .navbar a {
    opacity: 0;
    transition: opacity 150ms ease-in-out;
  }

  .imagem-nav-link {
    display: none;
  }

  .ul-nav {
    display: unset;
  }

  .li-nav a {
    color: black;

    line-height: 200%;

    margin-left: 2.4em;
  }

  .li-nav a::before {
    display: none;
  }

  .li-nav a::after {
    display: none;
  }
}

/* --------------------------------- */
/* 5. Section 1 */
/* --------------------------------- */

.section-1 {
  background-color: black;
}

.slideshow {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.slideshow-item {
  width: inherit;
  height: inherit;
  position: absolute;
  opacity: 0;
  animation: cycleImages 31s infinite;
}

.slideshow-item:nth-child(1) {
  animation-delay: 0s;
}

.slideshow-item:nth-child(2) {
  animation-delay: 10s;
}

.slideshow-item:nth-child(3) {
  animation-delay: 20s;
}

.slideshow-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slideshow-item-text {
  max-width: 100vw;
  position: absolute;

  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;

  top: 45%;
  transform: translateY(-50%);

  text-align: center;
}

.slideshow-item-text h1 {
  font-size: 3.5rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: -0.1em;
  color: white;
}

@media screen and (max-width: 700px) {
  .slideshow-item-text h1 {
    font-size: 2.6rem;
  }
}

.slideshow-item-text h2 {
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.6em;
  color: white;
}

@media screen and (max-width: 700px) {
  .slideshow-item-text h2 {
    font-size: 1.4rem;
  }
}

.slideshow-item-text a {
  font-size: 1.2rem;
  letter-spacing: 2px;
  text-decoration: none;
  color: white;
  font-weight: 500;
  background-color: var(--laranja-escuro);
  /* border-radius: 6px; */
  padding: 0.7em;

  transition: 250ms ease-in-out;
}

.slideshow-item-text a:hover {
  background-color: var(--azul-escuro);

  transition: 250ms ease-in-out;
}

@keyframes cycleImages {
  25% {
    opacity: 0.6;
  }

  40% {
    opacity: 0;
  }
}

/* --------------------------------- */
/* 6. Section 2 */
/* --------------------------------- */

/* --------------------------------- */
/* 6.1. Section 2 -> ecrãs grandes */
/* --------------------------------- */

.section-2 {
  background-color: var(--azul-escuro);

  min-height: 14vh;

  display: flex;
  justify-content: center;
  align-items: center;
}

/* div envolvente */
.barra-informativa {
  width: 75%;
  height: auto;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* frase e ano */
.div-ano-nascimento-empresa {
  height: inherit;

  display: flex;
  justify-content: left;
  align-items: center;
}

.h3-ano-nascimento-empresa {
  margin: 0;

  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 2px;
  word-spacing: 1px;

  color: white;
}

/* portfólio-botão */
.div-portfolio-botao {
  display: flex;
  justify-content: right;
  align-items: center;
}

.div-portfolio-botao a {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-decoration: none;
  color: black;
  font-weight: 500;
  background-color: white;
  /* border-radius: 6px; */
  padding: 0.7em;

  transition: 250ms ease-in-out;
}

.div-portfolio-botao a:hover {
  background-color: var(--laranja-escuro);
  color: white;
}

/* --------------------------------- */
/* 6.2. Section 2 -> ecrãs pequenos */
/* --------------------------------- */

@media screen and (max-width: 760px) {
  .section-2 {
    min-height: 170px;
  }

  .barra-informativa {
    width: 75%;
    height: auto;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(1fr, 1fr));
    gap: 1em;
  }

  .div-ano-nascimento-empresa {
    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;
  }

  .div-portfolio-botao {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

/* --------------------------------- */
/* 7. Section 3 */
/* --------------------------------- */

/* título -> Serviços */
/* I. título secção */
.div-titulo-section-3 {
  margin-top: 3em;
  margin-bottom: 4em;
  text-align: center;
}

.link-titulo-section-3 {
  text-decoration: none;
  color: black;

  font-size: 2rem;
  font-weight: 300;
  padding: 0.3em;
  letter-spacing: 2px;

  position: relative;

  transition: 250ms ease-out;

  /* border-radius: 8px; */
}

.link-titulo-section-3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);

  margin-bottom: -4px;

  width: 40%;
  height: 3px;
  background-color: var(--laranja-escuro);

  transition: 250ms ease-out;
}

.link-titulo-section-3:hover {
  background-color: var(--laranja-escuro);
  color: white;
  transition: 250ms ease-out;
}

.link-titulo-section-3:hover::after {
  width: 0%;
  transition: 250ms ease-out;
}

/* II - icones e cartas */
.cartas-section-3 {
  display: flex;
  justify-content: center;
}

.div-icones-section-3 {
  height: fit-content;
  width: 90%;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

  gap: 2em;

  margin-bottom: 4em;
}

/* centrar icones */
.icone-centro-section-3 {
  margin-top: 1em;

  display: flex;
  justify-content: center;
}

/* II.I - construção */
.construcao-section-3 {
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.22);
  transition: 450ms ease-out;
}

.construcao-section-3:hover {
  background-color: var(--azul-escuro);

  transition: 450ms ease-in-out;
}

.construcao-section-3:hover > div > i {
  color: white;
  background-color: var(--laranja-escuro);
  transition: 450ms ease-in-out;
}

.construcao-section-3:hover > h3 {
  color: white;
  transition: 450ms ease-in-out;
}

.construcao-section-3:hover > p {
  color: white;
  transition: 450ms ease-in-out;
}

.construcao-section-3:hover > .linha-fundo-section-3 {
  background-color: var(--laranja-escuro);
  transition: 450ms ease-in-out;
}

.construcao-section-3 i {
  font-size: 3.2rem;
  color: white;
  background-color: var(--laranja-escuro);

  display: flex;
  justify-content: center;
  align-items: center;

  height: 2em;
  width: 2em;
  border-radius: 50%;

  margin-bottom: 0.4em;
  transition: 450ms ease-in-out;
}

.construcao-section-3 h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: black;
  word-spacing: 1px;

  text-align: center;

  margin-bottom: 1.5em;
  transition: 450ms ease-in-out;
}

.construcao-section-3 p {
  text-align: justify;
  font-size: 0.9rem;
  word-spacing: 1px;
  word-wrap: break-word;
  margin-left: 0.8em;
  margin-right: 0.8em;
  transition: 450ms ease-in-out;
}

/* II.II - restauros */
.restauros-section-3 {
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.22);
  transition: 450ms ease-out;
}

.restauros-section-3:hover {
  background-color: var(--azul-escuro);
  transition: 450ms ease-in-out;
}

.restauros-section-3:hover > div > i {
  color: white;
  background-color: var(--laranja-escuro);
  transition: 450ms ease-in-out;
}

.restauros-section-3:hover > h3 {
  color: white;
  transition: 450ms ease-in-out;
}

.restauros-section-3:hover > p {
  color: white;
  transition: 450ms ease-in-out;
}

.restauros-section-3:hover > .linha-fundo-section-3 {
  background-color: var(--laranja-escuro);
  transition: 450ms ease-in-out;
}

.restauros-section-3 i {
  font-size: 3.2rem;
  color: white;
  background-color: var(--laranja-escuro);

  display: flex;
  justify-content: center;
  align-items: center;

  height: 2em;
  width: 2em;
  border-radius: 50%;

  margin-bottom: 0.4em;
  transition: 450ms ease-in-out;
}

.restauros-section-3 h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: black;
  word-spacing: 1px;

  text-align: center;

  margin-bottom: 1.5em;
  transition: 450ms ease-in-out;
}

.restauros-section-3 p {
  text-align: justify;
  font-size: 0.9rem;
  word-spacing: 1px;
  word-wrap: break-word;
  margin-left: 0.8em;
  margin-right: 0.8em;
  transition: 450ms ease-in-out;
}

/* II.III */
/* .reabilitacao-section-3 {
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.22);
  transition: 450ms ease-out;
}

.reabilitacao-section-3:hover {
  background-color: var(--azul-escuro);
  transition: 450ms ease-in-out;
}

.reabilitacao-section-3:hover > div > i {
  color: white;
  background-color: var(--laranja-escuro);
  transition: 450ms ease-in-out;
}

.reabilitacao-section-3:hover > h3 {
  color: white;
  transition: 450ms ease-in-out;
}

.reabilitacao-section-3:hover > p {
  color: white;
  transition: 450ms ease-in-out;
}

.reabilitacao-section-3:hover > .linha-fundo-section-3 {
  background-color: var(--laranja-escuro);
  transition: 450ms ease-in-out;
}

.reabilitacao-section-3 i {
  font-size: 3.2rem;
  color: white;
  background-color: var(--laranja-escuro);

  display: flex;
  justify-content: center;
  align-items: center;

  height: 2em;
  width: 2em;
  border-radius: 50%;

  margin-bottom: 0.4em;
  transition: 450ms ease-in-out;
}

.reabilitacao-section-3 h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: black;
  word-spacing: 1px;

  text-align: center;

  margin-bottom: 1.5em;
  transition: 450ms ease-in-out;
}

.reabilitacao-section-3 p {
  text-align: justify;
  font-size: 0.9rem;
  word-spacing: 1px;
  word-wrap: break-word;
  margin-left: 0.8em;
  margin-right: 0.8em;
  transition: 450ms ease-in-out;
} */

/* II.IV */
.arranjos-section-3 {
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.22);
  transition: 450ms ease-out;
}

.arranjos-section-3:hover {
  background-color: var(--azul-escuro);
  transition: 450ms ease-in-out;
}

.arranjos-section-3:hover > div > i {
  color: white;
  background-color: var(--laranja-escuro);
  transition: 450ms ease-in-out;
}

.arranjos-section-3:hover > h3 {
  color: white;
  transition: 450ms ease-in-out;
}

.arranjos-section-3:hover > p {
  color: white;
  transition: 450ms ease-in-out;
}

.arranjos-section-3:hover > .linha-fundo-section-3 {
  background-color: var(--laranja-escuro);
  transition: 450ms ease-in-out;
}

.arranjos-section-3 i {
  font-size: 3.2rem;
  color: white;
  background-color: var(--laranja-escuro);

  display: flex;
  justify-content: center;
  align-items: center;

  height: 2em;
  width: 2em;
  border-radius: 50%;

  margin-bottom: 0.4em;
  transition: 450ms ease-in-out;
}

.arranjos-section-3 h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: black;
  word-spacing: 1px;

  text-align: center;

  margin-bottom: 1.5em;
  transition: 450ms ease-in-out;
}

.arranjos-section-3 p {
  text-align: justify;
  font-size: 0.9rem;
  word-spacing: 1px;
  word-wrap: break-word;
  margin-left: 0.8em;
  margin-right: 0.8em;
  transition: 450ms ease-in-out;
}

/* II.V */
.linha-fundo-section-3 {
  margin-top: 3.5em;
  height: 1em;
  background-color: var(--laranja-escuro);
  transition: 450ms ease-in-out;
}

/* ---------------- */
/* 8. Section 4 */
/* ---------------- */

.section-4 {
  background-color: white;

  padding-top: 3.5em;
}

/* div título de secção */
.div-titulo-section-4 {
  text-align: center;
  margin-bottom: 4em;
}

.link-titulo-section-4 {
  text-decoration: none;
  color: black;

  font-size: 2rem;
  font-weight: 300;
  padding: 0.3em;
  letter-spacing: 1px;

  position: relative;

  line-height: 170%;

  transition: 250ms ease-out;
}

.link-titulo-section-4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);

  margin-bottom: -4px;

  width: 40%;
  height: 3px;
  background-color: var(--laranja-escuro);

  transition: 250ms ease-out;
}

.link-titulo-section-4:hover {
  background-color: var(--laranja-escuro);
  color: white;
  transition: 250ms ease-out;
}

.link-titulo-section-4:hover::after {
  width: 0%;
  transition: 250ms ease-out;
}

/* acordeão e afins */
.article-section-4 {
  background-color: white;

  display: flex;
  align-items: center;
  justify-content: center;
}

.contentor-acordeao {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;

  margin-bottom: 4em;
}

.acordeao-item {
  background-color: rgba(232, 228, 228, 0.8);
  margin-bottom: 2em;
}

.link-acordeao {
  font-size: 1.4rem;
  color: black;
  text-decoration: none;

  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;

  padding-right: 1.5em;
  padding-left: 1.5em;

  background-color: var(--laranja-claro-opacidade-reduzida);

  transition: all 250ms ease-in-out;
}

.link-acordeao i {
  color: black;
  padding: 0.5rem;
}

.link-acordeao .fa-minus {
  display: none;
  transition: display 650ms;
}

.link-acordeao .fa-plus {
  transition: display 650ms;
}

.resposta {
  max-height: 0;
  overflow: hidden;
  position: relative;

  transition: max-height 650ms;
}

.resposta p {
  text-align: justify;

  font-size: 1.1rem;
  color: black;

  padding-top: 0.8em;
  padding-bottom: 0.8em;
  padding-right: 1.5em;
  padding-left: 1.5em;
}

.acordeao-item:target .resposta {
  max-height: 20em;
}

.acordeao-item:target .link-acordeao .fa-plus {
  display: none;
  transition: display 650ms;
}

.acordeao-item:target .link-acordeao .fa-minus {
  display: block;
  transition: display 650ms;
}

.acordeao-item:target .link-acordeao {
  background-color: var(--laranja-escuro);
  transition: all 250ms ease-in-out;
}

/* ---------------- */
/* 9. Section 5 */
/* ---------------- */

/* ---------------- */
/* 9.1. Section 5 - ecrãs grandes */
/* ---------------- */
.section-5 {
  min-height: 50vh;
  background-image: url(./Imagens/Article_5/back.jpeg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 70%;
  position: relative;
}

.cor-guindaste {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(112, 34, 3, 0.8);

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.section-5 h2 {
  font-size: 1.4rem;
  padding: 0;
  margin: 0;

  color: white;

  letter-spacing: 1px;

  text-align: right;
  width: 70%;
}

.section-5 h1 {
  font-size: 3rem;
  padding: 0;
  margin: 0;
  margin-top: 0.2em;

  color: white;

  letter-spacing: 3px;
  word-spacing: 2px;

  text-align: right;
  width: 70%;
}

/* article */
.contadores-article {
  height: auto;
  width: 70%;

  color: white;

  display: flex;
  justify-content: right;
}

.contentor-section-5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));

  gap: 1em;
  width: inherit;
  height: auto;
  text-align: right;
  justify-content: right;

  margin-top: 1em;
}

.contadores-article i {
  color: var(--blue-NCS);
  font-size: 1.3rem;
  font-weight: bold;

  padding: 0;
  margin: 0;
}

.contador {
  font-size: 1.7rem;
  font-weight: 300;

  padding: 0;
  margin: 0;

  display: inline;
}

.contadores-article h3 {
  font-size: 1.1rem;
  font-weight: 300;

  padding: 0;
  margin: 0;
  margin-top: 0.5em;

  display: block;
}

/* ---------------- */
/* 9.2. Section 5 - ecrãs pequenos */
/* ---------------- */
@media screen and (max-width: 1200px) {
  .section-5 {
    height: 60vh;
  }

  .section-5 h2 {
    text-align: center;
    font-size: 1.2rem;
  }

  .section-5 h1 {
    text-align: center;

    font-size: 2.2rem;
  }

  .contadores-article {
    justify-content: center;
  }

  .contentor-section-5 {
    display: grid;
    grid-template-columns: 100%;
    text-align: center;
    gap: 1em;
  }
}

@media screen and (max-width: 700px) {
  .section-5 {
    height: 70vh;
  }
}

@media screen and (max-height: 560px) {
  .section-5 {
    height: 80vh;
  }
}

@media screen and (max-height: 444px) {
  .section-5 {
    height: 100vh;
  }
}

@media screen and (max-height: 340px) {
  .section-5 {
    height: 120vh;
  }
}

/* ---------------- */
/* 10. Footer */
/* ---------------- */

/* ---------------- */
/* 10.1. Footer -> ecrãs grandes */
/* ---------------- */
.container-footer {
  max-width: 90%;
  margin: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.ul-f {
  list-style: none;
  padding-left: 0;
}

.footer {
  background-color: rgb(33, 33, 33);
  padding: 0;
  padding-bottom: 1.5em;
  padding-top: 0.5em;
}

.footer-col {
  width: 25%;
  padding: 0 1em;
}

.footer-col h4 {
  font-size: 1.3rem;
  font-weight: 500;

  color: white;

  text-transform: capitalize;

  margin-bottom: 1.5em;

  position: relative;
}

.footer-col h4::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.6em;
  background-color: var(--laranja-escuro);
  height: 2px;
  width: 20%;
}

.footer-col ul li:not(:last-child) {
  margin-bottom: 0.6em;
}

.footer-col ul li a {
  font-size: 1rem;
  text-transform: capitalize;
  color: rgb(216, 208, 208);
  text-decoration: none;
  font-weight: 300;

  display: block;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--laranja-escuro);
  padding-left: 8px;
}

.footer-col p {
  font-size: 1rem;
  text-transform: capitalize;
  color: rgb(216, 208, 208);
  text-decoration: none;
  font-weight: 300;

  text-align: justify;

  display: block;
  transition: all 0.3s ease;
}

.footer-p-hover:hover {
  color: var(--laranja-escuro);
  padding-left: 8px;
}

.footer-localizacao {
  max-width: 35ch;
  color: rgb(216, 208, 208);
  text-decoration: none;
  line-height: 150%;
  transition: all 0.3s ease;
}

.footer-localizacao:hover {
  color: var(--laranja-escuro);
  padding-left: 8px;
}

.footer-col .social-links a {
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0 10px 10px 0;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: white;
  transition: all 0.5s ease;
}

.footer-col .social-links a:hover {
  color: black;
  background-color: var(--laranja-escuro);
}

#footer-email {
  text-transform: none;
  text-transform: lowercase;
  word-wrap: break-word;
}

/* ---------------- */
/* 10.2. Footer -> ecrãs pequeno */
/* ---------------- */

/*responsive*/
@media (max-width: 767px) {
  .footer-col {
    width: 50%;
    margin-bottom: 30px;
  }
}
@media (max-width: 574px) {
  .footer-col {
    width: 100%;
  }
}

/* ---------------- */
/* 11. Botão Topo da Página  */
/* ---------------- */
.botao-topo {
  position: fixed;
  bottom: 15px;
  right: 25px;
  cursor: pointer;
  height: 50px;
  width: 50px;
  background-color: var(--laranja-claro);
  display: none;
  justify-content: center;
  align-items: center;
  border: none;
  color: whitesmoke;
  font-size: 1.5rem;

  z-index: 10;
  transition: all 250ms ease-in;
}

.botao-topo:hover {
  background-color: var(--laranja-escuro);
  color: black;
  transition: all 250ms ease-in;
}

/* ---------------- */
/* 12. Section 6 -> título  */
/* ---------------- */
.section-6 {
  height: 30vh;
  background-image: url(Imagens/Article_6/back2.jpeg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}

.sobre-nos-titulo {
  background-color: rgba(252, 116, 28, 0.8);
  height: 100%;
  width: 100%;

  display: flex;

  justify-content: center;
  align-items: center;
}

.sobre-nos-titulo-div-proximo {
  text-align: center;

  width: 80%;

  padding: 0;
  margin: 0;
}

.sobre-nos-titulo-div-proximo h1 {
  padding: 0;
  margin: 0.2em;

  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 1px;
  word-spacing: 2px;

  color: white;
}

.sobre-nos-titulo-div-proximo h2 {
  padding: 0;
  margin: 0.2em;

  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 1px;
  word-spacing: 2px;

  color: white;
}

/* ---------------- */
/* 12+1. Section 7 -> título  */
/* ---------------- */
.section-7 {
  width: 100%;
  height: auto;

  padding-top: 3em;
  padding-bottom: 3em;

  display: flex;
  justify-content: center;
  align-items: center;
}

.div-envolvente-section-7 {
  width: 80%;
  height: inherit;

  display: grid;
  grid-template-columns: 60% 40%;
  grid-row: 80% 20%;
}

/* coluna 1 */
.titulo-texto-section-7 {
  grid-column: 1;
  grid-row: 1;

  height: 100%;

  margin-right: 2em;
  text-align: justify;
}

.titulo-texto-section-7 p {
  line-height: 180%;
  color: black;
  font-weight: 300;
}

.titulo-texto-section-7 h4 {
  color: black;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 1px;
  word-spacing: 2px;

  position: relative;
}

.titulo-texto-section-7 h4:after {
  content: "";
  position: absolute;
  height: 3px;
  width: 50px;
  background-color: var(--laranja-escuro);
  bottom: 0;
  left: 0;
  margin-bottom: -10px;
}

/* coluna 2 */
.div-video-section-7 {
  grid-column: 2;
  grid-row: 1 / span 2;

  display: flex;
  justify-content: center;

  height: 100%;

  position: relative;
}

.video-section-7 {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;

  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  background-size: cover;
  overflow: hidden;
}

/* estatísticas */
.estatisticas-section-7 {
  grid-column: 1;
  grid-row: 2;

  margin-right: 2em;
}

.contentor-section-7 {
  display: flex;
  justify-content: left;
  align-items: center;
  color: black;
}

.contentor-section-7 div {
  align-items: center;

  width: 14em;

  margin-right: 1.5em;
}

.contentor-section-7 div h3 {
  margin-top: unset;
  margin-top: 0.5em;
}

.contentor-section-7 div i {
  font-size: 1.2rem;
  color: var(--blue-NCS);
}

.section-7 .contador {
  padding: 0;
  margin: 0;
  font-size: 1.6rem;
}

@media screen and (max-width: 1050px) {
  .div-envolvente-section-7 {
    width: 80%;
    height: inherit;

    display: grid;
    grid-template-columns: 100%;
    grid-row: auto;
  }

  .titulo-texto-section-7 {
    grid-row: 1;

    margin-right: 0em;
  }

  .estatisticas-section-7 {
    grid-row: 2;

    margin-right: 0em;
  }

  .contentor-section-7 {
    justify-content: center;

    margin-right: 0em;
  }

  .contentor-section-7 div {
    align-items: center;
    text-align: center;

    margin-right: 0em;
  }
}

@media screen and (max-width: 530px) {
  .contentor-section-7 {
    display: grid;
    justify-content: center;

    margin-right: 0em;
  }

  .contentor-section-7 div {
    align-items: center;
    text-align: center;

    margin-right: 0em;
  }
}

/* ---------------- */
/* 14. Section 8 -> barra  */
/* ---------------- */
.barra-section-8 {
  height: 20vh;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.texto-section-8 {
  font-size: 1rem;
  letter-spacing: 1px;
  word-spacing: 1px;
  color: white;
  background-color: var(--azul-escuro);

  display: flex;
  justify-content: center;
  align-items: center;
}

.imagem-section-8 {
  background-image: url(Imagens/Article_8/pexels-pixabay-259940.jpg);
  background-repeat: no-repeat;
  background-position: 50% 70%;
  background-size: cover;
}

@media screen and (max-width: 1200px) {
  .barra-section-8 {
    height: 40vh;

    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 50% 50%;
  }

  .texto-section-8 {
    font-size: 1rem;
    letter-spacing: 1px;
    word-spacing: 1px;
    color: white;
    background-color: var(--azul-escuro);

    display: flex;
    justify-content: center;
    align-items: center;
  }

  .imagem-section-8 {
    background-image: url(Imagens/Article_8/pexels-pixabay-259940.jpg);
    background-repeat: no-repeat;
    background-position: 50% 70%;
    background-size: cover;
  }
}

@media screen and (max-width: 620px) {
  .texto-section-8 {
    word-wrap: break-word;
    font-size: 0.85rem;
    letter-spacing: 0px;
    word-spacing: 0px;
    text-align: center;
  }

  .texto-section-8 h2 {
    margin-left: 2em;
    margin-right: 2em;
    line-height: 160%;
  }
}

/* ---------------- */
/* 15. Section 9 -> fundador  */
/* ---------------- */
.section-9 {
  max-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.div-envolvente-section-9 {
  display: grid;
  grid-template-columns: 50% 50%;
  max-height: inherit;
}

/* carta */
.div-carta-section-9 {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(Imagens/Article_9/Foto_fundador.jpeg);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;

  max-height: 80vh;
}

/* texto */
.div-texto-section-9 {
  margin: 4em;

  max-height: 80vh;
}

.div-texto-section-9 p {
  line-height: 180%;
  color: black;
  font-weight: 300;
}

.div-texto-section-9 h4 {
  color: black;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 1px;
  word-spacing: 2px;

  position: relative;
}

.div-texto-section-9 h4:after {
  content: "";
  position: absolute;
  height: 3px;
  width: 50px;
  background-color: var(--laranja-escuro);
  bottom: 0;
  left: 0;
  margin-bottom: -10px;
}

@media screen and (max-width: 1400px) {
  .div-texto-section-9 {
    margin: 2em;
  }
}

@media screen and (max-width: 1080px) {
  .section-9 {
    max-height: unset;
    min-height: 120vh;
  }

  .div-envolvente-section-9 {
    grid-template-columns: 100%;
    max-height: unset;
    min-height: 120vh;
  }

  .div-carta-section-9 {
    z-index: -2;
    min-height: 60vh;

    margin: 2em;
  }

  /* texto */
  .div-texto-section-9 {
    min-height: fit-content;

    margin-top: -1em;
  }
}

/* ---------------- */
/* 16. Section 10 -> Faixa Serviços  */
/* ---------------- */
/* idem section 6 */

/* ---------------- */
/* 17. Section 11 -> Cartas serviços + imagens em grid  */
/* ---------------- */

/* título -> Serviços */
/* I. título secção */
.div-titulo-section-3 {
  margin-top: 3em;
  margin-bottom: 4em;
  text-align: center;
}

.link-titulo-section-3 {
  text-decoration: none;
  color: black;

  font-size: 2rem;
  font-weight: 300;
  padding: 0.3em;
  letter-spacing: 2px;

  position: relative;

  transition: 250ms ease-out;

  /* border-radius: 8px; */
}

.link-titulo-section-3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);

  margin-bottom: -4px;

  width: 40%;
  height: 3px;
  background-color: var(--laranja-escuro);

  transition: 250ms ease-out;
}

.link-titulo-section-3:hover {
  background-color: var(--laranja-escuro);
  color: white;
  transition: 250ms ease-out;
}

.link-titulo-section-3:hover::after {
  width: 0%;
  transition: 250ms ease-out;
}

/* II - icones e cartas */
.cartas-section-3 {
  display: flex;
  justify-content: center;
}

.div-icones-section-3 {
  height: fit-content;
  width: 90%;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

  gap: 2em;

  margin-bottom: 4em;
}

/* centrar icones */
.icone-centro-section-3 {
  margin-top: 1em;

  display: flex;
  justify-content: center;
}

/* II.I - construção */
.construcao-section-3 {
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.22);
  transition: 450ms ease-out;
}

.construcao-section-3:hover {
  background-color: var(--azul-escuro);

  transition: 450ms ease-in-out;
}

.construcao-section-3:hover > div > i {
  color: white;
  background-color: var(--laranja-escuro);
  transition: 450ms ease-in-out;
}

.construcao-section-3:hover > h3 {
  color: white;
  transition: 450ms ease-in-out;
}

.construcao-section-3:hover > p {
  color: white;
  transition: 450ms ease-in-out;
}

.construcao-section-3:hover > .linha-fundo-section-3 {
  background-color: var(--laranja-escuro);
  transition: 450ms ease-in-out;
}

.construcao-section-3 i {
  font-size: 3.2rem;
  color: white;
  background-color: var(--laranja-escuro);

  display: flex;
  justify-content: center;
  align-items: center;

  height: 2em;
  width: 2em;
  border-radius: 50%;

  margin-bottom: 0.4em;
  transition: 450ms ease-in-out;
}

.construcao-section-3 h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: black;
  word-spacing: 1px;

  text-align: center;

  margin-bottom: 1.5em;
  transition: 450ms ease-in-out;
}

.construcao-section-3 p {
  text-align: justify;
  font-size: 0.9rem;
  word-spacing: 1px;
  word-wrap: break-word;
  margin-left: 0.8em;
  margin-right: 0.8em;
  transition: 450ms ease-in-out;
}

/* II.II - restauros */
.restauros-section-3 {
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.22);
  transition: 450ms ease-out;
}

.restauros-section-3:hover {
  background-color: var(--azul-escuro);
  transition: 450ms ease-in-out;
}

.restauros-section-3:hover > div > i {
  color: white;
  background-color: var(--laranja-escuro);
  transition: 450ms ease-in-out;
}

.restauros-section-3:hover > h3 {
  color: white;
  transition: 450ms ease-in-out;
}

.restauros-section-3:hover > p {
  color: white;
  transition: 450ms ease-in-out;
}

.restauros-section-3:hover > .linha-fundo-section-3 {
  background-color: var(--laranja-escuro);
  transition: 450ms ease-in-out;
}

.restauros-section-3 i {
  font-size: 3.2rem;
  color: white;
  background-color: var(--laranja-escuro);

  display: flex;
  justify-content: center;
  align-items: center;

  height: 2em;
  width: 2em;
  border-radius: 50%;

  margin-bottom: 0.4em;
  transition: 450ms ease-in-out;
}

.restauros-section-3 h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: black;
  word-spacing: 1px;

  text-align: center;

  margin-bottom: 1.5em;
  transition: 450ms ease-in-out;
}

.restauros-section-3 p {
  text-align: justify;
  font-size: 0.9rem;
  word-spacing: 1px;
  word-wrap: break-word;
  margin-left: 0.8em;
  margin-right: 0.8em;
  transition: 450ms ease-in-out;
}

/* II.III */
/* .reabilitacao-section-3 {
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.22);
  transition: 450ms ease-out;
}

.reabilitacao-section-3:hover {
  background-color: var(--azul-escuro);
  transition: 450ms ease-in-out;
}

.reabilitacao-section-3:hover > div > i {
  color: white;
  background-color: var(--laranja-escuro);
  transition: 450ms ease-in-out;
}

.reabilitacao-section-3:hover > h3 {
  color: white;
  transition: 450ms ease-in-out;
}

.reabilitacao-section-3:hover > p {
  color: white;
  transition: 450ms ease-in-out;
}

.reabilitacao-section-3:hover > .linha-fundo-section-3 {
  background-color: var(--laranja-escuro);
  transition: 450ms ease-in-out;
}

.reabilitacao-section-3 i {
  font-size: 3.2rem;
  color: white;
  background-color: var(--laranja-escuro);

  display: flex;
  justify-content: center;
  align-items: center;

  height: 2em;
  width: 2em;
  border-radius: 50%;

  margin-bottom: 0.4em;
  transition: 450ms ease-in-out;
}

.reabilitacao-section-3 h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: black;
  word-spacing: 1px;

  text-align: center;

  margin-bottom: 1.5em;
  transition: 450ms ease-in-out;
}

.reabilitacao-section-3 p {
  text-align: justify;
  font-size: 0.9rem;
  word-spacing: 1px;
  word-wrap: break-word;
  margin-left: 0.8em;
  margin-right: 0.8em;
  transition: 450ms ease-in-out;
} */

/* II.IV */
.arranjos-section-3 {
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.22);
  transition: 450ms ease-out;
}

.arranjos-section-3:hover {
  background-color: var(--azul-escuro);
  transition: 450ms ease-in-out;
}

.arranjos-section-3:hover > div > i {
  color: white;
  background-color: var(--laranja-escuro);
  transition: 450ms ease-in-out;
}

.arranjos-section-3:hover > h3 {
  color: white;
  transition: 450ms ease-in-out;
}

.arranjos-section-3:hover > p {
  color: white;
  transition: 450ms ease-in-out;
}

.arranjos-section-3:hover > .linha-fundo-section-3 {
  background-color: var(--laranja-escuro);
  transition: 450ms ease-in-out;
}

.arranjos-section-3 i {
  font-size: 3.2rem;
  color: white;
  background-color: var(--laranja-escuro);

  display: flex;
  justify-content: center;
  align-items: center;

  height: 2em;
  width: 2em;
  border-radius: 50%;

  margin-bottom: 0.4em;
  transition: 450ms ease-in-out;
}

.arranjos-section-3 h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: black;
  word-spacing: 1px;

  text-align: center;

  margin-bottom: 1.5em;
  transition: 450ms ease-in-out;
}

.arranjos-section-3 p {
  text-align: justify;
  font-size: 0.9rem;
  word-spacing: 1px;
  word-wrap: break-word;
  margin-left: 0.8em;
  margin-right: 0.8em;
  transition: 450ms ease-in-out;
}

/* II.V */
.linha-fundo-section-3 {
  margin-top: 3.5em;
  height: 1em;
  background-color: var(--laranja-escuro);
  transition: 450ms ease-in-out;
}

/* ----------------- */
/* 18. Section 12 -> galeria */
/* ----------------- */
.section-12 {
  margin: 5em auto;
  max-width: 1100px;
}

.section-12 nav {
  width: 100%;
}

nav .items {
  display: flex;
  justify-content: center;
  max-width: 100%;

  justify-content: center;
}

nav .items .item {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  padding-left: 1.2em;
  padding-right: 1.2em;

  font-size: 1.1rem;
  font-weight: 400;

  width: max-content;

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  height: 100%;

  color: black;

  /* border-radius: 50px */

  transition: all 150ms ease-in-out;
}

nav .items .active {
  background-color: var(--laranja-escuro);
  color: white;
}

nav .items .item:hover {
  color: white;
  background-color: var(--laranja-escuro);
  cursor: pointer;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  margin-top: 2em;
}

.gallery .image {
  width: calc(100% / 4);
  padding: 0.6em;
  cursor: pointer;
}

.gallery .image.hide {
  display: none;
}

.gallery .image.show {
  display: block;
  animation: animate 250ms ease-out;
}

@keyframes animate {
  0% {
    transform: scale(0.5);
    transform-origin: left;
  }
  100% {
    transform: scale(1);
    transform-origin: left;
  }
}

.gallery .image span {
  display: flex;
  width: 100%;
  overflow: hidden;
}

.gallery .image img {
  width: 100%;
  vertical-align: middle;
  transition: all 250ms ease-out;
}

.gallery .image:hover img {
  transform: scale(1.1);
}

.preview-box {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  background-color: white;

  min-width: fit-content;
  max-height: fit-content;

  padding: 0 5px 5px 5px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.22);
  z-index: 3;

  opacity: 0;
  pointer-events: none;
}

.preview-box.show {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(0.95);
}

.preview-box .details {
  display: flex;
  padding: 0.8em 1em 0.8em 0.65em;
  justify-content: space-between;
  align-items: center;
}

.preview-box .details .title {
  display: flex;
  font-size: 1.1rem;
  font-weight: 400;
}

.details .title p {
  margin: 0;
  padding: 0;
  margin-left: 7px;

  font-weight: 600;
}

.details .icon {
  color: var(--laranja-escuro);
  font-size: 1.2rem;
  cursor: pointer;
}

.preview-box .image-box {
  display: flex;
  height: 600px;
}

.image-box img {
  width: 100%;
}

.shadow {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.5);

  display: none;
}

.shadow.show {
  display: block;
}

@media screen and (max-width: 1000px) {
  .gallery .image {
    width: calc(100% / 3);
  }

  nav .items .item:first-child {
    margin-left: 2em;
  }

  nav .items .item:last-child {
    margin-right: 2em;
  }
}

@media screen and (max-width: 900px) {
  .gallery .image {
    width: calc(100% / 2);
  }
}

@media screen and (max-width: 800px) {
  nav .items .item {
    font-size: 1rem;
  }

  .gallery .image {
    width: calc(100% / 1);
  }
}

@media screen and (max-width: 700px) {
  nav .items .item:first-child {
    margin-left: unset;
  }

  nav .items .item:last-child {
    margin-right: unset;
  }

  nav .items {
    flex-wrap: wrap;
    justify-content: center;
  }

  nav .items .item {
    display: flex;
    justify-content: center;
    margin-top: 5px;
    margin-bottom: 5px;
  }
}

/* ----------------- */
/* 19. Section 12+1 -> contacte-nos */
/* ----------------- */
/* font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
"Lucida Sans", Arial, sans-serif; */

/* section contactos */
.section-12-mais-1 {
  display: flex;
  justify-content: center;
}

/* artigo contactos */
.article-12-mais-1 {
  width: 100%;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2em;

  background-color: var(--azul-escuro);

  max-width: 85vw;

  margin-top: 3em;
  margin-bottom: 3em;
  padding: 3em;
}

/* google maps */
.google-maps-imagem {
  max-width: 70vw;

  margin-left: 1em;

  display: flex;
  justify-content: center;
  align-items: center;
}

/* artigo contactos */
.contact-form-article {
  max-width: 70vw;
}

/* formulário em si */
.form-contactenos {
  background-color: var(--azul-escuro);

  width: 100%;
}

.google-maps-ecras-pequenos {
  display: none;
}

/* ecrãs pequenos */
@media screen and (max-width: 857px) {
  /* section contactos */
  .section-12-mais-1 {
    display: flex;
    justify-content: center;
  }

  /* artigo contactos */
  .article-12-mais-1 {
    width: 100%;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2em;

    background-color: var(--azul-escuro);

    max-width: 85vw;

    margin-top: 3em;
    margin-bottom: 3em;
    padding: 0em;
    padding-top: 3em;
  }

  /* google maps */
  .google-maps-imagem {
    max-width: 100%;

    margin-left: 0em;

    display: flex;
    justify-content: center;
    align-items: center;
  }

  .google-maps-ecras-pequenos {
    display: block;
    width: 80%;
  }

  .google-maps-ecras-grandes {
    display: none;
  }

  /* artigo contactos */
  .contact-form-article {
    max-width: 100%;
  }

  /* formulário em si */
  .form-contactenos {
    width: 100%;
  }
}

/* remoção border formulário */
.fieldset-contactenos {
  border: none;
}

/* nome título */
.name-label {
  display: block;
  font-size: 1.1rem;
  color: white;
  font-weight: 400;
  padding-bottom: 0.5em;
  padding-top: 0.5em;
}

.name-label:hover {
  cursor: pointer;
}

/* nome texto */
.name-input {
  display: block;
  font-size: 1rem;
  color: black;
  font-weight: 300;
  margin-bottom: 1.5em;
  width: 100%;
  padding: 0.4em;
}

/* email título*/
.email-label {
  display: block;
  font-size: 1.1rem;
  color: white;
  font-weight: 400;
  padding-bottom: 0.5em;
  padding-top: 0.5em;
}

.email-label:hover {
  cursor: pointer;
}

/* email texto*/
.email-input {
  display: block;
  font-size: 1rem;
  color: black;
  font-weight: 300;
  margin-bottom: 1.5em;
  width: 100%;
  padding: 0.4em;
}

/* âmbito título*/
.ambito-label {
  display: block;
  font-size: 1.1rem;
  color: white;
  font-weight: 400;
  padding-bottom: 0.5em;
  padding-top: 0.5em;
}

.ambito-label:hover {
  cursor: pointer;
}

/* âmbito texto*/
.ambito-select {
  display: block;
  font-size: 1rem;
  color: black;
  font-weight: 300;
  margin-bottom: 1.5em;
  width: 100%;
  padding: 0.5em;
}

/* mensagem título*/
.mensagem-label {
  display: block;
  font-size: 1.1rem;
  color: white;
  font-weight: 400;
  padding-bottom: 0.5em;
  padding-top: 0.5em;
}

.mensagem-label:hover {
  cursor: pointer;
}

/* mensagem texto*/
.mensagem-text-area {
  display: block;
  font-size: 1rem;
  color: black;
  font-weight: 300;
  margin-bottom: 1.5em;
  width: 100%;
  padding: 0.4em;
  letter-spacing: 1px;
  text-align: justify;
}

/* ficheiro título*/
.ficheiro-label {
  display: block;
  font-size: 1.1rem;
  color: white;
  font-weight: 400;
  margin-bottom: 0.5em;
}

.ficheiro-label:hover {
  cursor: pointer;
}

/* ficheiro butão e texto subsequente*/
.fieldset-p {
  display: block;
  font-size: 1rem;
  color: black;
  font-weight: 400;
  margin-bottom: 1.5em;
  line-height: 150%;
  width: 100%;
  padding: 0.4em;
  letter-spacing: 1px;
  background-color: var(--laranja-claro);
  text-align: justify;
}

/* butão enviar */
.butao-enviar-contactos {
  padding: 0.4em;
  margin-left: 0.82em;
  margin-bottom: 0.9em;
  font-size: 1.1rem;
  font-weight: 500;
  color: black;
}

.butao-enviar-contactos:hover {
  cursor: pointer;
}
