@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;700;800&display=swap");

@font-face {
  font-family: 'NunitoBold';
  src: url('fonts/Nunito-Bold.ttf');
}

@font-face {
  font-family: 'NunitoSemi';
  src: url('fonts/Nunito-SemiBold.ttf');
}

@font-face {
  font-family: 'NunitoRegular';
  src: url('fonts/Nunito-Regular.ttf');
}


/*RESET*/
*, *:before, *:after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  font-size: 16px;
  scroll-behavior: smooth;
}

html, body, div, span, object, iframe, figure, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, code, em, img, small, strike, strong, sub, sup, tt, b, u, i, ol, ul, li, fieldset, form, label, table, caption, tbody, tfoot, thead, tr, th, td, main, canvas, embed, footer, header, nav, section, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-size-adjust: none;
}

footer, header, nav, section, main {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input {
  -webkit-appearance: none;
  border-radius: 0;
}

body {
  background-size: 100%;
  line-height: 1.3;
  cursor: default;
}

a {
  transition: 0.3s all;
  text-decoration: none;
}

/*
  ========================================
  Typography
  ========================================
*/
b, strong {
  font-weight: bold;
}

em,
i {
  font-style: italic;
}

/*
  ========================================
  Img
  ========================================
*/
img,
picture,
video,
embed,
object {
  max-width: 100%;
}

img {
  display: inline-block;
  vertical-align: middle;
}

/**/
body {
  background: #ffffff;
  font-family: "Arial", sans-serif;
  color: #ffffff;
  font-weight: 500;
}

p {
  line-height: 1.6;
  font-weight: 500;
  font-family: "NunitoRegular";
  font-size: 16px;
  color: #303030;
}

/*CONTAINER*/
.container {
  margin: 0 auto;
  max-width: 1220px;
  padding-left: 25px;
  padding-right: 25px;
}

@media (max-width: 56.25rem) {
  p {
    line-height: 1.6;
  }
}

body::-webkit-scrollbar {
  width: 10px;               /* width of the entire scrollbar */
}

body::-webkit-scrollbar-track {
  background: #4e4e4e;        /* color of the tracking area */
}

body::-webkit-scrollbar-thumb {
  background-color: #1f1f1f;    /* color of the scroll thumb */
  border-radius: 20px;       /* roundness of the scroll thumb */
}

/*
  ========================================
  GERAL
  ========================================
*/

header {
  position:absolute;
  top:0;
  left:0;
  width: 100%;
  z-index: 10;
  overflow: hidden;
}

header .logo img {
  transition:0.3s all;
  height: 110px;
}

header .logo:hover img {
  transform:scale(1.05);
}

header .container {
  display:flex;
  justify-content:space-between;
  padding:50px 20px;
}

header .content {
  display:flex;
  justify-content:space-between;
  gap: 30px;
}

header .content .menu ul {
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-top: 10px;
}

header .content .menu ul li {
  position:relative;
}

header .content .menu ul li a {
  display:block;
  color:#ffffff;
  padding: 8px 22px;
  font-size: 16px;
  font-weight: 400;
}

header .content .menu ul li a::after {
  content:'';
  background: transparent;
  display: block;
  height: 4px;
  width:100%;
  position: relative;
  top: 10px;
  transition:0.3s all;
  border-radius: 4px;
}

header .content .menu ul li a:hover::after {
  background:#f9540c;
}

header .consultation a {
  height:60px;
  width:200px;
  border:2px solid #ffffff;
  display:flex;
  justify-content:center;
  align-items:center;
  color:#ffffff;
  font-size: 16px;
}

header .consultation a:hover {
  background:rgb(255 255 255 / 33%);
}

.mobile_menu {
  background: #112759;
  position:fixed;
  top:0;
  left:0;
  height: 100vh;
  width: 100%;
  padding: 15px;
  opacity:0;
  visibility:hidden;
  transition:0.3s all;
}

.mobile_menu .topo {
  height: 30vw;
  min-height: 110px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.mobile_menu .display {
  height: 70vh;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px 0;
  margin-top: 15px;
}

.mobile_menu.ativo {
  opacity:1;
  visibility:visible;
}

.mobile_menu .button_close span {
  height: 38px;
  width: 38px;
  background: #f9530d url(../images/menu-close.png) center no-repeat;
  transition: 0.3s all;
  border-radius: 5px;
  display: block;
}

@media (max-height: 450px) {
  .mobile_menu {
    overflow-y: scroll;
  }

}

@media (max-width: 1200px) {
  header .content .menu ul li a {
    padding:8px 16px;
  }
}

/* LAPTOP - 1024px*/
@media (max-width: 64rem) {  
  header .container .content {
    position: relative;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px 0;
  }

  header .container .content .consultation {
    display:none;
  }
  
  header .container .content .buttonType1 a {
    font-size: 1rem;
  }
  header .container .content .menu {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin: 0;
  }

  header .container .content .menu li {
    width:100%;
  }

  .mobile_menu .button_close {
    display:flex;
    align-items: center;
    position: relative;
    top: 10px;
    right: 10px;
  }
  
  header .container .content .button {
    height: 38px;
    width: 38px;
    background: #f9530d url(../images/menu_icon.png) center no-repeat;
    transition: 0.3s all;
    border-radius: 5px;
  }
  header .container .content nav {
    position: absolute;
    right: 0;
    top: 38px;
    width: 200px;
    background: #ededed;
    display: flex;
    flex-wrap: wrap;
    opacity: 0;
    z-index: -1;
    visibility: collapse;
    transition: 0.2s all;
    border-radius: 6px;
    box-shadow: -2px 1px 9px -4px #000000;
    border-radius: 5px 5px 5px 5px;
  }

  .mobile_menu nav {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .mobile_menu ul {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .mobile_menu nav ul li a {
    font-weight: 400;
    font-size: 16px;
    color: #ffffff;
    padding: 6px 15px;
    line-height: 1.2;
    border-radius: 4px;
  }

  header .consultation a {
    font-size: 16px;
    height: 45px;
    width: 180px;
  }
  
  header .container .content .menu.ativo nav {
    opacity: 1;
    visibility: visible;
    z-index: inherit;
  }
  header .container .content .menu.ativo .button {
    background: #c43f06 url(../images/menu-close.png) center no-repeat;
  }
  header.fixed .container {
    height: 120px;
  }
  header.fixed .container .buttonType1 a {
    font-size: 1rem;
  }
}

@media (max-width: 400px) {
  header .logo img {
    width: 150px;
  }
}

/*BANNERS*/

.banners {
  height:800px;
  position:relative;
  background-size: cover!important;
}

.banners.index {
  background: #b9b9b9 url(../images/banner_index.jpeg) center no-repeat;
}

.banners.area_atuacao {
  background: #b9b9b9 url(../images/banner_atuacao.jpeg) center no-repeat;
}

.banners.contato {
  /* background: #b9b9b9 url(../images/banner_contato.jpeg) center no-repeat; */
}

.banners.advogados {
  background: #b9b9b9 url(../images/banner_advogados.jpeg) center no-repeat;
}

.banners.internas .infos h1 {
  color: #ffffff;
  font-size: 60px;
}

.banners.internas .infos p {
  color:#ffffff;
}

.banners.internas .infos p a {
  color: #bebebe;
}

.banners.index::before {
  content:'';
  position:absolute;
  height: 100%;
  width: 100%;
  background: rgb(22 29 45 / 66%);
}

.banners .container {
  display:flex;
  align-items:center;
  height:100%;
  position: relative;
}

.banners.index .txt {
  margin-top: 35px;
}

.banners.index .txt span {
  font-size: 42px;
  letter-spacing: 1px;
  line-height: 1.2;
  display: block;
  width: 450px;
}

.banners.index .img {
  position:absolute;
  bottom:0;
  right: -110px;
  z-index:2;
}

.banners.index .bar_infos {
  width:100%;
  height:75px;
  position:absolute;
  bottom: 0;
  left:0;
  background: #161d2d;
  display:flex;
  align-items:center;
  gap: 25px;
  padding: 0 28px;
}

.banners.index .bar_infos a {
  font-size: 19px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 7px;
}

.banners.index .bar_infos a:hover {
  color:#f9530d;
}

.banners.index .bar_infos svg {
  width:25px;
  fill:#f9530d;
}

@media (max-width:1400px) {
  .banners.index .img {
    right:0;
    width:400px;
  }
}

@media (max-width:1200px) {
  .banners.index .img {
    right:0;
    width: 390px;
  }
  
  .banners {
    height:700px;
  }
}

@media (max-width:1024px) {
  .banners {
    height:500px;
  }
  
  .banners.index .img {
    display:none;
  }

  header .container {
    padding:20px;
  }

  .banners .container {
    align-items:flex-end;
    justify-content: center;
    padding-bottom: 120px;
  }
  
  .banners.index .txt {
    margin-top: 35px;
    text-align: center;
  }
  
  .banners.index .txt span {
    font-size: 35px;
  }
  
  .banners.index .bar_infos {
    justify-content:center;
    height:auto;
    gap: 5px 25px;
    padding: 20px 0;
    flex-wrap: wrap;
  }

  .banners.index .bar_infos a {
    font-size:16px;
  }
}

@media (max-width: 600px) {
  .banners.index .txt span {
    font-size: 26px;
    width: 100%;
  }
  
  .banners.index .txt span br{
    display:none;
  }

  .banners.internas {
    height: 280px;
    background-position: center;
  }

  .banners.internas .container {
    padding-bottom: 60px;
  }

  
  .banners.internas .infos h1 {
    color: #ffffff;
    font-size: 42px;
    line-height: 1;
    margin-bottom: 10px;
  }
}



/*Buttons*/

.button_type1 {
  display: inline-block;
  background:#f9530d;
  text-align: center;
  color: #ffffff;
  margin-top: 25px;
  transition:0.3s all;
}

.button_type1:hover {
  background:#cb4006;
}

.button_type1.--size1 {
  min-width: 220px;
  padding: 20px;
  font-size: 18px;
}

.button_type1.--size2 {
  min-width: 170px;
  font-size: 16px;
  padding: 15px;
}

@media (max-width: 900px) {
  .button_type1.--size1 {
    min-width: 180px;
    padding: 15px;
    font-size: 16px;
  }
  
  .button_type1.--size2 {
    min-width: 140px;
    font-size: 15px;
    padding: 12px;
  }
}


/*textS*/

.text_type1 {
  font-family: 'NUNITOSEMI';
  font-size: 18px;
  font-weight: normal;
  color: #f9530d;
  margin-bottom: 15px;
}

.text_type2 {
  font-family: "Arial";
  font-size: 47px;
  color: #303030;
  line-height: 1.2;
  margin-bottom: 15px;
}

@media (max-width: 1200px) {
  .text_type2 {
    font-size: 37px;
  }
}

@media (max-width: 900px) {
  .text_type2 {
    font-size: 32px;
  }
}


/*contentTitleMain*/

.contentTitleMain {
  padding: 80px 0;
  background: #fcfcfc;
}

.contentTitleMain .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
} 

.contentTitleMain .container div {
  width: 660px;
}

.contentTitleMain .container div h3 {
  margin-bottom:0;
}

.contentTitleMain .container p {
  width: 600px;
}

@media (max-width: 1024px) {
  .contentTitleMain {
    padding: 40px 0;
  }
}

@media (max-width: 900px) {
  .contentTitleMain {
    padding:20px 0;
  }
  
  .contentTitleMain .container {
    gap: 5px;
    flex-wrap:wrap;
  }

  .contentTitleMain .info div,
  .contentTitleMain .container p {
    font-size: 15px;
    width:100%;
    text-align:justify;
  }

  .contentTitleMain .info div {
    text-align:center;
    margin-bottom:10px;
  }

  .contentTitleMain .container > div {
    width: 100%!important;
    text-align:center;
  }
}


/*
  ========================================
  INDEX
  ========================================
*/

.callEscritorio {
  padding:90px 0 60px 0;
}

.callEscritorio .container {
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap: 25px;
}

.callEscritorio .txt {
  width: 450px;
}

.callEscritorio .txt a {
  margin-top:40px;
}

.callEscritorio .info {
  width: 624px;
  display:flex;
  justify-content: space-between;
  gap: 25px;
}

.callEscritorio .info .numbers {
  display:flex;
  flex-wrap:wrap;
  align-items: center;
  width: 219px;
}


.callEscritorio .info .numbers div {
  width: 100%;
}

.callEscritorio .info .numbers div span {
  font-size: 45px;
  color: #f9530d;
}

.callEscritorio .info .numbers div p {
  font-family: "NunitoSemi";
  font-size: 24px;
  color: #303030;
}

@media (max-width: 1200px) {
  .callEscritorio .info .numbers div span {
    font-size: 40px;
    color: #f9530d;
  }
  
  .callEscritorio .info .numbers div p {
    font-family: "NunitoSemi";
    font-size: 20px;
  }
}

@media (max-width: 1024px) {
  .callEscritorio {
    padding:40px 0;
  }

  .callEscritorio .container {
    flex-wrap:wrap;
  }

  .callEscritorio .txt {
    width:100%;
    text-align: center;
  }

  .callEscritorio .txt p {
    text-align:justify;
  }
  
  .callEscritorio .info .img {
    display:none;
  }

  .callEscritorio .info {
    width:100%;
  }

  .callEscritorio .info .numbers {
    width: 100%;
    justify-content: space-evenly;
    gap: 20px;
    text-align: center;
  }

  .callEscritorio .info .numbers div {
    width:auto;
  }
}

/*phraseMain*/

.phraseMain {
  background-color:#000101;
  display: flex;
  background-size: cover;
  background-position: center;
}

.phraseMain .container {
  height:100%;
  min-height: 480px;
  display:flex;
  align-items:center;
  justify-content: center;
}

.phraseMain .container .info p {
  font-size: 48px;
  font-family: "NunitoRegular";
  color: #ffffff;
  line-height: 1.2;
}

.phraseMain .container .info p span{
  color:#F9530D;
}

.phraseMain .container .info h2 {
  text-align:center;
  margin-top:25px;
  color:#F9530D;
  font-family: "NunitoRegular";
  font-size: 23px;
}

@media (max-width: 1200px) {
  .phraseMain .container .info p {
    font-size: 40px;
  }
}

@media (max-width: 1024px) {
  .phraseMain .container {
    min-height: auto;
    padding: 30px;
    text-align:center;
  }
  
  .phraseMain .container .info p {
    font-size: 35px;
  }
}

@media (max-width: 600px) {  
  .phraseMain .container .info p {
    font-size: 24px;
  }

  .phraseMain .container .info h2 {
    font-size:20px;
  }
}

/*listProfessional*/

.listProfessional {
  padding: 60px 0 20px 0;
}

.listProfessional .list {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px 15px;
}

.listProfessional .list .item {
  width: 380px;
  text-align: center;
}

.listProfessional .list h4 {
  color: #f9530d;
  font-size: 25px;
  height: 65px;
  margin: 15px 0 20px 0;
  font-family: 'NunitoSemi';
  display: flex;
  justify-content: center;
  padding: 0 15px;
}

.listProfessional .list h5 {
  font-size: 16px;
  color: #626262;
  font-family: 'NunitoSemi';
}

@media (max-width: 1220px) {
  .listProfessional .list .item {
    width: 310px;
  }
}

@media (max-width: 1024px) {
  .listProfessional {
    padding: 40px 0;
  }

  .listProfessional .info {
    flex-wrap:wrap;
    text-align:center;
  }

  .listProfessional .info p,
  .listProfessional .info div {
    width:100%;
  }

  .listProfessional .info p {
    text-align:justify;
  }

  .listProfessional .list {
    padding:0;
    gap: 25px 4%;
  }
  
  .listProfessional .list .item {
    width: 30%;
  }

  .listProfessional .list h4 {
    font-size: 21px;
    height:55px;
    display:flex;
    margin: 10px 0 10px 0;
    justify-content: center;
    align-items: center;
  }
}

@media (max-width: 900px) {
   .listProfessional .list h4 {
    font-size: 18px;
    height:45px;
  }
}

@media (max-width: 600px) {
  .listProfessional .list .item {
    width: 48%;
  }
}


/*form_avaliation*/

.form_avaliation {
  padding: 140px 0 60px 0;
}

.form_avaliation .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 25px;
}

.form_avaliation .text {
  width: 510px;
}

.form_avaliation .text h2 {margin-bottom: 15px;}

.form_avaliation .text h3 {
  margin-bottom: 45px;
}

.form_avaliation .text .infos {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 25px;
  text-align: left;
}

.form_avaliation .text .infos a {
  font-size: 20px;
  color: #f9530d;
  display: flex;
  align-items: center;
  gap: 15px;
}


.form_avaliation .text .infos svg {
  fill:#112758;
  width: 28px;
}

.form_avaliation .text iframe {
  height:300px;
  width:100%;
  margin-top:40px;
}

.form_avaliation .form {
  width: 540px;
  margin-top: 50px;
  clear: both;
}

.form_avaliation .form .wpforms-container .wpforms-field.input_contato {
  padding: 0;
  margin: 0 0 20px 0;
}

.form_avaliation .form .wpforms-container select {
  background: #f8f8f8 url(../images/seta_drop.png) right 20px center no-repeat!important;
  color: #9c9c9c!important;
  font-weight: 400;
  font-family: 'NunitoRegular'!important;
  cursor: pointer;
  -webkit-appearance: none !important;
  -moz-appearance:     none !important;
  position:relative;
}


.form_avaliation .form .wpforms-container select,
.form_avaliation .form .wpforms-container textarea,
.form_avaliation .form .wpforms-container .wpforms-field.input_contato input {
  background:#f8f8f8;
  border:1px solid #f8f8f8;
  padding: 28px 25px;
  height: auto;
  color:#112759;
  font-family: 'NunitoSemi';
  font-size: 18px;
}

.form_avaliation .form .wpforms-container .wpforms-field.input_contato ::-webkit-input-placeholder {
    color: #303030;
}

.form_avaliation .form .wpforms-container select:focus,
.form_avaliation .form .wpforms-container .wpforms-field.input_contato textarea:focus,
.form_avaliation .form .wpforms-container .wpforms-field.input_contato input:focus {
  border:1px solid #f9530d;
  box-shadow: none;
}

.form_avaliation div.wpforms-container-full {
  margin:0;
}

.form_avaliation .wpforms-submit-container,
.form_avaliation .wpforms-is-recaptcha {
  clear: inherit;
  float: left;
  display: flex;
  margin: 0!important;
}


.form_avaliation .wpforms-submit-container {
  justify-content:flex-end;
  position: relative;
  top: 6px;
  right: -15px;
  width: 38%;
  align-items: center;
  justify-content: center;
}

.form_avaliation .wpforms-submit-spinner {
  position: absolute;
  margin: 0;
}

.form_avaliation .wpforms-submit-container button {
  display: inline-block;
  background: #f9530d!important;
  text-align: center;
  color: #ffffff;
  margin-top: 25px;
  transition:0.3s all;
  min-width: 150px;
  padding: 20px!important;
  font-size: 18px!important;
  height: auto!important;
  margin: 0!important;
}

.form_avaliation .wpforms-submit-container button:hover {
  background:#dd4a0b!important;
}

.rc-anchor-normal .rc-anchor-pt {
  left:0!important;
}

@media (max-width: 1024px) {
  .form_avaliation {
    padding: 40px 0;
  }

  .form_avaliation .text {
    text-align:center;
  }

  .form_avaliation .text p {
    text-align
  }
}

@media (max-width: 900px) {

  .form_avaliation .container {
    flex-wrap:wrap;
  }
  
  .form_avaliation .text,
  .form_avaliation .form {
    width:100%;
  }

  .form_avaliation .text h3 {
    margin-bottom:15px;
  }

  .form_avaliation .form {
    margin-top:15px;
  }
  
  .form_avaliation .text .infos a {
    font-size:18px;
    word-break: break-all;
  }
}

@media (max-width: 600px) {
  .form_avaliation .wpforms-submit-container,
  .form_avaliation .wpforms-is-recaptcha {
    width:100%!important;
    justify-content:center;
    top: inherit;
    right: inherit;
    padding: 5px 0;
  }

  .form_avaliation .form .wpforms-container select,
  .form_avaliation .form .wpforms-container textarea,
  .form_avaliation .form .wpforms-container .wpforms-field.input_contato input {
    padding: 20px 15px;
    font-size: 16px;
  }

  .form_avaliation .form .wpforms-container select {
    background: #f8f8f8 url(../images/seta_drop.png) right 10px center no-repeat!important;
  }
}

/*
  ========================================
  FOOTER
  ========================================
*/

footer {
  background:#112759;
  padding: 30px 0 0 0;
}

footer p {
  font-size: 15px;
  color: #ffffff;
  line-height: 1.6;
}

footer ul li a {
  font-size: 16px;
  color: #ffffff;
  display: block;
  padding: 6px 0;
}

footer ul li a:hover {
  color:#f9530d;
}

footer .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  padding-bottom: 30px;
}

footer .logo {
  width: 100%;
  margin-bottom: 22px;
}

footer .logo img {
  height:90px;
}

footer .item1 {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 400px;
}

footer .item1 .social {
  display:flex;
  gap: 20px;
}

footer .item2 {
  display: flex;
  gap: 35px;
}

footer .item3 {
  width: 300px;
}

footer .item3 .infos {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

footer .item3 .infos a {
  font-size: 16px;
  color: #f9530d;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 10px;
}

footer .item3 .infos a:hover {
  text-decoration:underline;
}

footer .item3 .infos svg {
  fill:#ffffff;
  width: 25px;
}

footer .item3 .infos .ico3 svg {
  width:45px;
}

.last_content {
  background:#161d2d;
  padding: 30px 25px 18px 25px;
  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap: wrap;
  text-align: center;
  gap: 15px 25px;
}

.last_content * {
  font-size: 14px;
  color:#ffffff;
}

.last_content a:hover {
  color:#f9530d;
}

@media (max-width: 1100px) {
  footer .item1 {
    width: 350px;
  }
}

@media (max-width: 1024px) {
  footer .container {
    gap:30px 0;
  }

  footer .item1,
  footer .logo {
    width:100%;
    text-align:center;
    gap: 15px;
  }

  footer .item2,
  footer .item3 {
    width:50%;
  }

  footer .item3 .infos {
    width: 310px;
    margin: 0 auto;
  }
  
  footer .logo {
    margin-bottom:0;
  }
  
  footer .item1 p {
    text-align:justify;
  }

  footer .item1 .social {
    margin:0 auto;
  }
  
  footer .item2 {
    justify-content:center;
  }
}

@media (max-width: 700px) {
  footer .item2 {
    display:none;
  }

  footer .item3 {
    width:100%;
  }

  footer .item3 .infos a {
    word-break:break-word;
  }
}

@media (max-width: 450px) {
  footer .item3 .infos {
    width:100%;
  }
}

/*
  ========================================
  AREA ATUACAO
  ========================================
*/

.listAtuacao {
  background:#112758;
}

.listAtuacao .container {
  padding: 0;
}

.listAtuacao .item {
  display:flex;
  flex-wrap:wrap;
  justify-content: center;
}

.listAtuacao .item:nth-child(2n) .txt {
  order:-1;
}

.listAtuacao .item:nth-child(2n) .img {
  justify-content: start;
}

.listAtuacao .item .img {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: #112758;
}

.listAtuacao .item .txt {
  width: 50%;
  background: #112758;
  padding: 20px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
}

.listAtuacao .item .txt h2 {
  color: #ffffff;
  font-size:45px;
}

.listAtuacao .item .txt p {
  color:#ffffff;
}

@media (max-width:1024px) {
  .listAtuacao .item .txt h2 {
    font-size: 35px;
  }

  .listAtuacao .item .txt {
    padding: 10px 30px;
    gap: 15px;
  }

  .listAtuacao .item .txt p {
    line-height:1.4;
  }
}


@media (max-width:900px) {

  .listAtuacao .item {
      padding: 35px 0;
  padding-top: 0;
  }
  
  .listAtuacao .item .txt,
  .listAtuacao .item .img {
    width:100%;
    background:none;
  }

  .listAtuacao .item .img {
    order:-1;
    justify-content: center!important;
  }

  .listAtuacao .item:nth-child(2n) {
    background:#ffffff;
  }

  .listAtuacao .item:nth-child(2n) * {
    color:#112758!important;
    padding-bottom: 0;
  }

  .listAtuacao .item .txt h2 {
    font-size:28px;
    margin-top: 8px;
  }
}

/*
  ========================================
  ESCRITORIO
  ========================================
*/

.contentEscritorio {
  padding:90px 0 60px 0;
}

.contentEscritorio .container {
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap: 25px;
}

.contentEscritorio .txt {
  width:62%;
}

.contentEscritorio .img {
  width:45%;
  text-align: center;
}

.destaqEscritorio {
  background: #fcfcfc;
  padding: 40px 0;
}

.destaqEscritorio p:last-child {
  margin:0;
}

@media (max-width: 900px) {
  .contentEscritorio {
    padding:40px 0;
  }
  
  .contentEscritorio .container {
    flex-wrap:wrap;
  }
  
  .contentEscritorio .txt {
    width:100%;
  }
  
  .contentEscritorio .img {
    width:100%;
  }

}

/*
  ========================================
  LISTA SERVICOS
  ========================================
*/
.listServicos {
  background:#112758;
}

.listServicos .container {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.listServicos .item .display {
  display:flex;
  flex-wrap:wrap;
  max-width: 1170px;
  margin: 0 auto;
  justify-content: space-between;
}

.listServicos .item .img {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #112758;
}

.listServicos .item .txt {
  width: 50%;
  background: #112758;
  padding: 20px 30px 20px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.listServicos .item .txt a {
  display: block;
  width: 150px;
}

.listServicos .item .txt * {
  color: #fbfbfb;
  font-weight: 400;
}

.listServicos .item .txt p b {
  font-weight:600;
}

.listServicos .item .txt h2 {
  font-size: 43px;
  color: #fbfbfb;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 10px;
}

.listServicos .item .txt h3 {
  font-size: 24px;
  color: #f9530d;
  margin-bottom: 10px;
}

.listServicos .item .txt .icos {
  display:flex;
  gap: 10px 50px;
  margin: 15px 0 25px 0;
}

.listServicos .item .txt .icos span b,
.listServicos .item .txt .icos a {
  font-weight:600;
}


.listServicos .item:nth-child(2n) .txt {
  order:-1;
  padding-left: 80px;
  padding-right: 70px;
}



@media (max-width: 1440px) {
  .listServicos .item:nth-child(2n) .txt {
    padding: 20px 50px;
  }
}

@media (max-width: 1200px) {
  .listServicos .item .img {
    overflow: hidden;
  }
  
  .listServicos .item .txt h2 {
    font-size:35px;
  }
  
  .listServicos .item .txt h3 {
    font-size: 20px;
  }
}

@media (max-width: 1024px) {
  .listServicos .item .img {
    width: 45%;
  }
  
  .listServicos .item .txt {
    width: 55%;
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  .listServicos .item .display {
    margin-bottom:40px;
  }
  
  .listServicos .item .img {
    width: 100%;
    padding-bottom: 0;
  }

  .listServicos .item .img img {
    width:350px;
  }
  
  .listServicos .item .txt {
    width: 100%;
    padding: 25px 20px!important;
    text-align: center;
  }

  .listServicos .item .txt a {
    display:inline-block;
    margin: 0 auto;
    margin-top: 15px;
  }

  .listServicos .item:nth-child(2n) .txt {
    order:0;
  }

  .listServicos .item .txt h2 {
    font-size:30px;
    text-align:center;
  }
  
  .listServicos .item .txt h3 {
    font-size: 18px;
    text-align:center;
  }

  .listServicos .item .info {
    text-align:center;
  }

  .listServicos .item .txt .icos {
    justify-content:center;
    flex-wrap: wrap;
  }
}


/*
  ========================================
  CONTATO
  ========================================
*/

.infoContato {
  padding:80px 0 100px 0;
  background: #fcfcfc;
}

.infoContato .container {
  display:flex;
  justify-content:space-between;
  padding:0;
}

.infoContato .item {
  width: 24%;
  height: 250px;
  text-align: center;
  padding: 0 23px;
  position:relative;
  transition:0.3s all;
}

.infoContato .item:hover {
  background:#122758;
}

.infoContato .item:hover * {
  color:#ffffff;
}

.infoContato .item:nth-child(1) {
  width: 320px;
}

.infoContato .item * {
  position:relative;
  z-index:2;
}

.infoContato .item::before {
  content:'';
  position:absolute;
  background:#fcfcfc;
  height: 40px;
  width: 100%;
  left: 0;
}

.infoContato .item .ico {
  background: #f9530d;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  border-radius: 50%;
  margin-bottom: 30px;
}

.infoContato .item span {
  font-size: 30px;
  margin-bottom: 10px;
  display: block;
}

.infoContato * {
  font-family: "Arial";
  font-size: 16px;
  color: #303030;
}

@media (max-width: 1200px) {
  .infoContato .item {
    padding: 0 15px;
  }

  .infoContato .item span {
    font-size: 23px;
  }

  .infoContato .item p br {
    display:none;
  }
}

@media (max-width: 1024px) {
  .infoContato {
    padding:40px 0;
  }
}

@media (max-width: 950px) {
  .infoContato .container {
    flex-wrap:wrap;
    justify-content:center;
    gap:20px;
  }
  
  .infoContato .container .item {
     width:330px;
     height: 220px;
  }

  .infoContato .container .item a {
    word-break:break-word;
  }
}

@media (max-width: 700px) {
  .infoContato .container {
    gap:25px 2%;
  }
  
  .infoContato .container .item {
     width: 48%;
     height: auto;
     padding: 0 5px;
  }

  .infoContato .item:nth-child(2) {
    padding-bottom:20px;
  }
}


/*
  ========================================
  NOTICIAS
  ========================================
*/

.listNoticias {
  padding:40px 0;
  background: #ffffff;
}

.listNoticias .item {
  display:flex;
  justify-content:space-between;
  align-items: center;
  background:#f8f8f8;
  padding:25px 45px;
  margin-bottom: 30px;
  gap: 20px;
}

.listNoticias .item h3 {
  font-family: "Arial";
  font-size: 13px;
  color: #f9530d;
  margin-bottom: 3px;
}

.listNoticias .item a {
  margin:0;
}

.listNoticias #btnMostrarMais {
  background:#f9530d;
  border: 1px solid #f9530d;
  text-align: center;
  color: #ffffff;
  margin-top: 25px;
  transition:0.3s all;
  display: block;
  margin: 0 auto;
  min-width: 170px;
  font-size: 16px;
  padding: 15px;
  cursor: pointer;
}

.listNoticias #btnMostrarMais:hover {
  background:#cb4006;
}

@media (max-width: 900px) {
  .listNoticias .item {
    flex-wrap:wrap;
    text-align: justify;
    padding: 25px 30px;
  }
  
  .listNoticias .item div {
    width:100%;
  }

}
  
/*
  ========================================
  ADVOGADOS
  ========================================
*/

.listAdvogados {
  background:#112758;
}

.listAdvogados .container {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.listAdvogados .item .display {
  display:flex;
  flex-wrap:wrap;
  max-width: 1440px;
  margin: 0 auto;
  justify-content: space-between;
}

.listAdvogados .item .img {
  width: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #112758;
}

.listAdvogados .item .txt {
  width: 825px;
  background: #112758;
  padding: 20px 30px 20px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-right: 180px;
}

.listAdvogados .item .txt a {
  display:none;
}

.listAdvogados .item .txt * {
  color: #fbfbfb;
  font-weight: 400;
}

.listAdvogados .item .txt p b {
  font-weight:600;
}

.listAdvogados .item .txt h2 {
  font-size: 43px;
  color: #fbfbfb;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 10px;
}

.listAdvogados .item .txt h3 {
  font-size: 24px;
  color: #f9530d;
  margin-bottom: 10px;
}

.listAdvogados .item .txt .icos {
  display:flex;
  gap: 10px 50px;
  margin: 15px 0 25px 0;
}

.listAdvogados .item .txt .icos span b,
.listAdvogados .item .txt .icos a {
  font-weight:600;
}

.listAdvogados .item:nth-child(2n) {
  background:#ffffff;
}

/*
.listAdvogados .item:nth-child(2n) .img {
  background:#ffffff;
}
*/
.listAdvogados .item:nth-child(2n) .txt {
  //order:-1;
  background: #ffffff;
  //padding-left: 130px;
  //padding-right: 70px;
}

.listAdvogados .item:nth-child(2n) .txt * {
  color:#112758;
}

.listAdvogados .item:nth-child(2n) .txt h3 {
  color:#f9530d;
}

@media (max-width: 1440px) {
  .listAdvogados .item .display {
    gap:0;
  }  
  
  .listAdvogados .item .img {
    width: 30%;
  }
  
  .listAdvogados .item .txt {
    width: 70%;
    padding: 20px 50px;
    margin-right: 0;
  }
    
  .listAdvogados .item:nth-child(2n) .txt {
    padding: 20px 50px;
  }
}

@media (max-width: 1200px) {
  .listAdvogados .item .img {
    width: 35%;
    position: relative;
    overflow: hidden;
  }

  .listAdvogados .item .img img {
    /* max-width: 108%; */
  }
  
  .listAdvogados .item .txt {
    width: 65%;
  }

  .listAdvogados .item .txt h2 {
    font-size:35px;
  }
  
  .listAdvogados .item .txt h3 {
    font-size: 20px;
  }
}

@media (max-width: 1024px) {
  .listAdvogados .item .img {
    width: 40%;
    padding: 20px;
  }
  
  .listAdvogados .item .txt {
    width: 60%;
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  .listAdvogados .item .img {
    width: 100%;
    padding-bottom: 0;
  }

  .listAdvogados .item .img img {
    width:350px;
  }
  
  .listAdvogados .item .txt {
    width: 100%;
    padding: 25px 20px!important;
  }

  .listAdvogados .item:nth-child(2n) .txt {
    order:0;
  }

  .listAdvogados .item .txt h2 {
    font-size:30px;
    text-align:center;
  }
  
  .listAdvogados .item .txt h3 {
    font-size: 18px;
    text-align:center;
  }

  .listAdvogados .item .info {
    text-align:center;
  }

  .listAdvogados .item .txt .icos {
    justify-content:center;
    flex-wrap: wrap;
  }
}

/*
  ========================================
  POLITICA DE PRIVACIDADE
  ========================================
*/

.politica_content {
  padding: 40px 0;
} 

.politica_content h2 {
  font-size: 23px;
  color: #f9530d;
  line-height: 1.2;
  margin: 40px 0 15px 0;
  font-family: 'NunitoRegular';
}

.politica_content h3 {
  font-size: 18px;
  color: #f9530d;
  line-height: 1.2;
  margin: 40px 0 15px 0;
  font-family: 'NunitoRegular';
}