/* Cabeçalho */
.cabecalho {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 999;
}

.secao__cabecalho {
  & .container__cabecalho {
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: row;
    padding: 1rem;

    & .nav__icones {
      display: none;
    }

    & .cabecalho__navegacao {
      & a {
        text-decoration: none;
        font-size: 1.6rem;
        font-weight: 200;
        color: #54fdde;
        transition: color ease-in 800ms;

        &:hover,
        &:active {
          color: #2c4c4b;
          font-weight: bold;
        }
      }

      nav ul {
        display: flex;
        align-items: center;
        list-style: none;
        gap: 3rem;
        color: #54fdde;
      }
    }
  }

  & .redes__sociais {
    display: flex;
    gap: 1rem;
    align-items: center;

    & a {
      text-decoration: none;
      font-size: 1.6rem;
      font-weight: 200;
      color: #54fdde;
      cursor: pointer;

      &:hover {
        transform: scale(1.1);
        color: #54fdde;
      }
    }

    & .logo-redes-sociais {
      width: 3rem;
      display: list-item;
    }
  }
}

/* Secao Hero */
.secao__hero {
  background-image: url(/img/background-1400x480.webp);
  background-repeat: no-repeat;
  max-width: 100vw;
  height: 48rem;

  & .logo__hero {
    padding-top: 1rem;
    padding-left: 18rem;

    & img {
      width: 38rem;
    }
  }
}

/* Pagina Sobre */
.secao__sobre {
  background-image: linear-gradient(93deg, #5ba7a1, #2c4c4a);

  & .container__sobre {
    display: grid;
    grid-template-columns: 15% 60% 15%;
    gap: 6rem;
    padding: 2rem 10rem;
    color: white;
    justify-items: center;

    & .img1__sobre img {
      width: 30rem;
      height: 43rem;
      justify-self: center;
      border-radius: 1.5rem;
    }

    & .img2__sobre img {
      width: 30rem;
      height: 43rem;
      justify-self: center;
      border-radius: 1.5rem;
    }

    & .sobre__texto1 {
      display: flex;
      flex-flow: column;
      font-weight: 200;
      align-self: center;
      gap: 2rem;
      text-align: justify;
      padding: 0 6rem;
    }

    & h2 {
      font-weight: 400;
      text-shadow: 0.2rem 0.2rem #050505;
    }

    & p {
      align-items: flex-end;
      text-shadow: 0.1rem 0.1rem #050505;
    }

    & strong {
      font-weight: 200;
      text-shadow: 0.2rem 0.2rem #050505;
    }
  }
}

/* Pagina Portfolio */
.secao__portfolio {
  background-image: url(img/ariel_lidy.webp);
  background-repeat: no-repeat;
  background-size: cover;

  & .container__portfolio {
    display: flex;
    flex-flow: column;
    align-items: center;

    & h1 {
      font-size: 4.2rem;
      font-weight: 400;
      color: black;
      padding-top: 2rem;
    }

    & .galeria__link {
      display: flex;
      gap: 2rem;
    }

    & .galeria__link a {
      font-size: 1.6rem;
      font-weight: 400;
      text-decoration: none;
      color: black;
      padding: 1rem 0;
    }

    & .galeria__link a:hover {
      transform: scale(1.2);
      color: blue;
      text-decoration: underline;
    }
  }

  & .galeria {
    display: flex;
    flex-flow: wrap;
    justify-content: center;
    padding: 0 2rem;
  }

  & .imagem {
    margin: 1rem;
    width: 20rem;
    height: 20rem;
    overflow: hidden;
    border: 0.1rem solid #ccc;
    cursor: pointer;

    & .titulo__tattoo__pronta {
      display: flex;
      text-align: center;
      justify-content: center;
      padding: 1rem;
      color: white;
      font-size: 1.4rem;
      font-weight: 300;
      border-radius: 1rem 1rem 0 0;
      background-image: linear-gradient(93deg, black, #00000090);
    }
  }

  & .imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
  }

  & .imagem:hover img {
    transform: scale(1.2);
  }

  & .imagem-ampliada {
    position: fixed;
    top: 78%;
    left: 63%;
    transform: translate(-80%, -70%);
    width: 48%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
  }

  & .imagem-ampliada img {
    width: 65rem;
    height: 55rem;
    object-fit: contain;
  }
}

/* Pagina Arte Disponiveis */
.secao__artes-disponiveis {
  /* background-image: linear-gradient(93deg, #5ba7a1, #2c4c4a); */
  background-image: url(img/ariel_lidy.webp);
  background-repeat: no-repeat;
  background-size: cover;

  & .container__artes-disponiveis {
    display: flex;
    flex-flow: column;
    align-items: center;

    & h1 {
      font-size: 4.2rem;
      font-weight: 400;
      color: black;
      padding-top: 2rem;
    }

    & .galeria {
      display: flex;
      flex-flow: wrap;
      justify-content: center;
      padding: 0 2rem;
    }

    & .imagem {
      margin: 1rem;
      width: 20rem;
      height: 30rem;
      overflow: hidden;
      border: 0.1rem solid #ccc;
      cursor: pointer;
      border: none;

      & .titulo__tattoo__dispo {
        display: flex;
        text-align: center;
        justify-content: center;
        padding: 1rem;
        color: white;
        font-size: 1.4rem;
        font-weight: 300;
        border-radius: 1rem 1rem 0 0;
        background-image: linear-gradient(93deg, black, #00000090);
      }
    }

    & .galeria__link {
      display: flex;
      gap: 2rem;
    }

    & .galeria__link a {
      font-size: 1.6rem;
      font-weight: 400;
      text-decoration: none;
      color: black;
      padding: 1rem 0;
    }

    & .galeria__link a:hover {
      transform: scale(1.2);
      color: blue;
      text-decoration: underline;
    }

    & .imagem img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 1s ease;
    }

    & .imagem:hover img {
      transform: scale(1.1);
    }

    & .imagem-ampliada {
      position: fixed;
      top: 78%;
      left: 63%;
      transform: translate(-80%, -70%);
      width: 48%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      z-index: 999;
      display: none;
    }

    & .imagem-ampliada img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }
  }
}

/* Pagina Contato */
.secao__formulario {
  background-image: linear-gradient(93deg, #32667b, #59fae1);
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  color: black;

  & h2 {
    margin-bottom: 3.5rem;
    font-size: 2.4rem;
    text-align: center;
    text-shadow: 0.1rem 0.1rem #fdfcfc;
  }

  & label {
    display: block;
    margin-bottom: 0.5rem;
    text-shadow: 0.1rem 0rem #fdfcfc;
  }

  & input {
    width: 32rem;
    padding: 1rem;
    margin-bottom: 2rem;
    border: 0.1rem solid #ccc;
    border-radius: 0.8rem;
  }

  & textarea {
    width: 50rem;
    padding: 1rem;
    margin-bottom: 2rem;
    border: 0.1rem solid #ccc;
    border-radius: 0.8rem;
  }

  & button {
    width: 50%;
    padding: 1rem;
    background-color: #4caf50;
    color: white;
    border: none;
    border-radius: 0.8rem;
    cursor: pointer;
    font-size: 1.6rem;
  }

  & button:hover {
    background-color: #45a049;
  }

  & .container__contato {
    padding-left: 5rem;
    padding-bottom: 17rem;
  }

  & .container__endereco {
    display: flex;
    flex-flow: column;
    color: white;
    font-weight: 500;
    align-items: center;
    text-shadow: 0.2rem 0.2rem #050505;
    padding-top: 2.5rem;

    & .p-entre-em-contato {
      font-style: normal;
    }

    & .mapa {
      display: flex;
      width: 50rem;
      height: 30rem;
      padding: 2rem 0;
      justify-content: center;
      align-items: stretch;

      & iframe {
        width: 100%;
      }
    }
  }
}

/* Página Política de Privacidade */
.secao__politica__privacidade,
.secao__termos__uso {
  & .politica__privacidade,
  .termos__uso {
    background-color: #2c4c4a;
    display: flex;
    flex-flow: column;
    font-size: 2rem;
    color: white;
    text-shadow: 0.2rem 0.2rem #050505;

    padding: 2rem 20rem;
    gap: 3rem;

    & h1 {
      text-align: center;
    }

    & p {
      text-align: justify;
    }
  }
}

/* Rodapé */
.secao__footer {
  background-color: #000000;
  height: 8.5rem;
  padding-bottom: 1em;
  color: white;
}

.copyright {
  padding-top: 1.5rem;
  padding-bottom: 0;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 200;
}

.copyright .seguranca-tecnologia {
  font-weight: 300;
  font-size: 1.6rem;
  color: #5fa7a1;
}

.developed-by {
  text-align: center;
  font-size: 1rem;

  & stron {
    font-weight: 200;
  }
}

.developed-by span a {
  font-weight: bold;
  font-size: 1.2rem;
  text-decoration: none;
  color: #ff6100;
}

.whatsapp-button {
  position: fixed;
  right: -1rem;
  bottom: 5.8rem;
  width: 8.5rem;
  z-index: 1000;
  transition: all 0.5s ease-in-out;
}

.whatsapp-button img {
  width: 4.5rem;
}

.seção__footer img:hover {
  transform: translate(0.5rem, 0.5rem);
  transition: ease-in 300ms;
}

.whatsapp a img:hover {
  transform: translate(0.5rem, 0.5rem);
  transition: ease-in 300ms;
}

.instagram-button {
  position: fixed;
  right: -1rem;
  bottom: 0.5rem;
  width: 8.5rem;
  z-index: 1000;
  transition: all 0.5s ease-in-out;
}

.instagram-button img {
  width: 4.5rem;
}

.seção__footer img:hover {
  transform: translate(0.5rem, 0.5rem);
  transition: ease-in 300ms;
}

.instagram a img:hover {
  transform: translate(0.5rem, 0.5rem);
  transition: ease-in 300ms;
}

.politica-de-privacidade,
.termo-de-uso {
  background-color: black;
  display: flex;
  gap: 2.5rem;
  font-size: 1rem;
  justify-content: center;
  cursor: context-menu;
}

.politica-de-privacidade a,
.termo-de-uso a {
  color: #5bfadf;
  text-decoration: none;
  transition: transform ease-in 300ms;

  & h3 {
    font-weight: 200;
  }

  &:hover {
    transform: scale(1.1);
  }
}

/* Seção Cookies */
/* #cookie-banner {
  display: flex;
  position: fixed;
  top: 70%;
  left: 5%;
  right: 0;
  justify-content: space-around;
  gap: 3rem;
  background-color: #5bfadf;
  border-radius: 0 2.5rem;
  max-width: 90%;
  padding: 1rem;
  z-index: 9999;

  & .botoes-termo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }

  & h2 {
    font-size: 2.6rem;
    text-align: center;
    color: #050505;
    margin-bottom: 1rem;
  }

  & p {
    font-size: 1.7rem;
    text-align: center;
    color: #050505;
    margin-bottom: 1rem;
  }
}

#aceiteCookies,
#maisInformacoes {
  padding: 1rem 2rem;
  background-color: #40525a;
  font-size: 1.8rem;
  color: white;
  border-radius: 2rem;
  cursor: pointer;
} */

/* Politica de Privacidade / Politica de Cookies */
.container-politica-privacidade {
  display: flex;
  flex-flow: column;
  font-size: 2rem;
  text-align: center;
  line-height: 3rem;
  gap: 2rem;
  margin: 4rem;
  padding: 4rem;
  border-radius: 0.5rem 5.5rem;
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.555);

  & .h1-pp {
    text-align: center;
  }

  & .p-pp a {
    text-decoration: none;
    color: inherit;
  }
}
