@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.cdnfonts.com/css/boowie");

@keyframes surgir {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

:root {
  --cor-primaria: #606060;
  --cor-secundaria: #393939;
  --cor-font: #56585e;
  --cor-whats: #25d366;
  --cor-logo-secundaria: #ab8141;

  --fonte-destaque: "Poppins", sans-serif;
  --fonte-logo: "BOOWIE", sans-serif;
}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
}

h1 {
  font-family: var(--fonte-destaque);
  color: var(--cor-logo-secundaria);
  font-size: 2.5em;
}

h2 {
  font-family: var(--fonte-destaque);
  color: var(--cor-logo-secundaria) !important;
  font-size: 2.3em;
}

h3 {
  font-family: var(--fonte-destaque);
  color: var(--cor-font);
  font-size: 2em;
}

p,
a,
li {
  font-family: var(--fonte-destaque);
  color: var(--cor-font);
  font-size: 1.2em;
}

/* Balão flutuante WhatsApp */

.container_balloon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.balloon {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  animation: pulsar 2s infinite;
  transition: opacity 1s ease-in-out;
  transition: background-image 0.5s ease;
  background: var(--cor-whats) url(../imagens/botao-flutuante-wp.svg) no-repeat
    center center fixed;
}

.balloon:hover {
  background: var(--cor-secundaria) url(../imagens/logo-botao-flutuante.png)
    no-repeat center center fixed;
}

@keyframes pulsar {
  0% {
    transform: scale(0.9); /* Tamanho original */
  }
  50% {
    transform: scale(1); /* Aumenta 10% no meio da animação */
  }
  100% {
    transform: scale(0.9); /* Volta ao tamanho original */
  }
}

/* Cabeçalho */

.cabecalho {
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 120px;
  padding: 0px 30px;
  background-color: white;
  box-shadow: 0px 2px 10px 2px rgba(250, 250, 250, 0.459);
  z-index: 1;
}

.cabecalho p {
  display: none;
}

.cabecalho nav {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

.cabecalho a {
  display: inline-block;
  padding: 20px 5px;
  text-decoration: none;
  text-align: center;
  font-size: 1.1em;
  font-weight: bold;
  color: var(--cor-secundaria);
}

.cabecalho > nav a:hover {
  color: #131313;
  cursor: pointer;
  text-decoration: underline;
  transform: translate(-2px, -2px);
  transition: transform 0.3s ease;
}

.cabecalho > nav a:visited {
  color: #131313;
}

/* Background do Header */

.background_header {
  background-color: var(--cor-secundaria);
  height: 100vh;
  display: flex;
  flex-flow: row nowrap;
}

.background_header_container_adv {
  width: 100vw;
  min-width: 650px;
  margin-top: 150px;
  background: #393939 url(../imagens/advogadas.png) no-repeat bottom right;
  background-size: contain;
}

/* Texto principal do Header */

.texto_principal_header {
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-items: left;
  margin: 180px 30px 50px 120px;

  /* Efeito texto principal */
  opacity: 0;
  transform: translateY(-10px);
  animation: surgir 2s ease forwards;
  /* Fim do Efeito texto principal */
}

.texto_principal_header h1 {
  text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.2);
  color: white;
}

.texto_principal_header p {
  margin: 30px 0px;
  text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1);
  line-height: 2.5rem;
  font-size: 1.6em;
  color: white;
}

.texto_principal_header div {
  align-self: center;
}

.texto_principal_header a {
  display: inline-block;
  text-decoration: none;
  width: 450px;
  font-weight: bold;
  text-align: center;
  color: white;
  background-color: var(--cor-whats);
  padding: 20px;
  border-radius: 50px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.15);
  text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.15);
  transition: 0.3s ease;
}

.texto_principal_header a:hover {
  background-color: #27e66d;
  text-decoration: underline;
  cursor: pointer;
}

/* Sessões */

section {
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
}

section h2 {
  text-align: center;
  padding-top: 60px;
  padding-bottom: 10px;
  text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1);
}

section p,
li,
a {
  max-width: 75vw;
  line-height: 3rem;
  text-align: justify;
  font-family: var(--fonte-destaque);
}

/* Sessão 1 */

.section1 {
  margin-bottom: 60px;
}

.section1-container {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-flow: row nowrap;
  gap: 50px;
  width: 65%;
}

.section1-p-final {
  padding-top: 50px;
  font-weight: bolder;
  color: var(--cor-secundaria);
  margin: 50px 0px;
}

.section1-fundo1 {
  min-width: 500px;
  height: 650px;
  background: white url(../imagens/fundo1.jpg) no-repeat center center;
  background-size: cover;
  border-radius: 25px;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.15);
}

.section1-texto1 {
  max-width: 800px;
  margin-top: -50px;
}

.section1 p {
  padding: 20px 0px;
}

#section1-container2 {
  margin: 100px 0px !important;
}

.section1-fundo2 {
  min-width: 500px;
  height: 650px;
  background: white url(../imagens/IMG_8447.JPEG) no-repeat center center;
  background-size: cover;
  border-radius: 25px;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.15);
}

.section1-texto2 {
  max-width: 800px;
}

.section1-texto2 p {
  font-size: 1.5em;
}

.section1 ul p {
  font-weight: bold;
  text-align: center;
  padding-top: 30px;
  text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1);
}

.section1 span {
  color: var(--cor-logo-secundaria);
}

.section1 li {
  text-align: center;
  list-style: none;
}

.section1 li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--cor-logo-secundaria);
  margin-right: 8px;
}

.section1 hr {
  max-width: 800px;
  margin: auto;
  margin-bottom: 30px;
}

/* Sessão 2 */

.section2 {
  background: linear-gradient(#393939e7, #393939e7),
    url(../imagens/asset.jpeg) no-repeat bottom center fixed;
  background-size: cover;
  box-shadow: inset 0px 0px 10px 10px rgba(50, 50, 50, 0.6);
}

.section2-container p {
  color: #393939;
  margin: 20px;
  line-height: 50px;
  text-align: center;
}

.section2 > p {
  color: #e6e6e6;
  margin: 20px 0px;
  padding: 50px 0px;
  font-weight: bold;
  text-align: center;
  line-height: 60px;
  font-size: 1.8em;
}

.section2-container {
  width: 65%;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-evenly;
  gap: 50px;
}

.section2-container div {
  max-width: 600px;
  background-color: #e6e6e6;
  padding: 30px;
  border-radius: 20px;
  transition: 0.8s ease;
  box-shadow: 2px 2px 5px 3px rgba(0, 0, 0, 0.2);
}

.section2-container div:hover {
  background-color: #393939;
  color: #ebebeb;
}

.section2 a {
  text-decoration: none;
  color: var(--cor-secundaria);
  font-size: 1.1em;
}

.section2 h3 {
  text-align: center;
  color: var(--cor-logo-secundaria);
  text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1);
}

.section2-container div:hover p,
.section2-container div:hover a {
  color: #ebebeb;
}

.section2-container div:hover h3,
.section2-container div:hover a {
  text-decoration: underline;
}

/* Sessão 3 */
.section3 {
  background-color: white;
  width: 85%;
  margin: auto;
}

.section3 h2 {
  margin-bottom: -40px !important;
}

.section3 > p {
  padding: 40px 0px;
  margin: 30px 140px;
  text-align: center;
  font-size: 1.8em;
}

.section3-container {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-evenly;
  justify-content: center;
  gap: 40px;
}

.section3-container div {
  max-width: 350px;
  background-color: #e6e6e6;
  padding: 25px;
  border-radius: 20px;
  transition: 0.8s ease;
  box-shadow: 2px 2px 5px 3px rgba(0, 0, 0, 0.2);
}

.section3-container h3 {
  text-align: center;
  padding-bottom: 20px;
  font-size: 1.6em;
}

.section3-container p {
  line-height: 40px;
  text-align: center;
}

.section3-container div:hover {
  background-color: var(--cor-font);
  color: var(--cor-secundaria);
}

.section3-container div:hover p,
.section3-container div:hover h3 {
  color: #e6e6e6;
}

.section3-container div:hover h3 {
  text-decoration: underline;
}

/* Sessão 4 */
.section4 {
  background-color: var(--cor-secundaria);
  box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.1);
}

.section4 h2 {
  margin-bottom: 20px;
}

.section4 > p {
  text-align: center;
  font-size: 1.4em;
  line-height: 35px;
  width: 65%;
}

.section4 p {
  color: white;
  line-height: 35px;
}

.section4-container {
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-evenly;
  width: 65%;
}

.section4-container-michele {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 50px;
  gap: 100px;
}

.section4-container-michele > div > p,
.section4-container-raphaela > div > p {
  color: var(--cor-logo-secundaria);
  font-weight: bold;
  margin-top: 25px;
  line-height: 25px;
  font-size: 1.4em;
}

.section4-michele {
  background: white url(../imagens/Michele.JPG) no-repeat center center;
  background-size: cover;
  width: 400px;
  height: 500px;
  border-radius: 20px;
  box-shadow: 2px 2px 5px 3px rgba(0, 0, 0, 0.2);
  transition: 0.8s ease;
}

.section4-container-michele:hover .section4-michele,
.section4-container-raphaela:hover .section4-raphaela {
  transform: scale(1.05);
}

.section4-container-raphaela {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row-reverse;

  gap: 100px;
  margin-bottom: 50px;
}

.section4-raphaela {
  background: white url(../imagens/Rapha.JPG) no-repeat bottom center;
  background-size: cover;
  width: 400px;
  height: 500px;
  border-radius: 20px;
  box-shadow: 2px 2px 5px 3px rgba(0, 0, 0, 0.2);
  transition: 0.8s ease;
}

.section4-container > div > div > p {
  text-align: center;
}

/* Sessão 5 */
.section5 {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url(../imagens/background-sections.jpg) no-repeat right bottom fixed;
  background-size: cover;
  box-shadow: inset 0px 0px 10px 10px rgba(50, 50, 50, 0.6);
}

.section5 > p {
  color: #e6e6e6;
  margin: 20px;
  font-weight: bold;
  text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1);
}

.section5 h2 {
  padding: 0px;
  margin-top: 100px;
}

#section5-texto-final {
  text-align: center;
  font-size: 1.8em;
  margin: 0px 300px;
  margin-top: 40px;
  margin-bottom: 100px;
}

.section5-container {
  display: flex;
  justify-content: space-evenly;
  flex-flow: row nowrap;
  width: 65vw;
  margin: 50px 0px;
}

.section5-container p {
  text-align: center;
}

.section5-container > div {
  margin: 50px;
  padding: 30px;
  max-width: 620px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 2px 2px 5px 3px rgba(0, 0, 0, 0.2);
}

.section5-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}

.section5-container div > i {
  font-size: 1.4rem;
  color: var(--cor-logo-secundaria);
  padding: 20px 2px;
}

/* Sessão 6 */

.section6 {
  width: 75vw;
  margin: auto;
}

.section6-container {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-evenly;
  align-items: center;
  margin: 50px;
  margin-top: 100px;
  gap: 50px;
}

.section6-container-imagem {
  background: white url(../imagens/imagem-advogadas.jpeg) no-repeat center
    center;
  background-size: cover;
  width: 400px;
  height: 500px;
  box-shadow: 2px 2px 5px 3px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  transition: 0.8s ease;
}

#section6-sobre {
  color: var(--cor-logo-secundaria);
  font-weight: bold;
  font-size: 2em;
}

.section6-container p {
  max-width: 800px;
}

.section6 h2 {
  margin-bottom: 30px;
}

.section6-container:hover .section6-container-imagem {
  transform: scale(1.05);
}

.section6 ul {
  margin-bottom: 50px;
}

.section6 li {
  line-height: 55px;
  text-align: justify;
  list-style: none;
}

.section6 li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--cor-logo-secundaria);
  margin-right: 8px;
}

/* Sessão 7 */
.section7 {
  background-color: var(--cor-secundaria);
  box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.1);
}

.section7 h2 {
}

.section7 .section7-container {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-evenly;
  margin: 30px 0px 100px 0px;
  width: 80%;
  gap: 30px;
}

.section7-container > div {
  width: 350px;
  height: 350px;
  background-color: #e6e6e6;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.8s ease;
}

.section7-imagem1-espaco {
  width: 340px;
  height: 340px;
  background: white url(../imagens/espaco1.jpeg) no-repeat center center;
  background-size: cover;
  border-radius: 20px;
}

.section7-imagem2-espaco {
  width: 340px;
  height: 340px;
  background: white url(../imagens/espaco2.jpeg) no-repeat center center;
  background-size: cover;
  border-radius: 20px;
}

.section7-imagem3-espaco {
  width: 340px;
  height: 340px;
  background: white url(../imagens/espaco3.jpeg) no-repeat center center;
  background-size: cover;
  border-radius: 20px;
}

.section7-container > div:hover {
  transform: scale(1.1);
  background-color: var(--cor-logo-secundaria);
}

/* Sessão 8 */
.section8 h2 {
  padding: 50px 0px;
}

.section8-container {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-evenly;
  width: 100%;
  margin-bottom: 40px;
  gap: 50px;
}

.section8-content {
  max-width: 600px;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
}

.section8-content p {
  text-align: center;
}

.section8-content #endereco::before {
  content: "\f5a0";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 25px;
  color: var(--cor-logo-secundaria);
  margin-right: 8px;
}

.section8-content #telefone::before {
  content: "\f095";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 25px;
  color: var(--cor-logo-secundaria);
  margin-right: 8px;
}

.section8-content iframe {
  width: 100%;
  height: 400px;
  margin-bottom: 30px;
  box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, 0.123);
}

.section8-content ul {
  list-style: none;
  width: 100%;
}

.section8-content li {
  text-align: center;
  line-height: 50px;
}

.section8-content #horario {
  font-weight: bold;
  color: var(--cor-logo-secundaria);
  font-size: 2em;
}

.section8-content #horario::before {
  content: "\f017";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 25px;
  color: var(--cor-logo-secundaria);
  margin-right: 8px;
}

/* Rodapé */

footer {
  height: auto;
  background-color: var(--cor-secundaria);
  padding: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row wrap;
}

footer h3 {
  text-align: center;
  font-size: 2.5em;
  background: radial-gradient(ellipse, #faec9f, #caa840);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

footer p {
  text-align: center;
  font-size: 1.5em;
  padding: 0px 0px 10px 0px;
  margin-top: -8px;
  background: radial-gradient(ellipse, #faec9f, #caa840);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
