@import url('https://fonts.googleapis.com/css2?family=Bakbak+One&family=Lugrasimo&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bakbak+One&family=Lugrasimo&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');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    outline: none;
    scroll-behavior: smooth;
}


:root {
    --cor-1: #362727;
    --cor-2: #d49139;
    --cor-3: #fff;
    --cor-4: #e2e2e9;
}


.h1-cor{
    color: var(--cor-2);
    border-bottom: 1px solid #ccc;
}


html {
    /* scroll-behavior: scroll; */
}

body {
    overflow-x: hidden;

    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
}


/* *************** MENU *************** */
.header {
    /* background-color: #362727; */
    background-color: rgba(0, 0, 0, 0.37);
    padding-inline: 36px;
    height: auto;
    position: fixed;
    z-index: 99;
    width: 100%;
    transition: background-color 0.5s ease;
}

.header.scrolled {
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px); /* Cor do cabeçalho quando rolado */
}

.nav {
    /* max-width: 1280px; */
    height: 90px;
    margin-inline: auto;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 48px;
}


.nav-list {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-list a {
    font-size: 18px;
    color: #fff;
    padding: 10px;
    /* padding-block: 16px; */

    font-family: sans-serif;
    text-decoration: none;
    transition: .3s ease;
}

.nav-list a:hover {
    color: var(--cor-2);
    background-color: #cccccc1f;
}

.social {
    letter-spacing: 10px;
    text-align: center;
}

.social i {
    margin: 0 auto;
    color: var(--cor-2);
    cursor: pointer;
    text-align: center;
    font-size: 25px;
    transition: .5s;
}

.social i:hover {
    color: var(--cor-3);
}

.hamburger {
    display: none;
    border: none;
    background: none;
    border-top: 3px solid #fff;
    cursor: pointer;
}

.hamburger::before, .hamburger::after {
    content: " ";
    display: block;
    width: 30px;
    height: 3px;
    background-color: #fff;
    margin-top: 5px;
    position: relative;
    transition: 0.3s;
}


.nav .logo figure {
    text-align: center;
}

.nav .logo figure img {
    width: 60px;
}

.nav .logo figure figcaption {
    text-align: center;
    text-transform: uppercase;
    color: white;
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    font-size: 14px;
    top: -7px;
    position: relative;
}

.nav .logo figure figcaption span {
    color: #e7aa68;
}

.nav .logo figure p {
    text-transform: uppercase;
    color: white;
    font-weight: 400;
    letter-spacing: 3px;
    font-size: 9px;
    font-style: italic;
    margin-top: -5px;
}


/* MENU RESPONSIVO */



/* ########################################################## */

/* >>>>>>>>>>>>> PRINCIPAL <<<<<<<<<<<<<<<< */
.principal {
    /* position: relative;   
    top: 90px; */
    display: flex; 
    justify-content: center;
    align-items: center;
}


.principal .texto-principal {
    position: absolute;
    top: 45%;    
    text-align: center;
    letter-spacing: 3.5px;
    width: 70%;
}

.principal .texto-principal h1 {
    color: white;
    font-size: 36px;
    padding-bottom: 10px;
}


@keyframes piscar {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
  }
  
  #piscante {
    animation: piscar 1s infinite;
  }


  @keyframes piscar-2 {
    0% { color: red; }
    45% { color: #626262; }
    75% { color: var(--cor-2); }
    00% { color: red; }
  }
  
  #piscar {
    animation: piscar-2 3s infinite;
  }



.principal .texto-principal h1 span {
    color: orangered;
    font-weight: bold;
}

.principal .texto-principal p {
    color: white;
    font-size: 26px;
}


/* SLIDER */

.slider-container {
    position: relative;
    width: 80%;
    margin: 0 auto;
  }
  
  .slides {
    display: flex;
  }
  
  .slide {
    flex: 0 0 auto;
    width: 100%;
  }
  
  /* button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
  } */
   

  .slides {
    width: 100%; 
    height: 600px;
    overflow: hidden;
    position: relative;
  }

  .slides img {
    width: 100%;
    height: auto;

    transform: scale(1.1);
    animation: crescer 6s forwards;
  }


  @keyframes crescer {
    0% {
      transform: scale(1.1);
    }
    100% {
      transform: scale(1.3); 
    }
  }
  

  #prevBtn, #nextBtn {
    font-size: 30px;
    background: transparent;
    color: #cccccc53;
    border: none;
    top: 550px;
    position: absolute;
  } 

  #prevBtn {
    left: 45%;
  }


  #nextBtn {
    right: 45%;
  }

  #prevBtn:hover, #nextBtn:hover {
    color: white;
  }

  
  /* FIM SLIDER */


/* >>>>>>>>>>>>> FIM PRINCIPAL <<<<<<<<<<<<<<<< */


/* ########################################################## */

/* >>>>>>>>>>>>> QUEM SOU <<<<<<<<<<<<<<<< */

.quem-sou {
    background: url(../_img/_principal/cool-background.png);
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 150px;
    position: relative;
}


.quem-sou h1 {
    font-size: 24px;
    letter-spacing: normal;  
    position: absolute;
    top: 60px; 
    text-transform: uppercase; 
}


.quem-sou figure {
    transition: .4s;
}

.quem-sou figure:hover {
    transform: scale(1.1);
}

.quem-sou figure img {
    max-width: 100%;
    height: 450px;
    position: relative;
}

.quem-sou-texto {
    padding: 40px;
    max-width: 60%;
    display: flex;
    flex-direction: column;
    gap: 25px;
    text-align: justify;
}


.quem-sou-texto p, .quem-sou-texto ul li {
    color: #626262;
}

.btn-quem-sou button {
    background-color: var(--cor-2);
    padding: 16px;
    border-radius: 50px;
    border: 1px solid #ccc;
    font-size: 16px;
    transition: .3s ease;
    cursor: pointer;
    color: var(--cor-3);
    width: 100%;
}

.btn-quem-sou button:hover {
    background-color: rgba(141, 172, 81, 0.61);
    color: var(--cor-1);
}




/* >>>>>>>>>>>>> FIM QUEM SOU <<<<<<<<<<<<<<<< */


/* ########################################################## */


/* >>>>>>>>>>>>> ENDEREÇO <<<<<<<<<<<<<<<< */

.endereco {
    background-color: #2e2e2e;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 60px 120px;
}

.endereco img {
    width: 350px;
}

.endereco-texto {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.endereco-texto h2, .endereco-texto h3, .endereco-texto span, .endereco-texto p {
    color: #f6b670;
}

.endereco-texto h2 {
    text-transform: uppercase;
}


.endereco-texto p span {
    color: white;
}

/* >>>>>>>>>>>>> FIM ENDEREÇO <<<<<<<<<<<<<<<< */

/* ########################################################## */

/* >>>>>>>>>>>>> RODAPÉ <<<<<<<<<<<<<<<< */

.rodape {
    background-color: #1e1e1e;
    padding: 100px;
    text-align: center;
    color: #f6b670;
    display: flex;
    flex-direction: column;
    gap: 6px;
}


.rodape p span, .rodape p span a {
    color: #f6b670;
    font-weight: bold;
}


.rodape p span a:hover {
    border-bottom: 1px solid #f6b670;
}

/* >>>>>>>>>>>>> FIM RODAPÉ <<<<<<<<<<<<<<<< */




/* >>>>>>>>>>>>> PÁGINA ÁREA DE ATUAÇÃO <<<<<<<<<<<<<<<< */
/* ####################################################### 
   ####################################################### 
                PÁGINA DA ÁREA DE ATUAÇÃO
   ####################################################### 
   ####################################################### 
*/

.area-atuacao {
    background-image: url(../_img/_principal/principal-3\ -\ Copia.jpg);
    position: relative;
    background-size: cover;
    height: 300px;
}

.area-atuacao::before, .advogados::before, .videos::before, .fotos::before, .contatos::before {
    content: ''; 
    position: absolute;
    /* top: 0;  */
    /* left: 0; */
    width: 100%; 
    height: 100%; 
    background-color: rgba(0, 0, 0, 0.3); 
}

.area-atuacao h1, .advogados h1, .videos-icone h1, .fotos-icone h1, .contatos-icone h1 {
    text-align: center;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 300px;
    font-size: 42px;
    letter-spacing: 15px;
}

.advocacia-criminal {
    background: url(../_img/_principal/foto-quem-sou-background.jpg) no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: 70%;
    height: auto;
    color: #ccc;
    padding: 40px;
}

.advocacia-criminal h1 {
    text-align: center;
    text-transform: uppercase;
    padding-bottom: 30px;
}

.especialidades-texto {
    display: flex;
    justify-content: space-around ;
    align-items: center;
}

.especialidades-esquerda, .especialidades-direita {
    line-height: 25px;
}


.parecer-juridico {
    padding: 40px;
    background: linear-gradient(0deg, rgba(54,39,39,1) 0%, rgb(250, 250, 250) 0%, rgba(255,255,255,1) 0%, rgb(191, 184, 176) 100%);
}

.parecer-juridico h1 {
    text-align: center;
    text-transform: uppercase;
}

.parecer-juridico-geral {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding-top: 40px;
}

.parecer-juridico-texto {
    width: 40%;
    position: relative;
    top: -20px;
}

.parecer-juridico-texto p {
    color: #626262;
    line-height: 22px;
    text-align: start;
}



.parecer-juridico-foto img {
    width: 300px;
    height: 250px;
}




/* >>>>>>>>>>>>> FIM PÁGINA ÁREA DE ATUAÇÃO <<<<<<<<<<<<<<<< */
/* ####################################################### 
   ####################################################### 
                FIM PÁGINA DA ÁREA DE ATUAÇÃO
   ####################################################### 
   ####################################################### 
*/





/* >>>>>>>>>>>>> PÁGINA ADVOGADOS <<<<<<<<<<<<<<<< */
/* ####################################################### 
   ####################################################### 
                PÁGINA ADGOGADOS
   ####################################################### 
   ####################################################### 
*/



/* .advogados-icone {
    text-align: center;
} */


.advogado-informacao { 
    background: url(../_img/_principal/principal-1.png) fixed 60%;
    background-size: cover;
    padding: 60px;
}


.advogado-informacao h1 {
    text-align: center;
    text-transform: uppercase;
    color: var(--cor-3);
    position: relative;
}


.advogado-informacao-conteudo {
    display: flex;
    justify-content: space-around;
    padding: 50px;
}


.advogados {
    background-image: url(../_img/_principal/principal-4.jpg);
    position: relative;
    background-size: cover;
    background-position: 120px;
    height: 300px;
}


.advogado-fotos img {
    width: 350px;
}


.advogado-texto {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 12px;
    color: var(--cor-3);
}


.advogado-texto h3 {
    text-transform: uppercase;
}

.advogado-texto span {
    color: var(--cor-2);
    font-style: italic;
}

.advogado-texto .linha {
    background-color: red;
    height: 1px;
    width: 200px;
}

.advogado-texto p {
    color: var(--cor-4);
    font-size: 14px;
    line-height: 22px;
}

.advogado-texto ul li {
    color: #ccc;
    font-size: 14px;
    line-height: 22px;
    text-align: left;
    letter-spacing: normal;
}



/* >>>>>>>>>>>>> FIM PÁGINA ADVOGADOS <<<<<<<<<<<<<<<< */
/* ####################################################### 
   ####################################################### 
                FIM PÁGINA ADGOGADOS
   ####################################################### 
   ####################################################### 
*/



/* >>>>>>>>>>>>> PÁGINA VÍDEOS <<<<<<<<<<<<<<<< */
/* ####################################################### 
   ####################################################### 
                PÁGINA VÍDEOS
   ####################################################### 
   ####################################################### 
*/


.videos-informacao {
    background-color: var(--cor-4);
}


.videos-informacao h1 {
    text-align: center;
    text-transform: uppercase;
    padding-bottom: 30px;
}


.video-geral {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.videos-info {
    /* display: flex; */
    /* flex-direction: column; */
    /* padding: 30px; */
    text-align: center;
    margin: 0 auto;
}

.videos-info video {
    width: 400px;
}



/* >>>>>>>>>>>>> FIM PÁGINA VÍDEOS <<<<<<<<<<<<<<<< */
/* ####################################################### 
   ####################################################### 
                FIM PÁGINA VÍDEOS
   ####################################################### 
   ####################################################### 
*/




/* >>>>>>>>>>>>> PÁGINA FOTOS <<<<<<<<<<<<<<<< */
/* ####################################################### 
   ####################################################### 
                PÁGINA FOTOS
   ####################################################### 
   ####################################################### 
*/


.fotos-informacao {
    height: auto;
    background: #443e3e;
    padding: 40px 0;
}


.fotos-informacao h1 {
    text-align: center;
    text-transform: uppercase;
    margin-top: 40px;
    color: var(--cor-3);
}


.fotos-informacao-box {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 30px;
}



.fotos-informacao figure {
    text-align: center;
}


.fotos-informacao figure img {
    padding: 10px;
    width: 300px;
    transition: .2s;
    border: 1px solid var(--cor-4);
}

.fotos-informacao figure img:hover {
    border: 1px solid var(--cor-2);
}



/* FOTO AO ZOOM  */
/* Estilos existentes */

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px); 
    z-index: 9999;
    text-align: center;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    margin-top: 160px;
}

.close-button {
    position: absolute;
    top: 15px;
    right: 15px;
    color: white;
    font-size: 30px;
    cursor: pointer;
    z-index: 99999;
}

.prev-button, .next-button {
    position: absolute;
    top: 50%;
    color: white;
    font-size: 30px;
    cursor: pointer;
    z-index: 99999;
}

.prev-button {
    left: 15px;
}

.next-button {
    right: 15px;
}






/* FIM FOTO AO ZOOM  */






/* >>>>>>>>>>>>> FIM PÁGINA CONTATOS <<<<<<<<<<<<<<<< */
/* ####################################################### 
   ####################################################### 
                FIM ÇPÁGINA CONTATOS
   ####################################################### 
   ####################################################### 
*/


.contatos-informacao {
    padding: 30px;
    background-color: #cccccc3d;
}



.contatos-informacao h1 {
    text-align: center;
    text-transform: uppercase;
    padding-bottom: 20px;
}

.contatos-informacao h2 {
    text-align: center;
    text-transform: uppercase;
    font-size: 20px;
}


.contatos-informacao p {
    padding-top: 8px;
    text-align: center;
}

.contatos-formulario {
    padding: 40px;
    display: flex;
    justify-content: space-evenly;
}


.contatos-formulario form label {
    color: #6f6f6f;
}

.contatos-formulario form input {
    border: 1px solid #cccccc83;
    height: 30px;
    margin-bottom: 20px;
    width: 100%;
}


.contatos-formulario form input:hover, .contatos-formulario form textarea:hover {
    border: 1px solid black;
}


.contatos-formulario form input:focus, .contatos-formulario form textarea:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}


.contatos-formulario form textarea {
    border: 1px solid #cccccc83;
}


.btn {
    background-color: #D29054;
    color: white;
    margin-top: 10px;
    cursor: pointer;
}


.btn:hover {
    background-color: #ccc8c5;
    color: black;
}


.endereco-mapa h3, .endereco-mapa p {
    font-size: 16px;
    text-transform: capitalize;
    text-align: start;
}


.endereco-mapa map iframe{
    width: 500px;
    height: 380px;
    border: 1px solid #cccccc83;
    padding: 10px;
}


.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    animation: animar 0.3s infinite alternate;
}

.whatsapp a {
    color: var(--cor-2);
}

.whatsapp i {
    font-size: 40px;
}




@keyframes animar {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(5px); /* Defina a quantidade de tremor */
    }
}

/* >>>>>>>>>>>>> FIM PÁGINA CONTATOS <<<<<<<<<<<<<<<< */
/* ####################################################### 
   ####################################################### 
                FIM ÇPÁGINA CONTATOS
   ####################################################### 
   ####################################################### 
*/


