
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');

  /* font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal; */

@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Roboto+Serif:ital,opsz,wght@0,8..144,100..900;1,8..144,100..900&display=swap');

/* font-family: "Roboto Serif", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "wdth" 100,
    "GRAD" 0; */

.smooth-scroll {
  scroll-behavior: smooth;
}

h2 {
  font-family: 'Roboto', sans-serif;
}

p {
  /* font-family: 'EB Garamond', serif; */
  /* font-family: 'Italiana', serif; */
  /* font-family: 'Kanit', sans-serif; */
  /* font-family: 'Lato', sans-serif; */
  /* font-family: 'Lora', serif; */
  /* font-family: 'Montserrat Alternates', sans-serif; */
  /* font-family: 'Open Sans', sans-serif; */
  /* font-family: 'Poppins', sans-serif; */
  /* font-family: 'Roboto', sans-serif; */
  /* font-family: 'Vollkorn', serif; */


  /* font-family: 'Abril Fatface', cursive;
  font-family: 'DM Serif Display', serif;
  font-family: 'EB Garamond', serif;
  font-family: 'Italiana', serif;
  font-family: 'Kanit', sans-serif;
  font-family: 'Lato', sans-serif;
  font-family: 'Lora', serif;
  font-family: 'Montserrat Alternates', sans-serif;
  font-family: 'Open Sans', sans-serif;
  font-family: 'Poppins', sans-serif;
  font-family: 'Roboto', sans-serif;
  font-family: 'Tangerine', cursive; */

}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  outline: none;
  text-decoration: none;

  box-sizing: border-box;
}

html {
  /* scroll-behavior: smooth; */
  overflow-x: hidden;
  width: 100vw;
  /* font-family: 'EB Garamond', serif; */
  /* font-family: 'Italiana', serif; */
  /* font-family: 'Kanit', sans-serif; */
  /* font-family: 'Lato', sans-serif; */
  /* font-family: 'Lora', serif; */
  /* font-family: 'Montserrat Alternates', sans-serif; */
  /* font-family: 'Open Sans', sans-serif; */
  /* font-family: 'Poppins', sans-serif; */
  /* font-family: 'Roboto', sans-serif; */
  /* font-family: 'Vollkorn', serif; */
  /* background-image: linear-gradient(to right, rgb(11, 62, 79), rgb(76, 76, 78)); */


  /* font-family: 'Abril Fatface', cursive;
  font-family: 'DM Serif Display', serif;
  font-family: 'EB Garamond', serif;
  font-family: 'Italiana', serif;
  font-family: 'Kanit', sans-serif;
  font-family: 'Lato', sans-serif;
  font-family: 'Lora', serif;
  font-family: 'Montserrat Alternates', sans-serif;
  font-family: 'Open Sans', sans-serif;
  font-family: 'Poppins', sans-serif;
  font-family: 'Roboto', sans-serif;
  font-family: 'Tangerine', cursive; */

}

/* MENU */
.navegacao {
  position: fixed;
  width: 100%;
  z-index: 2;
  height: 100px;
  background-color: white;
}


.navegacao .fundo {
    position: fixed;
    width: 100%;
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 60px;
    background-color: #8B0000;
    height: 40px;
}

.logo {
    background-color: white;
    padding: 0 20px;
}

.logo img {
    width: 130px;
    transition: 0.3s ease-in-out;
}

.logo img:hover {
  transform: scale(1.1);
}

.menu ul{
    display: flex;
    gap: 60px;
}

.social-menu {
  display: none;
}

.menu ul li a{
    color: white;
    font-family: 'Roboto', sans-serif;
    text-decoration: none;
}

.menu ul li a:hover{
  color: #D7AF3E;
}

/* Esconde o menu-toggle em telas grandes */
.menu-toggle {
  display: none;
}

/* FIM MENU */


/* PRINCIPAL */
.principal {
  position: relative;
}

.principal, .cor {
    position: relative;
    top: 50px;
    overflow: hidden;
    width: 100%;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cor {
    background-color: rgba(0, 0, 0, 0.5);
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1; /* Mantém o vídeo atrás do conteúdo */
}

.conteudo {
    position: relative;
    color: #fff;
    z-index: 1; /* Coloca o conteúdo acima do vídeo */
    text-align: center;
    top: -40px;
}

.conteudo h1, .conteudo h2 {
    margin: 0;
    padding: 0.5em 0;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Sombra para destacar o texto */
}

.conteudo h1 {
    font-size: 3.2em; /* Tamanho do texto principal */
    font-family: 'Kanit', sans-serif;
}

.conteudo h2 {
    font-size: 2em; /* Tamanho do texto secundário */
    margin-top: -35px;
    font-weight: 300;
}

.rede-social {
    position: absolute;
    bottom: 80px;
    display: flex;
    gap: 20px;
    font-size: 30px;
}

.rede-social a {
    color: white;
}

.rede-social a:hover {
  color: #D7AF3E;
}
/* FIM PRINCIPAL */


/* ADVOCACIA */
.advocacia {
    padding: 80px 160px;
}

.advocacia h2 {
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    font-size: 30px;
    color: #414141;
}

.advocacia-texto-1 {
    background-color: red;
}

.advocacia-img {
    float: right;
    background-color: #8b0000;
    width: 500px;
    height: 280px;
    position: relative;
}

.advocacia-img img {
    position: absolute;
    width: 460px;
    top: 10px;
    right: 10px;
}

.advocacia-quadrado {
    background-color: white;
    position: relative;
    width: 150px;
    height: 280px;
}

.advocacia-texto-p p {
    text-align: justify;
    font-family: "Roboto Serif", seri;
    font-size: 17px;
    font-weight: 400;
    line-height: 27.2px;
    text-align: start;
    letter-spacing: normal;
    color: #414141;
    padding-bottom: 20px;
}

.advocacia-texto a {
    padding: 10px;
    background-color: #8B0000;
    color: white;
    border: none;
    margin-top: 10px;
}
/* FIM ADVOCACIA */


/* ÁREA DE ATUAÇÃO */
.area-atuacao {
    background-color: #E8E6E6;
    padding: 60px;
}

.area-atuacao-box {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 40px;
}

.area-atuacao-box h2 {
    text-transform: uppercase;
    position: relative;
    padding: 0 10px;
    font-size: 36px;
    text-align: center;
    color: #414141;
    font-weight: 500;
}

.area-atuacao-box h2 span {
  color: #414141;
  font-weight: bold;
}

.area-atuacao-box p {
    padding: 0 55px;
    width: 80%;
    border-left: 1px solid #424242;

    text-align: justify;
    font-family: "Roboto Serif", seri;
    font-size: 17px;
    font-weight: 400;
    line-height: 27.2px;
    text-align: start;
    letter-spacing: normal;
    color: #414141;
}
/* FIM ÁREA DE ATUAÇÃO */


/* AREA CARD */
.area-especializacao {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    width: 85%;
    margin: 40px auto;
    flex-wrap: wrap;
}

.area-card {
    width: 160px;
    height: 160px;
    perspective: 800px;
    margin: 0 auto;
    border-radius: 50%;
    margin-bottom: 30px;
  }


  .area-card span {
    color: #434343;
    font-size: 3rem;
  }

  .area-card .frente a span {
    background-color: #8B0000;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease; /* Adiciona uma transição suave */
}

.area-card .frente a span:hover {
    transform: rotate(360deg); /* Gira o sinal + em 360 graus */
}

  
  .frente, .tras {
    width: 100%;
    height: 100%;
    position: absolute;
    /* backface-visibility: hidden; */
    /* transition: transform 0.5s; */

    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.5rem;

    border-radius: 50%;
  }
  
  .frente {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 10px;
    border: 1px solid #616161;
  }

  .frente h2 {
    color: #434343;
    text-transform: capitalize;
    font-size: 15px;
    font-weight: 500;
  }
/* FIM AREA CARD */

/* FIM ÁREA DE ATUAÇÃO */


/* VALORES E COMPROMISSOS */
.valores-compromisso {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 60px;
}

.valores-compromisso-img img {
  width: 500px;
}


.valores-compromisso-texto h2 {
  color: #414141;
  font-weight: 400;
  font-size: 42px;
  line-height: normal;
  text-align: start;
  letter-spacing: normal;
}

.valores-compromisso-texto h2 span{
  color: #414141;
  font-weight: bold;
}

.valores-compromisso-texto p {
  padding-top: 20px;
  font-size: 20px;
  font-weight: 300;
  color: #A3A3A3;
}

.valores-compromisso-texto a {
  padding: 10px;
  background-color: #8B0000;
  color: white;
  border: none;
  position: relative;
  top: 20px;
  /* margin-top: 300px; */
}
/* FIM VALORES E COMPROMISSOS */


/* AMBIENTE NEGÓCIO */
/* .ambiente-negocio {
  
} */

.ambiente-video {
  position: absolute;
    /* top: 0; */
    /* left: 0; */
    width: 100%;
    height: 450px;
    object-fit: cover;
    z-index: -1;
}

/* AMBIENTE DE NEGÓCIO */
.ambiente-fundo {
  width: 100%;
  height: 450px;
  background-color: #000000ab;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ambiente-fundo p{
  font-size: 30px;
  letter-spacing: 3px;
  color: white;
  padding: 220px;
  font-weight: 600;
}
/* FIM AMBIENTE NEGÓCIO */


/* UNIDADES */
.unidades {
  padding: 20px 60px 120px 60px;
  text-align: center;
  background-color: #E8E6E6;
}

.unidades h2 {
  font-size: 42px;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  padding: 40px 0;
  color: #414141;
}

.unidades-box {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.endereco-nova-friburgo, .endereco-campo-grande {
  display: flex;
  flex-direction: column;
  
  width: 350px;
  height: 400px;
  color: #000;
  /* background-color: #8B0000; */
}

.endereco-box-1, .endereco-box-2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.endereco-box-1 figcaption, .endereco-box-2 figcaption {
  background-color: #a60000;
  padding: 6px;
  width: 100%;
  color: #fff;
}

.endereco-box-1 img {
  width: 350px;
  height: 320px;
}

.endereco-box-1, .endereco-box-2 {
  position: relative;
}

.endereco-box-1 h3, .endereco-box-2 h3 {
  position: absolute;
  top: 20px;
  left: 0;
}

.endereco-box-1 p, .endereco-box-2 p {
  padding-top: 60px;
  text-align: left;
}

/* FIM UNIDADES */

/* CONTATOS */
.contatos {
  padding: 60px;
  display: flex;
  justify-content: space-around;
  /* background-color: #E8E6E6; */
}

.contato-form form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contato-form h2 {
  font-size: 42px;
  color: #414141;
  font-weight: 500;
}

.contato-form h2 span {
  font-weight: bold;
}

.contato-form input, .contato-form textarea {
  padding: 8px;
  border: 1px solid #8b0000;
}

.contato-form textarea {
  height: 150px;
}

.contato-form form button {
  background-color: #8b0000;
  color: white;
  border: none;
  width: 100px;
  padding: 10px;
  cursor: pointer;
  font-weight: bold;
}

.contato-form form button:hover {
  background-color: #a60000; /* cor um pouco mais clara ao passar o mouse */
}



.contato-img {
  float: right;
  background-color: #8b0000;
  width: 500px;
  height: 280px;
  position: relative;
}

.contato-img img {
  position: absolute;
  width: 460px;
  top: 10px;
  right: 10px;
}

.contato-quadrado {
  /* background-color: white; */
  position: relative;
  width: 150px;
  height: 280px;
}
/* FIM CONTATOS */


/* RODAPÉ */
.rodape {
  padding: 0 60px;
  background-color: #242323;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}


.logo-rodape a{
  width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.logo-rodape img {
  width: 100%;
  height: 150px;
}

.logo-rodape p {
  border-left: 1px solid #ffffffff;
  padding-left: 10px;
  color: #949494;
}

.rede-sociais-box {
  display: flex;
  justify-content: center;
}

.rede-sociais-rodape {
  margin-right: 130px;
}

.rede-sociais-rodape a {
  color: #949494;
  margin-left: 10px;
  font-size: 25px;
  padding-left: 20px;
}

.rede-sociais-rodape a:hover, .politica-termo a:hover {
  color: #EFE262;
}

.politica-termo a {
  color: #949494;
  margin-left: 10px;
}


/* FIM RODAPÉ */

  
