:root {
--areia4: #C7B3A5;
--areia3: #B29784;
--areia2: rgba(178, 151, 132, 0.7);
--areia1: rgba(178, 151, 132, 0.5);
--grafite1: #272727;
--grafite2: #3E3C3D;
--grafite3: #7c787a80;
--grafite4: #7c787ab3;
--grafite5: #797979;
--texto-claro: #797979;
--texto-escuro: #272727;
--texto-padrao: #272727;
--bg-gray-light: #F4F4F4;
--bg-branco: #fff;
--bg-light: #FCFAFA;
--bg-hero: url(../img/bg-light.webp) no-repeat center;
}

.grecaptcha-badge {
    display: none !important;
}

body {
font-family: 'Sweet Sans Pro', sans-serif;
background-color: #fff;
color: var(--grafite1);

&.dark-mode {
  --texto-padrao: #fff;
  --texto-claro: #fff;
  --texto-escuro: #Fff;
  --bg-branco: #272727;
  --bg-gray-light: #181818;
  --bg-light: #181818;
  --bg-hero: url(../img/bg-dark.webp) no-repeat center;
  background-color: var(--grafite1);
  color: #f2f2f2;

  .st1 {
    fill: #ffffff;
  }

  .header-solid,
  .header-scrolled {
    background: var(--grafite2);
  }

  .icon-moon {
    color: var(--areia4);
    fill: var(--areia4);
  }

  .btn-theme i {
    font-weight: bold;
  }

  #toggle-theme {
    color: var(--areia4);
    fill: var(--areia4);
  }
}  
.st1 {
    fill: #797979;
}
}

@font-face {
font-family: 'Sweet Sans Pro';
src: url('../fonts/SweetSansProRegular.woff2') format('woff2');
font-weight: 400;
font-style: normal;
font-display: swap;
}

@font-face {
font-family: 'Sweet Sans Pro';
src: url('../fonts/SweetSansProLight.woff2') format('woff2');
font-weight: 300;
font-style: normal;
font-display: swap;
}

@font-face {
font-family: 'Sweet Sans Pro';
src: url('../fonts/SweetSansProMedium.woff2') format('woff2');
font-weight: 500;
font-style: normal;
font-display: swap;
}

@font-face {
font-family: 'Sweet Sans Pro';
src: url('../fonts/SweetSansProBold.woff2') format('woff2');
font-weight: 700;
font-style: normal;
font-display: swap;
}

@font-face {
font-family: 'Sweet Sans Pro';
src: url('../fonts/SweetSansProHeavy.woff2') format('woff2');
font-weight: 800;
font-style: normal;
font-display: swap;
}

.header-transparent {
background: transparent;
position: absolute;
top: 0;
width: 100%;
z-index: 100;
transition: all 0.3s ease;
}

.header-solid, .header-scrolled {
background: var(--bg-light);
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
position: fixed;
top: 0;
width: 100%;
z-index: 999;
transition: all 0.3s ease;
}

/**MENU**/
#main-header {
padding: 20px 0px;
position: sticky;
top: 0;
z-index: 9999;
background-color: <?=$is_home ? 'transparent': '#fff' ?>;
transition: background-color 0.3s ease;

.container{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  max-width:  90%;
  margin: 0 auto;
}

nav#navbarMenu {
  display: flex;
  gap: 2rem;

  ul.nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1.5rem;
    align-items: center;

    li.menu-item {
      a {
        text-decoration: none;
        font-weight: 300;
        font-size: 0.9rem;
        text-transform: uppercase;
        color: var(--textos-padrao);
        transition: color 0.3s ease;

        &:hover,
        &.current-menu-item {
          color: var(--areia3);
        }
      }
    }

    li.contato {
      background: var(--areia3);
      padding: 10px 30px;
      color: #fff;
      border-radius: 30px;

      a {
        color: #fff;

        &:hover {
          color: #fff;
        }
      }

      &:hover {
        background: var(--areia4);
        color: #fff;

        a {
          color: #fff;
        }
      }
    }
  }
}

.botoes {
    display: flex;
    gap: 15px;
    align-items: center;
	.tradutor{
		display: block;
		a.glink {
			text-decoration: none;
			color: var(--texto-claro);
			font-weight: 300;
		}
		a.glink.gt-current-lang {
			font-weight: 800;
			color: var(--areia3);
		}
	}
}

#toggle-theme {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  display: flex;
  align-items: center;
  transition: color 0.3s ease, fill 0.3s ease;
  color: var(--grafite4);
  fill: none;
}

#mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  width: 24px;
  height: 24px;
  z-index: 10001;
  flex-shrink: 0;

  .navbar-toggler-icon,
  .navbar-toggler-icon::before,
  .navbar-toggler-icon::after,
  .navbar-toggler-icon span {
    position: absolute;
    width: 25px;
    height: 2px;
    background-color: var(--areia3);
    transition: all 0.3s ease;
    content: '';
    left: 0;
  }

  .navbar-toggler-icon::before {
    top: -10px;
  }

  .navbar-toggler-icon::after {
    top: 10px;
  }

  .navbar-toggler-icon span {
    top: 0px;
  }

  &.open {
    .navbar-toggler-icon::before {
      transform: rotate(45deg);
      top: 0px;
          background-color: var(--areia3);

    }

    .navbar-toggler-icon::after {
      transform: rotate(-45deg);
      background-color: var(--areia3);
      top: 0px;
    }

    span.navbar-toggler-icon span{
    background-color: transparent;

    }
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  min-height: 100vh;
  background-color: var(--bg-light);
  padding: 20px 5vw;
  overflow-y: auto;
  display: none;
  flex-direction: column;
  z-index: 10000;

  &.show {
    display: flex;
  }

  .navbar-brand {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
  }

	.tradutor{
		margin-top: 40px;
		a.glink {
			text-decoration: none;
			color: var(--texto-claro);
			font-weight: 300;
		}
		a.glink.gt-current-lang {
			font-weight: 800;
			color: var(--areia3);
		}
	}

  ul.nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;

    li.menu-item a {
      font-size: 1.1rem;
      color: var(--texto-padrao);
      text-decoration: none;

      &:hover,
      &.current-menu-item {
        color: var(--areia3);
      }
    }
  }
}

svg#Camada_1 {
  width: auto;
  height: 30px;
}

.btn-theme-mode {
  height: 30px;
  width: 30px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
}

.icon-moon {
  height: 22px;
  width: 22px;
  color: var(--grafite4);
  fill: none;
  transition: all 0.3s ease;
}
}

/**HERO**/
.hero {
height: 100vh;
padding: 200px 50% 100px 5%;
background: var(--bg-hero);
background-repeat: no-repeat;
background-attachment: fixed;
margin-top: -100px;
display: flex;
justify-content: flex-start;
align-items: center;

h1 {
  color: var(--texto-claro);
  font-weight: 300;
  margin: 0;
  font-size: clamp(3rem, 1rem + 2vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.5px;

  strong {
    color: var(--areia3);
    font-weight: 600;
  }
}
}

/**ESCRITORIO**/
.escritorio{
padding: 80px 5%;
& h2{
  font-size: 2.5rem;
  margin: 0 0 20px;
  font-weight: 300;
  color: var(--areia3);
  line-height: 1.2;
  & strong{
    font-weight: 700;
  }
}
& p{
  font-size: 1rem;
  line-height: 1.5;
  margin: 15px 0;
  width: 95%;
  font-weight: 300;
  & strong{
    color: var(--areia3);
    font-weight: 600;
  }
}
& .escritorio-carousel{
  position: relative;
  & img{
    aspect-ratio: 16/9;
    width: 100%;
    height: auto;
    border-radius: 10px;
  }
  .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none; 
    padding: 30px;
    & button.owl-prev, button.owl-next{
      background: none;
      border: none;
      font-size: 1.5rem;
      color: white; 
      cursor: pointer;
      pointer-events: auto; 
      padding: 0 1rem;
      transition: opacity 0.3s ease;
    }
  }
}
& h3{
  margin: 50px 0 40px;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--areia3);
}
& ul.pilares{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;
  list-style: none;
  margin: 0;
  & li{
    width: calc(25% - 30px);
    border-right: solid 1px var(--areia3);
    padding:  10px 25px 10px 0;
    font-size: .95rem;
    font-weight: 300;
    &:last-child{
      border-right: 0;
      padding-left: 0;
    }
    & strong{
      color: var(--areia3);
      font-weight: 600;
      display: block;
      font-size: 1.1rem;
    }
  }
}
}

 /*EQUIPE**/
.equipe {
padding: 60px 5%;
background: var(--bg-hero);
& h2{
  font-size: 2.5rem;
  margin: 0 0 40px;
  font-weight: 300;
  line-height: 1.2;
  text-align: center;
  color: var(--texto-claro);
  & strong{
    font-weight: 700;
    color: var(--areia3);
  }
}
& .profissional{
  aspect-ratio: 3/4;
  border-radius: 15px;
  position: relative;
  cursor: pointer;
  & img{
    aspect-ratio: 3/4;
    border-radius: 15px;
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: grayscale(100%);
    transition: .3s;
  }
  &:hover{
    img{
      filter: grayscale(0%);
    }
  }
  & .nome{
    aspect-ratio: 3/4;
    border-radius: 15px;
    width: 100%;
    height: auto;
    padding: 40px 0px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    position: absolute;
    top: 0;
    background: #000000;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 80%);
    & h3{
      color: #fff;
      font-weight: 500;
      margin: 0 auto 5px;
      line-height: 1.1;
      font-size: 1.4rem;
    }
    & button{
      background: transparent;
      border: 0;
      outline: 0;
      color: #fff;
      font-weight: 300;
      font-size: .85rem;
    }
  }
}
& .modal{
  z-index: 99999;
  .modal-dialog{
    max-width: 100%;
    margin: 0;
    .modal-content {
        width: 100%;
        color: var(--texto-padrao);
        background-color: var(--bg-light);
        border: 0;
        border-radius: 0;
        outline: 0;
        & .modal-header{
          border-bottom: 0;
        }
        .btn-close{
            background: transparent;
            color: var(--areia3);
            font-size: 2rem;
            opacity: 1;
          &.btn-close:focus {
            outline: 0;
            box-shadow: unset;
            opacity: 1;
          }
        }
        .modal-body{
          padding: 40px 5%;
          & img{
            width: 100%;
            height: auto;
            display: block;
            border-radius: 15px;
          }
          & h3{
            font-weight: 700;
            font-size: 2rem;
            color: var(--areia3);
            margin: 0 0 10px;
          }
          & p{
            font-size: 1rem;
            line-height: 1.5;
            margin: 5px 0;
          }
          & h4{
            color: var(--areia3);
            font-weight: 600;
            font-size: 1.2rem;
            margin: 20px 0 5px;
          }
          & ul{
            list-style-type: disc;
            margin: 0 0 15px;
            li{
              font-size: 1rem;
              line-height: 1.5;
              margin: 5px 0;
              &::marker{
                color: var(--areia3);
              }
            }
          }
          & .redes{
            margin-top: 15px;
            display: none;
            flex-direction: row;
            gap: 10px;
            .rede{
              font-size: 2rem;
              color: var(--areia3);
              transition: .3s;
              &:hover{
                color: var(--areia4);
              }
            }
          }
        }
    }
  }
}
& .equipe-carousel{
  position: relative;
  .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none; 
    padding: 30px;
    & button.owl-prev, button.owl-next{
      background: none;
      border: none;
      font-size: 1.5rem;
      color: #fff; 
      cursor: pointer;
      pointer-events: auto; 
      padding: 0 1rem;
      transition: opacity 0.3s ease;
      &:hover{
        color: var(--areia3);
      }
    }
  }
  .owl-nav.disabled{
    display: none;
  }
}
}

/**AREAS**/
.areas{
padding: 80px 10%;
& h2.head{
  font-size: 2.5rem;
  margin: 0 0 40px;
  font-weight: 300;
  line-height: 1.2;
  color: var(--areia3);
  text-align: center;
  & strong{
    font-weight: 700;
  }
}
.accordion-button {
    background-color: var(--bg-light);
    color: var(--texto-escuro);
    font-weight: 600;
    position: relative;
    padding: 25px 25px 25px 45px;
    border-radius: 15px 15px;
}

.accordion-item:not(:first-of-type), .accordion-item:last-of-type .accordion-button.collapsed, .accordion-item:first-of-type .accordion-button {
    border-radius: 15px;
}
.accordion-button:not(.collapsed){
  box-shadow: unset;
}
.accordion-button:focus {
    border: 0;
    box-shadow: unset;
}

.accordion-item {
    color: var(--bs-accordion-color);
    background-color: var(--bg-light);
    border: 0;
    margin: 15px 0;
    border-radius: 15px;
}

.accordion-button::after {
    display: none !important;
}

.accordion-button::before {
    font-family: "Font Awesome 6 Free"; 
    font-weight: 900; 
    content: "\f078";
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    color: var(--areia3); 
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::before {
    transform: translateY(-50%) rotate(180deg);
}

.accordion-body {
  border: 0;
    padding: 0 25px 25px;
    color: var(--texto-padrao);
    & p{
      margin: 5px 0;
    }
}

}

/**FORMAS**/
.formas{
padding: 80px 15%;
background: var(--bg-light);
& h2{
  font-size: 2.5rem;
  margin: 0 0 15px;
  font-weight: 300;
  line-height: 1.2;
  color: var(--areia3);
  text-align: center;
  & strong{
    font-weight: 700;
  }
}
& p.intro{
  margin: 0 auto 50px;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--texto-claro);
  & strong{
    color: var(--areia3);
  }
}
.card {
    width: 100%;
    aspect-ratio: 1 / 1; 
    background: var(--bg-branco);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
    box-sizing: border-box;
    transition: background 0.3s ease, transform 0.5s ease;
    cursor: pointer;
}

.card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.1;
    color: var(--texto-claro);
    margin-bottom: 8px;
}

.card .more {
    font-size: 0.7rem;
    color: var(--texto-claro);
    margin: 0;
    transition: opacity 0.3s ease;
    text-transform: uppercase;
    & i{
      color: var(--areia3);
    }
}

.card .description {
    font-size: 0.9rem;
    color: white;
    margin-top: 0px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, max-height 0.5s ease;
}

.card:hover {
    background: var(--grafite5);
}

.card:hover h3 {
    color: white;
}

.card:hover .more {
    opacity: 0; 
    height: 0;
}

.card:hover .description {
    opacity: 1;
    max-height: 100%;
}
& .formas-carousel{

    & button.owl-prev, button.owl-next{
      background: none;
      border: none;
      font-size: 1.5rem;
      color: var(--texto-padrao); 
      cursor: pointer;
      pointer-events: auto; 
      padding: 0 1rem;
      transition: opacity 0.3s ease;
      &:hover{
        color: var(--areia3);
        background: transparent;
      }
    }
  }

}

/**TRACK**/
.track{
padding: 80px 15%;
text-align: center;
color: var(--texto-claro);
& h2{
  font-size: 2.5rem;
  margin: 0 0 40px;
  font-weight: 300;
  line-height: 1.2;
  color: var(--areia3);
  & strong{
    font-weight: 700;
  }
}
.topicos{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 20px 50px;
    .topico{
    max-width: calc(33.333% - 50px);
    padding: 15px 0;
    & h4{
      font-weight: 700;
      margin: 0;
      color: var(--areia3);

    }
    & strong{
      font-weight: 700;
      color: var(--areia3);
    }
    }
}
}

/**CONTATO**/
.faleconosco {
padding: 60px 5%;
background: var(--bg-hero);
background-repeat: no-repeat;
background-attachment: fixed;
& h2{
  font-size: 2.5rem;
  margin: 0 0 20px;
  font-weight: 300;
  color: var(--texto-claro);
  line-height: 1.2;
  & strong{
    font-weight: 700;
    color: var(--areia3);
  }
}
& p{
  color: var(--texto-escuro);
  font-weight: 300;
  width: 80%;
  margin: 5px 0;
  & a{
    color: var(--texto-escuro);
    transition: .3s;
    text-decoration: none;
    &:hover{
      color: var(--areia3);
    }
  }
  & strong{
    color: var(--areia3);
    font-weight: 800;
  }
}
& .separator{
  width: 100%;
  height: 20px;
}
& span.titulo{
  color: var(--areia3);
  text-transform: uppercase;
  font-weight: 800;
  font-size: 1.2rem;
}
& .mapa{
  display: block;
  width: 100%;
  font-weight: 800;
  color: var(--texto-claro);
  text-transform: uppercase;
  & i{
    color: var(--areia3);
  }
}
& .formulario{
  background: var(--bg-branco);
  padding: 30px 30px 10px;
  width: 90%;
  margin: 15px 0 15px auto;
  border-radius: 10px;
  & p{
    width: 100%;
  }
  & label{
    width: 100%;
    margin: 5px 0;
    & input, textarea{
      width: 100%;
      padding: 15px;
      border: 0;
      border-radius:10px;
      background: var(--bg-gray-light);
      border: solid 1px var(--bg-gray-light);
      transition: .3s;
      max-height: 150px;
      outline: 0;
      &:focus{
        border-color: var(--areia1);
      }
      &::placeholder{
        color: var(--texto-escuro);
      }
    }
  }
  & input[type="submit"]{
      background: var(--areia3);
      width: 100%;
      padding: 15px;
      text-align: center;
      color: #fff;
      text-transform: uppercase;
      font-weight: 700;
      border: 0;
      outline: 0;
      border-radius: 10px;
      transition: .3s;
      &:hover{
        background: var(--grafite5);
      }
  }
  & .wpcf7-spinner{
    height: auto;
  }
}
}

/**RODAPE**/
.rodape{
padding: 80px 5% 60px;
border-top: solid px var(--grafite2);
svg#Camada_1 {
  width: auto;
  height: 35px;
}
& .menu{
  ul{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 15px;
  & li{
    line-height: 40px;
    a{
      text-decoration: none;
      color: var(--textos-padrao);
      text-transform: uppercase;
      font-size: .9rem;
      transition: .3s;
      &:hover{
        color: var(--areia3);
      }
    }
  }
  }
}
& .redes{
  margin-left: 40px;
  display: flex;
  gap: 7px;
  flex-direction: row;
  & .rede{
    width: 40px;
    height: 40px;
    color: #fff;
    font-size: 20px;
    line-height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border-radius: 50%;
    background: var(--areia3);
    transition: .3s;
    &:hover{
      background: var(--areia1);
    }
  }
}
}
& .copy{
display: flex;
justify-content: space-between;
align-items: center;
padding: 30px 5%;
font-size: .9rem;
font-weight: 300;
color: var(--texto-claro);
& img{
  height: 1.2rem;
  width: auto;
}
}

@media (min-width: 1580px) {
  #main-header {
    svg#Camada_1 {
      width: auto;
      height: 40px;
    }
    .container {
      max-width: 85%;
    }
    & nav#navbarMenu {
      & ul.nav {
          & li.menu-item {
              a {
                font-size: 1rem;
              }
            }
      }
    }
  }
  .hero{
      height: 85vh;
      padding: 200px 48% 100px 10%;
      & h1{
        font-size: 4rem;
      }
  }
  .escritorio {
      padding: 80px 10%;
      & p{
        font-size: 1.2rem;
      }
      & ul.pilares {
        & li {
            & strong {
              font-size: 1.3rem;
            }
        }
      }
  }
  .equipe {
    padding: 60px 10%;
  }
  .areas {
      padding: 80px 15%;
  }
  .formas {
    padding: 80px 20%;
  }
  .track {
    padding: 80px 20%;
  }
  .faleconosco {
    padding: 60px 10%;
  }
  .rodape {
    padding: 80px 10% 60px;
    svg#Camada_1 {
      width: auto;
      height: 54px;
    }
  }
  & .copy {
    padding: 30px 10%;
  }
}

@media (max-width: 1024px) {
  #main-header {
    padding: 20px 5vw;
    nav#navbarMenu {
      display: none !important;
    }
    #mobile-toggle {
      display: block;
    }
    .botoes{
      display: flex;
      gap: 15px;
    }
    .container {
      gap: 1rem;
      max-width: 100%;
      padding: 0;
    }
    svg#Camada_1 {
      width: auto;
      height: 35px;
  }
  }
  .hero{
    background-size: cover;
    background-attachment: unset;
    height: 50vh;
    padding: 175px 5% 100px 5%;
  }
  .escritorio {
    padding: 60px;
    & p{
      width: 100%;
    }
    & .escritorio-carousel{
      margin-top: 30px;
    }
    & ul.pilares {
      & li {
          width: calc(50% - 30px);
          border-right: 0;
          padding: 10px 0;;
           &:nth-child(odd) {
            border-right: solid 1px var(--areia3);
        }
      }
    }
  }
  .areas {
    padding: 60px;
  }
  .formas {
    padding: 60px;
  }
  .track {
    padding: 60px;
  }
  .faleconosco{
    padding: 60px;
  }
  .rodape {
    padding: 50px 30px 50px;
    svg#Camada_1 {
        width: auto;
        max-height: 35px;
        max-width: 100%;
        height: auto;
        margin: 0 auto 20px;
        display: block;
    }
    & .menu {
      ul {
        justify-content: center;
      }
    }
    & .redes {
        margin-left: 0;
        margin-top: 30px;
        justify-content: center;
    }
  }
}

@media (max-width: 768px) {

  .formas {
    padding: 60px 0;
  }
  .track {
    padding: 60px;
    & .topicos {
        .topico {
            max-width: calc(50% - 50px);
            padding: 15px 0;
        }
    }
    
  }
  .faleconosco{
    padding: 60px;
    & .formulario {
        width: 100%;
        margin: 30px 0 0;
    }
  }
  .rodape {
    padding: 50px 30px 50px;
    svg#Camada_1 {
        width: auto;
        max-height: 35px;
        max-width: 100%;
        height: auto;
        margin: 0 auto 20px;
        display: block;
    }
    & .menu {
      ul {
        justify-content: center;
      }
    }
    & .redes {
        margin-left: 0;
        margin-top: 30px;
        justify-content: center;
    }
  }
}


@media (max-width: 480px) {
	.barra-traducao{
		display: block;
	}
  #main-header {
    svg#Camada_1 {
        width: auto;
        height: 30px;
    }
	  .botoes{
		  .tradutor{
			  display: none;
		  }
	  }	  
  }
  .hero {
      background-size: cover;
      background-attachment: unset;
      height: 70vh;
      padding: 105px 30px 30px 30px;
      & h1{
        font-size: 2.2rem;
      }
  }
  .escritorio {
    padding: 40px 30px;
    & h2 {
      font-size: 1.8rem;
      margin: 0 0 10px;
    }
    & h3 {
        margin: 30px 0 10px;
        font-size: 1.2rem;
    }
    & ul.pilares {
      gap: 0;
      & li {
        border-bottom: solid 1px var(--areia3);
        padding: 15px 0;
        width: 100%;
        &:nth-child(odd) {
            border-right: 0;
        }
          &:last-child{
          border-bottom: 0;
          }
        }
    }
  }
  .equipe {
    padding: 40px 30px;
    & h2{
      font-size: 1.8rem;
      margin: 0 auto 20px;
    }
    & .modal {
      & .modal-dialog {
          & .modal-content {
              .modal-body {
                  padding: 0px 20px 30px;
                  & img{
                    margin-bottom: 15px;
                  }
              }
          }
      }
    }
  }
  .areas {
    padding: 40px 30px;
    & h2.head{
      font-size: 1.8rem;
      margin: 0 auto 15px;
    }
  }
  .formas {
    padding: 40px 30px;
    & h2{
      font-size: 1.8rem;
      margin: 0 auto 15px;
    }
    & p.intro {
      margin: 0 auto 30px;
      font-size: 1rem;
    }
  }
  .track {
    padding: 40px 30px;
    & h2{
      font-size: 1.8rem;
      margin: 0 auto 15px;
    }
    & .topicos {
      gap: 15px;
      .topico {
        padding: 0;
        max-width: 100%;
      }
    }
  }
  .faleconosco {
    padding: 40px 30px;
    & h2{
      font-size: 1.8rem;
    }
  }
  .rodape {
    padding: 40px 30px 20px;
    & .menu {
      display: none;
    }
    & .redes{
      margin-top: 5px;
    }
  }
  .copy{
    flex-direction: column;
  }
}