@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');


:root{
  --cor1:#997a38;
  --cor2:#3F3C36;
  --cor3:#36393F;
  --cor4:#FFEDC7;
  --cor5:#1D3541;

  --fonte-destaque: Montserrat, sans-serif;
  --fonte-normal: Roboto, sans-serif;
}
/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    scroll-behavior: smooth;
  }

  a{
    text-decoration: none;
   
  }

 

  h1{
    font-family: var(--fonte-destaque)
  }
  
  header.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-image: linear-gradient(45deg,#000000,  #252522 90%);
    color: white;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  }
  
  header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    max-width: 1200px;
    margin: auto;
  }
  
  .logo img{
    width: 150px;
  }
  nav.menu .close-btn {
    display: block;
  }
  nav.menu {
    display: flex;
  }
  
  nav.menu ul {
    list-style: none;
    display: flex;
    gap: 50px;
  }
  
  nav.menu ul li a {
    text-decoration: none;
    color: white;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
  }
  
  nav.menu ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background: #997a38;
    transition: width 0.3s ease;
  }
  
  nav.menu ul li a:hover::after {
    width: 100%;
  }
  
  nav.menu ul li a:hover {
    color: #997a38;
  }
  
  /* Botão de menu (Hamburger) */
  .menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: transparent;
    border: none;
  }
  
  .menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
  }
  
  /* Efeitos no botão */
  .menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  /* Botão de fechar no menu */
  nav.menu .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    display: none;
    z-index: 1001;
  }
  
  /* Responsividade */
  @media (max-width: 768px) {
    .menu-toggle {
      display: flex;
    }
  
    nav.menu {
      position: fixed;
      top: 0;
      left: -100%;
      height: 100vh;
      width: 100%;
      background: rgba(0, 0, 0, 0.95);
      flex-direction: column;
      justify-content: center;
      align-items: center;
      transition: all 0.5s ease;
    }
  
    nav.menu.active {
      left: 0;
    }
  
    nav.menu ul {
      flex-direction: column;
      gap: 20px;
    }
  
    nav.menu ul li {
      opacity: 0;
      transform: translateY(30px);
      animation: fadeIn 0.5s ease forwards;
    }
  
    nav.menu ul li:nth-child(1) {
      animation-delay: 0.3s;
    }
  
    nav.menu ul li:nth-child(2) {
      animation-delay: 0.5s;
    }
  
    nav.menu ul li:nth-child(3) {
      animation-delay: 0.7s;
    }
  
    nav.menu ul li:nth-child(4) {
      animation-delay: 0.9s;
    }
  
    /* Mostrar o botão de fechar no menu ativo */
    nav.menu .close-btn {
      display: block;
    }
  }
  
  /* Animação de fade-in */
  @keyframes fadeIn {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .btn-whatsapp{
    border: 2px solid #997a38;
    background-color: transparent;
    color: white;
    border-radius: 10px;
    width: 100px;
    height: 35px;
    font-family: var(--fonte-destaque);
    cursor: pointer;
    display: block;
    margin: 0px;

  }

  .btn-whatsapp:hover{
    background-color: #997a38;
    transition-duration: 1s;
  }
  
  /* Seções principais */
  main .section {
    padding: 100px 20px;
    text-align: center;
    font-size: 2rem;
    min-height: 100vh;
  }
  
  .social-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px; /* Space between buttons */
    z-index: 1000;
}

/* Individual Button Styling */
.social-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-button img {
    width: 30px;
    height: 30px;
}

/* WhatsApp Button */
.whatsapp-button {
    background-color: #25d366;
}

.whatsapp-button:hover {
    background-color: #1ebe57;
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Instagram Button */
.instagram-button {
    background: radial-gradient(circle, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.instagram-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.bandeira{
  background-image: linear-gradient(45deg,#000000,  #252522 90%);
    width: 100%;
    display: flex;
    flex-direction: column;

}

.slider {
  position: relative;
  width: 100%;
  height: 800px;
  display: flex;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: translateX(100%);
  transition: transform 1s ease-in-out;
}

.slide-title {
  position: absolute;
  bottom: 5%;
  left: 10%;
  color: white;
  text-decoration: none;
  padding: 20px;
  border-radius: 5px;
  width: 80%;
}

.slide h2 {
  font-size: 1.5em;
  margin: 0;
}

.summary {
  font-size: 1.2rem;
  margin: 10px 0;
}

.author-date {
  font-size: 1rem;
  color: #ccc;
}

.slide.active {
  transform: translateX(0);
}

.slide.prev {
  transform: translateX(-100%);
}

.atuacao{
  width: 100%;
  background-image: linear-gradient(115deg,rgb(255, 255, 255) 42%, rgb(165, 164, 164)); 

}

.areas{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100px;
  background-image: linear-gradient(45deg, #997a38 20%, #f1b73a );
  color: white;
  font-size: 0.6em;
  font-style: italic;
  text-align: center;
  font-weight: 100;
  
}

.areas h1{
  font-family: var(--fonte-normal);
  font-weight: 300;
}



.oculto{
  display: none;
}

.visivel{
  
}




.area-principal{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: auto;
  padding: 50px 0px;
}

.imagem-destaque{
  width: 60%;
}



.btn-contato{
 
  border: none;
  width: 200px;
  height: 50px;
  font-weight: 200;
  font-size: 1.2em;
  background-color: #997a38;
  color: white;
  cursor: pointer;
  margin: auto;
}

.btn-contato:hover{
  background-color: #E3AE3A;
}
.ft-atuacao{
  width: 100%;
  height: 450px;
  background-image: url(../imagens/familia.jpg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;

}

.txt-atuacao{
  width: 50%;
  height: 90%;

}

.txt-atuacao ul{
  line-height: 1.8em;
}

.txt-atuacao li{
  margin-bottom: 20px;
}

.txt-atuacao ul h1{
  font-size: 1.3em;
  font-weight: 500;
  line-height: 1.3em;
  margin: 40px 0px 20px 0px;
  text-align: left;
}


.txt-atuacao h1{
  font-size: 1.4em;
  font-weight: 300;
  margin: 40px 0px;
  text-align: center;
}


.outras-areas{
  background-image: linear-gradient(45deg, black, rgb(32, 31, 31) 45%);
  width: 100%;
  padding: 50px 0px;
}

.outras-areas h1{
  font-weight: 300;
  text-align: center;
  color: white;
  
}
.areas-atuacao {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 20px;
  margin: 0 auto;
  max-width: 1200px;
}

/* Estilo de cada retângulo */
.area-card {
  background-color: transparent;
  border-bottom: 2px solid #997a38;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  color: white;
 
}

.area-card ul{
  list-style-position: inside;
}

.area-card:hover{
  background-color: #997a38;

}

/* Tamanho padrão dos textos */
.area-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: white;
}

.area-card p {
  font-size: 1rem;
  margin-bottom: 10px;
}

/* Mini resumo visível por padrão */
.mini-resumo {
  display: block;
}

/* Detalhes ocultos inicialmente */
.detalhes {
  display: none;
  margin-top: 10px;
}

/* Botões */
.area-card button {
  background-image: linear-gradient(45deg, #ffffff, #CBCACA);
  color: #666464;
  border: none;
  padding: 10px 15px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background-color 0.3s;
  font-weight: 550;
}

.area-card button:hover {
  background-color: var(--cor3);
}

/* Responsividade para telas pequenas */
@media (max-width: 600px) {
  .areas-atuacao {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .area-card {
    padding: 15px;
  }

  .area-card h3 {
    font-size: 1.1rem;
  }

  .area-card p {
    font-size: 0.9rem;
  }

  .area-card button {
    padding: 8px 12px;
    font-size: 0.8rem;
  }
}

.btn-chamada{
  display: block;
  margin: auto;
  width: 300px;
  height: 50px;
  text-align: center;
  background-image: linear-gradient(45deg, #ffffff, #CBCACA);
  color: black;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-family: var(--fonte-destaque);
  font-weight: 300;
  font-size: 1.2em;
}

.btn-chamada:hover{
  box-shadow: 0px 4px 4px 2px #2020204d;
}


.news-slider {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  top: 50%;
  transform: translate(0%,-50%);
}

.slider-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slider-item {
  min-width: 100%;
  padding: 20px;
  box-sizing: border-box;
}

.news-title {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.news-date, .news-author {
  font-size: 0.9em;
  color: #777;
}

.news-summary {
  font-size: 1em;
  margin-top: 10px;
}


.sobre{
  width: 100%;
  height: auto;
  padding: 50px 0px;
  font-family: var(--fonte-normal);
  line-height: 2em;
  
 
}

.adv-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  width: 80%;
  margin: auto;
  gap: 30px;
  text-align: justify;

  
}

.adv-section h1{
  text-align: center;
  
}

.adv-text {
  max-width: 500px;
 
}

.adv-slider {

  position: relative;
  max-width: 500px;
  overflow: hidden;
}

.adv-slider-images {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.adv-slider-images img {
  width: 100%;
  flex-shrink: 0;
}

.adv-slider-dots {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.adv-slider-dots button {
  width: 50px;
  height: 7px;
  margin: 0 5px;
  border: none;
 
  background-color: #ccc;
  cursor: pointer;
}

.adv-slider-dots button.active {
  background-color: #333;
}

@media (max-width: 768px) {
  .adv-section {
      flex-direction: column;
      align-items: stretch;
  }
}




.cv-advogado{
  background-color: white;
  width: 100%;
  padding: 50px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: black;
}


.lawyer-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 1200px;
  width: 100%;
  align-items: center;
}

.lawyer-container ul{
  list-style-type: none;
}

.lawyer-container li{
  margin-bottom: 25px;
}

.lawyer-photo img {
  width: 60%;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lawyer-photo img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.lawyer-details {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.lawyer-details h2 {
  font-size: 2rem;

  margin-bottom: 5px;
}

.lawyer-title {
  font-size: 1.2rem;
  font-weight: bold;
 
  margin-bottom: 10px;
}

.lawyer-experience {
  font-size: 1rem;
  line-height: 1.6;

}

.contact-button {
  align-self: start;
  background: #BE9439;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  margin: 0px;
}

.contact-button:hover {
  background: #e0af44;
  transform: scale(1.05);
}

.citacao{
  font-size: 1.5em;
  font-style: italic;
  margin: 30px 0px 0px 0px;
}


/* Responsividade */
@media (max-width: 768px) {
  .lawyer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .lawyer-photo img {
    max-width: 300px;
    margin: 0 auto;
  }

  .contact-button {
    align-self: center;
  }
}








.btn-endereco{
  border: none;
  margin: 20px auto;
  width: 350px;
  height: 50px;
  border-radius: 15px;
  background-color: #BE9439;
  color: white;
  font-size: 1.2em;
  font-family: var(--fonte-destaque);
  font-weight: 300;
  cursor: pointer;
}

.btn-endereco:hover{
  background-color: #E0AF44;
}




.mini-blog{
  background-image: linear-gradient(45deg, #997a38 20%, #f1b73a );
  width: 100%;
  padding: 50px 0px;
}

.blog-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 20px;
  text-align: center;
}



/* Contêiner flexível para as notícias */
.noticias-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* Cada item de notícia */
.noticia-item {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  flex: 1 1 32%;  /* Cada notícia ocupa aproximadamente 1/3 da largura disponível */
  box-sizing: border-box;
  transition: transform 0.3s;
}

.noticia-item:hover {
  transform: scale(1.05);
}

.titulo {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 10px;
}

.resumo {
  font-size: 1rem;
  color: #555;
  margin-bottom: 15px;
}

.data, .fonte {
  font-size: 0.9rem;
  color: #777;
}

.btn {
  background-color: #3e4042;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 1rem;
  transition: background-color 0.3s;
  margin-top: 20px;
}

.btn:hover {
  background-color: #0056b3;
}

/* Responsividade para telas pequenas */
@media (max-width: 768px) {
  .noticias-container {
      flex-direction: column;  /* Coloca as notícias em coluna */
      align-items: center; /* Centraliza as notícias */
  }

  .noticia-item {
      flex: 1 1 100%; /* Cada notícia ocupa 100% da largura disponível */
      max-width: 100%; /* Limita a largura máxima para 100% */
  }
}


/* Defina o estado inicial dos elementos */
.surge-bottom {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Estado final ao entrar na visualização */
.surge-bottom.visible {
  opacity: 1;
  transform: translateY(0);
}


.surge-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1s ease, transform 1s ease;
}

.surge-right.visible {
  opacity: 1;
  transform: translateX(0);
}


.surge-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1s ease, transform 0.8s ease;
}

.surge-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.surge-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1s ease, transform 1s ease;
}

.surge-right.visible {
  opacity: 1;
  transform: translateX(0);
}

footer{
  background-color: rgb(246, 246, 247);
  padding: 40px 0px;
  font-family: var(--fonte-destaque);
}

.sessao-footer{
  display: flex;
  margin-left: 5%;
  justify-content: space-between;
  flex-direction: column;
  width: 90%;
    
}

.sessao-footer div{
  margin-bottom: 15px;
}

footer ul, a{
  list-style-type: none;
  text-decoration: none;
  color: var(--cor5);
  font-weight: 500;
}
.endereco{
  font-size: 1em;
  margin-left: 20px;

}

h3{
  color: var(--cor3);
}

.links-uteis > li > a:hover{
  color: #E4AE39;
}

.nav-footer{
  margin: 15px 0px;
}

.form {
  width: 300px;
  font-size: 1.125rem;
}

.form label,
.form input,
.form textarea,
.form button {
  display: block;
  width: 100%;
}

.form label {
  color: var(--cor5);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.form input,
.form textarea {
  font: inherit;
  padding: 0.8rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 8px;
  transition: border-color, box-shadow 0.2s;
}

.form textarea {
  min-height: 7rem;
  resize: vertical;
}

.form input:hover,
.form input:focus,
.form textarea:hover,
.form textarea:focus {
  outline: none;
  border-color: #E4AE39;
  box-shadow: 0 0 0 2px #E4AE39 ;
}

.form button {
  display: block;
  padding: 1rem;
  background: #E4AE39;
  color: #fff;
  font: inherit;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.2s;
}

.form button:hover,
.form button:focus {
  outline: none;
  background: #1d1d1d;
}

.divisoria{
    display: block;
    width: 90%;
    height: 1px;
    background-color: #000000;
    margin: 10px auto;
}