﻿@charset "UTF-8";

@import url('../css2-1');
@import url('../css2-2');


:root{
  --cor1:#004aad;
  --cor2:#5de0e6;
  --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,#011930, #046c9c, #011930 );
    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: 200px;
  }
  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: #c7972f;
    transition: width 0.3s ease;
  }
  
  nav.menu ul li a:hover::after {
    width: 100%;
  }
  
  nav.menu ul li a:hover {
    color: #c7972f;
  }
  
  /* 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 #c7972f;
    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: #c7972f;
    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: 80px;
    height: 80px;
    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: 50px;
    height: 50px;
}

/* 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);
    display: none;
}

.instagram-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.bandeira{
  position: relative;
  margin-top: 100px;
    background-image: url(../imagens/banner.jpg);
    background-size: cover;
    background-position:center;  
    height: 500px;

}

.txt-bandeira{
  position: absolute;
  top: 75%;
  left: 30%;
  transform: translate(-30%, -75%);
   width: 80%;
}

.txt-bandeira button{

  border: none;
  padding: 15px;
  border-radius: 5px;
  background-color: #0287c5;
  color: white;
  cursor: pointer;
}

.txt-bandeira button:hover{

  background-color: #011930;

}

.titulo-bandeira{
  color: white;
  font-family: var(--fonte-destaque);
  font-weight: 300;
  text-align: left;
  margin-bottom: 20px;
}





.atuacao{
  width: 100%;
  background-image: linear-gradient(115deg,rgb(255, 255, 255) 42%, rgb(165, 164, 164)); 

}

.card-container {
  padding: 50px 0px 100px 0px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-around;
  max-width: 1200px;
  width: 100%;
  margin: auto;
}

.card-pilares {
  background: #065E91;
  color: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 300px;
  transition: transform 0.3s ease-in-out;
}

.card-pilares:hover {
  transform: translateY(-5px);
}

.icon img {
  width: 50px; /* Ajuste conforme necessário */
  height: 50px;
  margin-bottom: 10px;
}


.title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #ffffff;
}

.description {
  font-size: 14px;
  color: #ffffff;
}

@media (max-width: 768px) {
  .card-container {
      flex-direction: column;
      align-items: center;
  }
}

.areas{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100px;
  background-image: linear-gradient(45deg,#011930, #046c9c, #011930 );
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.452);
  color: #ffffff;
  font-size: 0.6em;
  font-style: italic;
  text-align: center;
  font-weight: 100;
  
}

.areas h1{
  font-family: var(--fonte-normal);
  font-weight: 300;
  font-size: 1.8em;
}






.area-principal{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: auto;
  padding: 50px 0px;
}

.imagem-destaque{
  width: 60%;
}



.btn-contato{
 border-radius: 10px;
  border: none;
  width: 200px;
  height: 50px;
  font-weight: 200;
  font-size: 1.2em;
  background-color: #065E91;
  color: white;
  cursor: pointer;
  margin: auto;
}

.btn-contato:hover{
  background-color: #011930;
}
.ft-atuacao{
  width: 100%;
  height: 450px;
  background-image: url(../imagens/aposentados.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: url(../imagens/trabalhadores.jpg);
background-repeat: no-repeat;
background-size: cover;
background-position: top;

  width: 100%;
  padding: 100px 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 white;
  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: #0287c5;

}

/* 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;
}


.cv-advogado{
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 50px 0px;
  align-items: center;
  gap: 50px;
 
}

.card{
  width: 400px;
  height: 550px;
  background-image: url(../imagens/advogado.jpeg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 5px;
  box-shadow: 2px 5px 5px 4px rgba(0, 0, 0, 0.137);
}

.card h1{
  text-align: center;
  padding-top: 40px;
  color: white;
}

.ft-advogado{
  width: 400px;
  
  height: 80%;
  border-radius: 5px;
}

.txt-advogado{
  width: 400px;

  padding: 40px }

.txt-advogado ul{
  color: rgb(0, 0, 0);
  list-style: inside;
  line-height: 2em;
 
}

.txt-advogado h1{
  margin-top: 20px;
}



.chamada-acao{
  position: relative;
  width: 100%;
  height: 1000px;
  background-image: url(../imagens/equipe.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);
  font-weight: 200;
  text-align: center;
  width: 90%;
  font-size: 2em;
}


.sessao-blog{
  background-image: linear-gradient(45deg, #e9e9e9 5%, #ffffff );
  width: 100%;
  padding: 50px 0px;
}

.sessao-blog h1{
  text-align: center;
  color: #ffae00;
  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: #004aad;
  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 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{
  margin: 10px 0px;
}
.links-uteis > li > a:hover{
  color: #E4AE39;
}

.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,#ffffff4d, #fcfeff50 50%);

  border: 2px solid white;
}

.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;
  font-weight: 500;
}

::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: #E4AE39;
  box-shadow: 0 0 0 2px #E4AE39 ;
}

.form button {
  background: #E4AE39;
  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;
}