@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=El+Messiri:wght@400..700&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:#fa7020;
  --cor2:#3F3C36;
  --cor3:#36393F;
  --cor4:#FFEDC7;
  --cor5:#1D3541;

  --fonte-destaque: Cinzel, sans-serif;
  --fonte-titulo: El Messiri, 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-título)
  }
  
  header.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-image: linear-gradient(45deg, rgb(0, 0, 0), rgb(20, 19, 19) 65%);
    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 h1{
    font-size: 1.5em;
    color: rgb(255, 255, 255);
    font-family: var(--fonte-destaque);
    
  }

  .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: rgb(255, 102, 0);
    transition: width 0.3s ease;
  }
  
  nav.menu ul li a:hover::after {
    width: 100%;
  }
  
  nav.menu ul li a:hover {
    color: rgb(255, 102, 0);
  }
  
  /* 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 rgb(255, 102, 0);
    background-color: transparent;
    color: white;
    border-radius: 10px;
    width: 100px;
    height: 35px;
  
    cursor: pointer;
    display: block;
    margin: 0px;

  }

  .btn-whatsapp:hover{
    background-color: rgb(255, 102, 0);
    color: white;
    font-weight: 700;
    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{
  position: relative;
  background-image: url(../imagens/bandeira-mobile.jpg);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  width: 100%;
  height: 1000px;
  text-align: center;
  font-family: var(--fonte-destaque);

}

.bandeira h1{
  position: absolute;
  font-size: 2.5em;
  font-weight: 300;
  top: 35%;
  left: 50%;
  transform: translate(-50%,50%);
  color: white;
  width: 80%;

}

.bandeira h2{
  position: absolute;
  font-size: 1.3em;
  font-weight: 300;
  top: 41%;
  left: 50%;
  transform: translate(-50%,50%);
  color: white;

}







.atuacao{
  width: 100%;
  background-image: linear-gradient(115deg,rgb(255, 255, 255) 42%, rgb(165, 164, 164));
  

}

.atuacao h1{
  font-family: var(--fonte-titulo);
}

.atuacao li{
  margin-bottom: 10px;
}







.area-principal{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: auto;
  padding: 50px 0px;
  line-height: 2em;
}



.imagem-destaque{
  width: 60%;
}



.btn-contato{
 
  border: none;
  width: 250px;
  height: 50px;
  font-weight: 200;
  font-size: 1.2em;
  background-color: rgb(255, 102, 0);
  color: white;
  cursor: pointer;
  margin: 40px auto;
}

.btn-contato:hover{
  background-color: rgb(22, 21, 21);
}


.ft-atuacao{
  width: 100%;
  height: 450px;
  background-image: url(../imagens/varejos.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, #131615, #363E3C 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-left: 2px solid var(--cor1);
  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: var(--cor1);

}

/* 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-normal);
  font-weight: 300;
  font-size: 1.2em;
}

.btn-chamada:hover{
  box-shadow: 0px 2px 2px 1px rgba(255, 102, 0, 0.705);
  
}


.reclamada{
  position: relative;
  height: 900px;
  width: 100%;
  background-image: url(../imagens/bandeira2-mobile.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.txt-reclamada{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 80%;
  line-height: 2em;
  font-family: var(--fonte-normal);

}

.txt-reclamada ul{
  margin: 30px auto;
}

.txt-reclamada h1{
  font-family: var(--fonte-titulo);
}

.sessao-slider{
  padding: 0px 0px 130px 0px;
}

.sessao-slider h1{
  width: 80%;
  font-family: var(--fonte-titulo);
  text-align: center;
  margin:50px auto;
}

.sessao-slider p {
  line-height: 2em;
  font-family: var(--fonte-normal);
  width: 80%;
  margin: 30px auto;
  text-align: justify;
  

}
.slider-container {
  width: 100%;
  max-width: 1000px;
  overflow: hidden;
  position: relative;
}

.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.card {
  flex: 0 0 80%;
  max-width: 80%;
  margin: 0 10%;
  background: white;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  position: relative;
  transition: 0.3s;
}

.card img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.card-content {
  padding: 15px;
}

.card-content h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.card-content button {
  background: var(--cor1);
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s;
}

.card-content button:hover {
  background: #171718;
}

.expanded {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.753);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.expanded.active {
  opacity: 1;
  visibility: visible;
  line-height: 1em;
  text-align: left;
  font-size: 0.8em;

}

.expanded.active p {
 margin: 10px auto;
}

.expanded.active ul{
  list-style-position: inside;}

 .txt-expanded{
  width: 90%;
  margin: auto;
 } 
.expanded button {
  margin-top: 20px;
  background: var(--cor1);
  color: white;
  width: 80px;
  height: 30px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}


.expanded button
:hover{
  background-color: #0a0a0a;
}

.flex{
  display: flex;
}

.btn-advogado{
  margin-top: 20px;
  background: rgb(14, 13, 13);
  color: white;
  width: 100px;
  height: 35px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-left: 10px;
}

.btn-advogado:hover{

  background: var(--cor1);

}

.dots {
  text-align: center;
  margin-top: 10px;
}

.dot {
  height: 7px;
  width: 40px;
  margin: 5px;
  background-color: gray;

  display: inline-block;
  cursor: pointer;
  transition: 0.3s;
}

.dot.active {
  background-color: var(--cor1);
}

@media (min-width: 768px) {
  .slider {
      justify-content: space-around;
  }

  .card {
      flex: 1 0 30%;
      max-width: 30%;
      margin: 0;
  }

  .dots {
      display: none;
  }
}




.mini-blog{
  background-image: linear-gradient(45deg, #131615, #363E3C 45%);
  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: var(--cor1);
  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: rgb(29, 28, 28);
}

/* 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-normal);
}

.sessao-footer{
  display: flex;
  margin-left: 5%;
  justify-content: space-between;
  flex-direction: column;
  width: 90%;
  font-family: var(--fonte-normal);
    
}

.sessao-footer div{
  margin-bottom: 15px;
}

.info-footer p{
  margin-bottom: 15px ;
  font-size: 0.8em;
}

footer ul, a{
  list-style-type: none;
  text-decoration: none;
  color:rgb(31, 28, 28);
  font-weight: 500;
}
.endereco{
  font-size: 1em;
  margin-left: 20px;

}

h3{
  color: var(--cor1);
}

.links-uteis > li > a{
color: rgb(31, 28, 28);
  margin: 10px 0px;
}

.links-uteis > li > a:hover{
  color:var(--cor1);
}

.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: rgb(31, 28, 28);
  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: var(--cor1);
  box-shadow: 0 0 0 2px var(--cor1) ;
}

.form button {
  display: block;
  padding: 1rem;
  background: var(--cor1);
  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: rgb(31, 28, 28);
}

.divisoria{
    display: block;
    width: 90%;
    height: 1px;
    background-color: #000000;
    margin: 10px auto;
    
}
