@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: #00CCE7;
  --cor2:#052a6e;
  --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);
  }

  
 /* Menu com fundo transparente por padrão */
 header.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0) 0%, rgba(190, 190, 190, 0) 90%);
  color: white;
  z-index: 1000;

  transition: background-image 0.5s ease; /* Transição suave para o gradiente */
  background-size: 0% 100%; /* Inicialmente o gradiente começa em 0% */
  background-repeat: no-repeat;
  background-position: left;
}

/* Quando o menu não estiver com fundo transparente */
header.navbar.scrolled {
  background-image: linear-gradient(45deg, #021b31 30%, #164773 100%); /* Gradiente sólido */
  background-size: 100% 100%; /* Preenche toda a área do menu com o gradiente */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  color: black;
}

/* Cor dos links quando o menu ganhar fundo */
header.navbar.scrolled nav.menu ul li a {
  color: #00CCE7; /* Cor quando o menu tem fundo */
}

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; /* Cor inicial dos links */
  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: #00CCE7;
  transition: width 0.3s ease;
}

nav.menu ul li a:hover::after {
  width: 100%;
}

nav.menu ul li a:hover {
  color: #00CCE7;
}

/* 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 white;
    background-color: transparent;
    color: white;
    border-radius: 10px;
    width: 100px;
    height: 35px;
    font-family: var(--fonte-destaque);
    cursor: pointer;
    display: block;
    margin: 0px;
    font-weight: 600;

  }

  .btn-whatsapp:hover{
    background-color: #00CCE7;
    transition-duration: 1s;
    color: white;
    border: 2px solid #00CCE7;
  }
  
  /* 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);
}

/* Facebook Button */
.facebook-button {
    background-color: #1877F2;
}

.facebook-button:hover {
    background-color: #0d65d9;
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}



/* SESSÃO BANDEIRA */
.slider-container {
  position: relative;
  width: 100%;
  height: 700px;
  overflow: hidden;

}

.slider-container .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.slider-container .slide.active {
  opacity: 1;
}

.slider-container .slide .image {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.1); /* Aplica o zoom contínuo */
  animation: zoomEffect 5s infinite alternate; /* Animação contínua */
}

@keyframes zoomEffect {
  0% {
      transform: scale(1.1);
  }
  100% {
      transform: scale(1);
  }
}

.slider-container .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  padding-left: 50px;
  color: white;
  pointer-events: none; /* Evita bloquear os cliques nos botões */
}

.slider-container .text-container,
.slider-container .button {
  pointer-events: auto; /* Permite interação com os elementos de texto e botão */
  z-index: 5;
}


.slider-container .text-container {
  transform: translateY(50px);
  opacity: 0;
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}

.slider-container .slide.active .text-container {
  transform: translateY(0);
  opacity: 1;
}

.slider-container .button {
  margin-top: 10px;
  padding: 10px 20px;
  background-color: var(--cor1);
  color: white;
  border: none;
  cursor: pointer;
}

.slider-container .button:hover {

background-color: var(--cor2);
cursor: pointer;
}

.slider-container .nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.199);
  color: white;
  border: none;
  padding: 15px;
  cursor: pointer;
  z-index: 20; /* Garante que os botões fiquem acima de tudo */
  font-size: 20px;
}

.slider-container .prev { left: 10px; }
.slider-container .next { right: 10px; }


/*SESSÃO INFORMATIVA*/

.btn-contato{
  border: none;
  width: 150px;
  height: 50px;
  background-color:  #00CCE7;
  color: white;
  font-family: var(--fonte-destaque);
  font-weight: 500;
  cursor: pointer;
  margin: 20px 0px;
}

.btn-contato:hover{
  background-color:  #052a6e;
}
.informativo{
  width: 100%;
 
}

.area-principal{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: auto;
  padding: 50px 0px;
}

.txt-inventario h2{
  margin-bottom: 10px;
}

.imagem-destaque{
  display: none;
  width: 60%;
}



.ft-atuacao{
  display: none;
  width: 100%;
  height: 450px;
  background-image: url(../imagens/trabalhador.jpg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;

}

.txt-atuacao {
  width: 50%;
  height: 90%;

}

.txt-atuacao h2,h3{
  font-family: var(--fonte-destaque);
  font-size: 1.1em;
}

.txt-atuacao ul{
  line-height: 2em;
  margin: 30px 0px;
}

.txt-atuacao p{
  line-height: 2em;
}


.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;
}



#atuacoes{
  background-image: linear-gradient(45deg, #021b31 30%, #164773 100%);
  color: white;
  padding: 100px 0px;
}



.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}
@media (max-width: 768px) {
  .grid-container {
      grid-template-columns: repeat(2, 1fr);
  }
}
.cardarea {
  position: relative;
  background-size: cover;
  background-position: center;
  color: white;
  height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Overlay escuro */
.cardarea::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Fundo escuro com transparência */
  transition: background 0.3s ease;
}

.cardarea:hover::before {
  background: rgba(0, 0, 0, 0.8); /* Escurece mais ao passar o mouse */
}

/* Texto centralizado sobre a imagem */
.cardarea span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  font-size: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

/* Botão na parte inferior */
.cardarea .btn {
  position: absolute;
  bottom: 15px;
  background: linear-gradient(45deg, #00CCE7, #052a6e);
  border: none;
  color: white;
  padding: 8px 12px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s ease;
  text-decoration: none;
}

.cardarea .btn:hover {
  background: linear-gradient(45deg, #052a6e, #00CCE7);
}


.cv-advogado{
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 50px 0px;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
  
 
}

.card{
  width: 300px;
  height: 450px;
  background-image: linear-gradient(45deg, #021b31 10%, #0592bd 60%);
  border-radius: 5px;
  box-shadow: 2px 5px 5px 4px rgba(0, 0, 0, 0.137);
}

.card h1{
  text-align: center;
  padding-top: 15px;
  color: white;
}

.ft-advogado{
  width: 300px;
  background-image: url(../imagens/ronaldo.jpeg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 90%;
  border-radius: 5px;
}

.nome-advogada{
  font-family: var(--fonte-destaque);
  font-weight: 300;
}

.txt-advogado{
  padding: 40px;
  width: 80%;

  color: rgb(0, 0, 0);
  border-radius: 10px;

}

.txt-advogado ul{
  line-height: 2em;
  margin: 30px 0px 20px 0px;
  list-style: inside;
  
}

.txt-advogado ul h1{
  font-size: 1.4em;
}



.chamada-acao{
  position: relative;
  width: 100%;
  height: 1000px;
background-image: url(../imagens/banner6.jpg);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  
}

.h1-chamada{
  position: absolute;
  top: 25%;
  left: 50%;
  color: white;
  transform: translate(-50%,0%);
  font-family: var(--fonte-destaque);
  text-align: center;
  width: 90%;
  font-weight: 300;
}

.sessao-blog{
  background-image: linear-gradient(45deg, #052a6e , #00CCE7 20%, #052a6e );
  width: 100%;
  padding: 50px 0px;
}

.sessao-blog h1{
  text-align: center;
  color: white;
  font-weight: 300;
  margin: 20px;
}

.blog {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.card-blog {
  width: 300px;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}
.card-blog:hover {
  transform: scale(1.05);
}
.card-blog img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.news-content {
  padding: 15px;
}
.news-meta {
  font-size: 12px;
  color: #777;
}
.news-title {
  font-size: 18px;
  margin: 10px 0;
}
.news-summary {
  font-size: 14px;
  color: #555;
}
.news-link {
  display: inline-block;
  margin-top: 10px;
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}
.news-link:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .blog {
      flex-direction: column;
      align-items: center;
  }
}


/* 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 li{
  margin: 10px 0px;
}

.sessao-footer div{
  margin-bottom: 15px;
}

.sessao-footer p{
  margin: 20px 0px;
}

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: #00CCE7;
}

.nav-footer{
  margin: 15px 0px;
}

.form {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  top: 60%;
  left: 50%;
  transform: translate(-50%,-60%);
  font-size: 1.125rem;
  width:60%;
  padding: 50px 0px;
  gap: 20px;
  border-radius: 50px;
  background-image: linear-gradient(45deg, #052a6e38 , #00cce734 20%, #052a6e33 );

  border: 2px solid var(--cor1);
}

.h1-form{
  position: absolute;
  top:5%;
  left: 50%;
  color: white;
  transform: translate(-50%,0%);
  font-family: var(--fonte-destaque);
  text-align: center;
  width: 90%;
  font-size: 1em;
}

::placeholder{
  text-align: center;
}


.form input,
.form textarea,
.form button {
  display: block;
  width: 200px;
  height: 40px;
  border-radius: 50px;

}


.form input,
.form textarea {
  font: inherit;
 
  border: 1px solid transparent;
  transition: border-color, box-shadow 0.2s;
}

textarea {
  width: 100%; /* Ajuste conforme necessário */
  height: 150px; /* Ajuste conforme necessário */
  text-align: center; /* Centraliza o texto digitado */
  padding: 10px; /* Ajuste para evitar overflow */
  resize: none; /* Impede o redimensionamento */
  overflow: hidden; /* Remove a barra de rolagem */
  line-height: 1.5; /* Ajuste para melhor aparência */
}

textarea::placeholder {
  text-align: center;
}


.form input:hover,
.form input:focus,
.form textarea:hover,
.form textarea:focus {
  outline: none;
  border-color: #00CCE7 ;
  box-shadow: 0 0 0 2px #00CCE7  ;
}

.form button {
  background: #00CCE7 ;
  color: #fff;
  font: inherit;
  text-transform: uppercase;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.2s;  
  height: 40px;
  width: 200px;
}

.form button:hover,
.form button:focus {
  outline: none;
  background: #1d1d1d;

  
}

.divisoria{
    display: block;
    width: 90%;
    height: 1px;
    background-color: #000000;
    margin: 10px auto;
}