@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");
* {
  font-family: "Inter", sans-serif;
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  outline: none;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

h1.r {
  font-size: 22px;
  font-weight: 400;
  color: #fff;
}
h1.m {
  font-weight: 500;
  font-size: 24px;
  color: #8a703d;
}
h1.sb-xbig {
  font-weight: 600;
  font-size: 34px;
  color: #fff;
}
h1.sb-big {
  font-weight: 600;
  font-size: 32px;
  color: #8a703d;
}
h1.sb {
  font-weight: 600;
  font-size: 18px;
  color: #8a703d;
}

p {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  color: #636363;
}

.container {
  width: 80%;
}

@media (max-width: 1024px) {
  .container {
    width: 83%;
  }
  h1.sb-xbig {
    font-weight: 600;
    font-size: 24px;
    color: #fff;
  }
  h1.m {
    font-weight: 500;
    font-size: 28px;
    color: #8a703d;
  }
}
nav {
  display: grid;
  place-items: center;
  width: 100%;
  height: 6rem;
  position: fixed;
  z-index: 100;
  background-color: transparent;
  transition: all 0.5s ease;
}
nav.prof {
  background-color: #b1965f;
}
nav[data-active=true] {
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  background-color: rgba(0, 0, 0, 0.5);
}
nav .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 90%;
}
nav .container img {
  width: 107.8px;
  height: 44.24px;
}
nav .container ul {
  display: flex;
  flex-direction: row;
  gap: 0 3rem;
}
nav .container ul li {
  position: relative;
  display: grid;
  place-items: center;
}
nav .container ul li:hover::after {
  width: 100%;
}
nav .container ul li a {
  color: #fff;
  font-weight: 300;
  font-size: 14px;
}
nav .container ul li::after {
  content: "";
  display: block;
  position: absolute;
  background: #fff;
  bottom: -0.5rem;
  height: 1px;
  width: 0%;
  opacity: 40%;
  transition: all 0.3s ease-out;
}
nav .container .socials {
  display: flex;
  flex-direction: row;
  gap: 0 0.5rem;
}
nav .container .socials a img {
  width: 20px;
  height: 20px;
  transition: all 0.3s ease-in-out;
}
nav .container .socials a img:hover {
  transform: translateY(-3px);
}
nav .container #nav__btn {
  display: none;
}

@media (max-width: 1024px) {
  nav[data-active=true] {
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
    background-color: #b1965f;
  }
  nav .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  nav .container .socials {
    display: none;
  }
  nav .container ul {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 85%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem 0;
    background-color: #b1965f;
    right: -85%;
    transition: all 0.8s ease;
  }
  nav .container ul[data-active=true] {
    right: 0;
  }
  nav .container ul li::after {
    display: none;
  }
  nav .container ul li a {
    width: 185px;
    display: block;
    text-align: start;
    font-size: 20px;
    color: #fff;
    font-weight: 400;
    text-align: start;
  }
  nav .container #nav__btn {
    width: 25px;
    height: 25px;
    color: #fff;
    display: grid;
    place-items: center end;
    cursor: pointer;
    position: absolute;
    z-index: 9999;
    right: 10%;
    transition: all 0.8s ease;
  }
  nav .container #nav__btn .line {
    display: block;
    width: 100%;
    height: 2.5px;
    border-radius: 2rem;
    background: #fff;
  }
  nav .container #nav__btn .line:nth-child(1) {
    width: 100%;
    transition: all 0.5s ease;
  }
  nav .container #nav__btn .line:nth-child(2) {
    width: 80%;
    transition: all 1s ease;
  }
  nav .container #nav__btn .line:nth-child(3) {
    width: 70%;
    transition: all 1s ease;
  }
  nav .container #nav__btn .line:nth-child(4) {
    width: 50%;
    transition: all 0.5s ease;
  }
  nav .container #nav__btn[data-active=true] {
    right: 68%;
  }
  nav .container #nav__btn[data-active=true] .line:nth-child(1) {
    width: 100%;
    transform: rotateZ(225deg) translateY(-14px);
  }
  nav .container #nav__btn[data-active=true] .line:nth-child(2) {
    width: 0;
  }
  nav .container #nav__btn[data-active=true] .line:nth-child(3) {
    width: 0;
  }
  nav .container #nav__btn[data-active=true] .line:nth-child(4) {
    width: 100%;
    transform: rotateZ(-225deg) translateY(13px);
  }
}
a #wpp-flutuante {
  position: fixed;
  width: 50px;
  height: 50px;
  right: 5%;
  bottom: 5%;
  z-index: 999;
}

header {
  width: 100%;
  height: 100vh;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background-image: url("../assets/images/home.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 64rem) {
  header {
    background-image: url("../assets/images/home-mobile.jpg");
  }
}
header .container {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 1rem 0;
  padding-top: 6rem;
}
header .container h1 {
  width: 47%;
  font-weight: 400;
}
header .container p {
  width: 45%;
  color: #fff;
}
header .container a {
  margin-top: 0.5rem;
  display: flex;
}
header .container a button {
  width: 129px;
  height: 36px;
  border-radius: 4px;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  background-color: #b1965f;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0rem;
  flex-direction: row;
  width: 156px;
  height: 42px;
  font-weight: 400;
}
header .container a button:hover {
  transform: translateY(-3px);
  color: #b1965f;
  background-color: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
header .container a button:hover .img {
  background: url("../assets/icons/wpp.png");
  background-repeat: no-repeat;
  background-position: center;
}
header .container a button .img {
  background: url("../assets/icons/whatsapp.svg");
  height: 100%;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-position: center;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

@media (max-width: 1024px) {
  a #wpp-flutuante {
    position: fixed;
    width: 50px;
    height: 50px;
    right: 5%;
    bottom: 5%;
    z-index: 999;
  }
  header {
    place-items: end center;
    padding-bottom: 6rem;
  }
  header .container {
    align-items: center;
  }
  header .container h1 {
    width: 100%;
    text-align: center;
    font-size: 20px;
  }
  header .container p {
    width: 100%;
    text-align: center;
    font-size: 12px;
    font-weight: 300;
  }
}
#after-header {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}
@media (max-width: 1024px) {
  #after-header {
    padding: 4.5rem 0;
  }
}
#after-header .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  place-items: center;
  width: 90%;
}
#after-header .container .text {
  padding: 0 3rem;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 2rem 0;
  padding-left: 2rem;
  height: 100%;
}
#after-header .container .text h1 {
  font-size: 18px;
  width: 80%;
}
#after-header .container .text p {
  font-size: 14px;
  width: 100%;
}
#after-header .container .text:nth-child(2) {
  height: 100%;
  border-left: 1px solid #636363;
  border-right: 1px solid #636363;
  padding-left: 2rem;
}

@media (max-width: 1024px) {
  #after-header {
    padding-bottom: 1.5rem;
  }
  #after-header .container {
    grid-template-columns: 1fr;
    padding: 0 1.5rem;
  }
  #after-header .container .text {
    padding: 2rem 0;
  }
  #after-header .container .text:nth-child(2) {
    border-left: none;
    border-right: none;
    border-top: 1px solid #636363;
    border-bottom: 1px solid #636363;
    padding: 2rem 0;
  }
}
#quem-somos {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background-color: #e5e5e5;
  padding-bottom: 0;
}
@media (max-width: 1024px) {
  #quem-somos {
    padding: 4.5rem 0;
  }
}
#quem-somos .container {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  place-items: center;
  padding: 0 4%;
  gap: 0 5rem;
}
#quem-somos .container .text {
  display: flex;
  flex-direction: column;
  gap: 2rem 0;
  width: 95%;
}
#quem-somos .container .text p {
  font-size: 16px;
}
#quem-somos .container .text a {
  color: #8a703d;
  display: flex;
  flex-direction: row;
  gap: 0 1rem;
}
#quem-somos .container .imagem {
  position: relative;
  width: 100%;
  height: 340px;
}
#quem-somos .container .imagem .box {
  width: 90%;
  height: 319px;
  position: absolute;
  border: 2px solid #8a703d;
  border-radius: 4px;
  top: 0;
  right: 15px;
}
#quem-somos .container .imagem img {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  -o-object-fit: cover;
     object-fit: cover;
  width: 90%;
  height: 319px;
  border-radius: 4px;
}

@media (max-width: 1024px) {
  #quem-somos {
    padding-top: 3rem;
  }
  #quem-somos .container {
    grid-template-columns: 1fr;
    gap: 3rem 0;
  }
  #quem-somos .container .text {
    width: 100%;
    align-items: center;
    justify-content: center;
  }
  #quem-somos .container .text a {
    font-size: 20px;
    gap: 0 0.7rem;
  }
  #quem-somos .container .text a img {
    width: 20px;
    height: 18px;
  }
}
#desk {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background-color: #e5e5e5;
  padding-bottom: 12rem;
}
@media (max-width: 1024px) {
  #desk {
    padding: 4.5rem 0;
  }
}
#desk .container {
  width: 100%;
  height: 400px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background-image: url("../assets/images/Ativo 1-8.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 80%;
  border-radius: 11px;
}
@media screen and (max-width: 64rem) {
  #desk .container {
    background-image: url("../assets/images/Ativo 1.png");
  }
}
#desk .container .text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem 0;
}
#desk .container .text .r {
  text-align: center;
  width: 60%;
}
#desk .container .text a button {
  width: 129px;
  height: 36px;
  border-radius: 4px;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  background-color: #b1965f;
  cursor: pointer;
  transition: all 0.3s ease;
}
#desk .container .text a button:hover {
  transform: translateY(-3px);
  color: #b1965f;
  background-color: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

@media (max-width: 1024px) {
  #desk {
    padding: 0;
    padding-bottom: 8rem;
  }
  #desk .container {
    width: 100%;
  }
  #desk .container .text .r {
    width: 90%;
    font-size: 18px;
  }
}
#acting {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  padding: 0;
  position: relative;
  overflow: visible;
}
@media (max-width: 1024px) {
  #acting {
    padding: 4.5rem 0;
  }
}
#acting .title1 {
  position: absolute;
  top: -10%;
}
#acting .all .text {
  padding: 3rem 4.2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem 0;
}
#acting .all .text .title {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  gap: 0 1rem;
}
#acting .all .text p {
  font-size: 18px;
  font-weight: 300;
}
#acting .all .text a button {
  font-size: 18px;
  color: #8a703d;
  background-color: transparent;
  cursor: pointer;
}
#acting .one {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
}
#acting .one .big {
  width: 100%;
}
#acting .two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
}
#acting .two .text .title h1 {
  width: 100%;
}
#acting .two .big {
  width: 100%;
}
#acting .three {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
}
#acting .three .big {
  width: 100%;
}

@media (max-width: 1024px) {
  #acting {
    padding: 0;
    position: relative;
    overflow: visible;
  }
  #acting .title1 {
    position: absolute;
    top: -70px;
    font-size: 20px;
  }
  #acting .all .text {
    padding: 3.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 1rem 0;
  }
  #acting .all .text .title {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0 1rem;
  }
  #acting .all .text .title img {
    width: 48px;
    height: 48px;
  }
  #acting .all .text .title h1 {
    font-size: 19px;
  }
  #acting .all .text p {
    font-size: 14px;
    font-weight: 300;
  }
  #acting .all .text a button {
    font-size: 16px;
    color: #8a703d;
    background-color: transparent;
    display: flex;
    flex-direction: row;
    gap: 0 0.3rem;
  }
  #acting .one {
    display: grid;
    grid-template-columns: 1fr;
    place-items: center;
  }
  #acting .one .big {
    width: 100%;
  }
  #acting .two {
    display: grid;
    grid-template-columns: 1fr;
    place-items: center;
  }
  #acting .two .text {
    order: 2;
  }
  #acting .two .text h1 {
    width: 70%;
  }
  #acting .two .big {
    width: 100%;
    order: 1;
  }
  #acting .three {
    display: grid;
    grid-template-columns: 1fr;
    place-items: center;
  }
  #acting .three .text {
    order: 2;
  }
  #acting .three .big {
    width: 100%;
    order: 1;
  }
}
#fight {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background-color: #e5e5e5;
}
@media (max-width: 1024px) {
  #fight {
    padding: 4.5rem 0;
  }
}
#fight .container {
  width: 100%;
  height: 400px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background-image: url("../assets/images/Grupo 117.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 80%;
  border-radius: 11px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem 0;
}
@media screen and (max-width: 64rem) {
  #fight .container {
    background-image: url("../assets/images/Ativo 2.png");
  }
}
#fight .container h1 {
  text-align: center;
  width: 40%;
}
#fight .container a button {
  width: 129px;
  height: 36px;
  border-radius: 4px;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  background-color: #b1965f;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 300;
  width: 156px;
  height: 42px;
}
#fight .container a button:hover {
  transform: translateY(-3px);
  color: #b1965f;
  background-color: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

@media (max-width: 1024px) {
  #fight {
    padding: 0;
  }
  #fight .container {
    width: 100%;
  }
  #fight .container h1 {
    font-size: 16px;
    width: 70%;
  }
  #fight .container a button {
    width: 190px;
    height: 48px;
  }
}
#prof {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background-color: #e5e5e5;
  padding-top: 0;
}
@media (max-width: 1024px) {
  #prof {
    padding: 4.5rem 0;
  }
}
#prof .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem 0;
}
#prof .container .title {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 1rem 0;
}
#prof .container .title h1 {
  font-size: 26px;
  font-weight: 600;
}
#prof .container .title h3 {
  font-weight: 300;
}
#prof .container .drs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 3.5rem;
  place-items: center;
  padding: 0 15%;
}
#prof .container .drs .dr1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  justify-content: center;
}
#prof .container .drs .dr1 img {
  height: auto;
}
#prof .container .drs .dr1 a .name {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 90%;
  height: 20%;
  background-color: #b1965f;
  gap: 0 1rem;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 4px;
}
#prof .container .drs .dr1 a .name p {
  color: #fff;
  font-size: 18px;
}
#prof .container .drs .dr1 a .name .img {
  border-radius: 50%;
  background-color: #8a703d;
  width: 30px;
  height: 30px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
#prof .container .drs .dr1 a .name .img img {
  position: absolute;
  width: 12px;
  height: 12px;
}

@media (max-width: 1024px) {
  #prof .container {
    width: 83%;
  }
  #prof .container .title h1 {
    font-size: 24px;
  }
  #prof .container .title h3 {
    font-size: 14px;
  }
  #prof .container .drs {
    grid-template-columns: 1fr;
    width: 100%;
    padding: 0;
    gap: 3rem 0;
  }
  #prof .container .drs .dr1 {
    width: 100%;
  }
  #prof .container .drs .dr1 img {
    width: 100%;
    height: 350px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 4px;
  }
}
#contact {
  width: 100%;
  height: 447px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background-image: url("../assets/images/fundo-contatos.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 64rem) {
  #contact {
    background-image: url("../assets/images/fundo-contatos.jpg");
  }
}
#contact .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 4rem;
  place-items: center;
}
#contact .container .form__contact {
  width: 100%;
  height: 327px;
  background-color: #8a703d;
  border-radius: 4px;
  display: grid;
  place-items: center;
  padding: 2rem 0;
  margin-left: 4rem;
}
#contact .container .form__contact .title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.5rem 0;
}
#contact .container .form__contact .title h1 {
  color: #fff;
  font-weight: 400;
  font-size: 24px;
}
#contact .container .form__contact .title p {
  color: #fff;
  font-weight: 300;
  font-size: 12px;
  width: 85%;
  opacity: 75%;
}
#contact .container .form__contact form {
  width: 80%;
  display: flex;
  flex-direction: column;
  gap: 1.4rem 0;
  align-items: center;
  justify-content: center;
}
#contact .container .form__contact form input {
  width: 90%;
  height: 39px;
  border-radius: 4px;
  padding-left: 1rem;
  color: #8a703d;
}
#contact .container .form__contact form input::-moz-placeholder {
  color: #4a442f;
}
#contact .container .form__contact form input::placeholder {
  color: #4a442f;
}
#contact .container .form__contact form button {
  width: 129px;
  height: 36px;
  border-radius: 4px;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 500;
  color: #4a442f;
  background-color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}
#contact .container .form__contact form button:hover {
  transform: translateY(-3px);
  color: #fff;
  background-color: #4a442f;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
#contact .container .contacts {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 1.45rem 0;
  padding-left: 7rem;
}
#contact .container .contacts .phone {
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: center;
  gap: 0 0.5rem;
}
#contact .container .contacts .phone a {
  color: #fff;
  font-weight: 300;
  font-size: 15px;
  opacity: 75%;
}
#contact .container .contacts .email {
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: center;
  gap: 0 0.5rem;
}
#contact .container .contacts .email a {
  color: #fff;
  font-weight: 300;
  font-size: 15px;
  opacity: 75%;
}
#contact .container .contacts .local {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  gap: 0 0.5rem;
}
#contact .container .contacts .local a {
  color: #fff;
  font-weight: 300;
  font-size: 15px;
  width: 80%;
  opacity: 75%;
}

@media (max-width: 1024px) {
  #contact {
    height: -moz-fit-content;
    height: fit-content;
    padding: 7rem 0;
  }
  #contact .container {
    grid-template-columns: 1fr;
    gap: 4rem 0;
  }
  #contact .container .form__contact {
    margin-left: 0;
  }
  #contact .container .form__contact .title h1 {
    font-weight: 400;
  }
  #contact .container .form__contact .title p {
    width: 80%;
  }
  #contact .container .form__contact form input {
    width: 100%;
  }
  #contact .container .contacts {
    padding-left: 0;
    gap: 1.5rem 0;
    padding: 0 0 0 8%;
  }
  #contact .container .contacts .phone a {
    font-size: 14px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0 0.7rem;
  }
  #contact .container .contacts .phone a img {
    width: 20px;
    height: 20px;
  }
  #contact .container .contacts .email a {
    font-size: 14px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0 0.7rem;
  }
  #contact .container .contacts .email a img {
    width: 20px;
    height: 20px;
  }
  #contact .container .contacts .local a {
    font-size: 14px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0 0.7rem;
    width: 90%;
  }
  #contact .container .contacts .local a img {
    width: 20px;
    height: 20px;
  }
}
footer {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background-color: #3B3423;
  padding: 3rem 0;
}
@media (max-width: 1024px) {
  footer {
    padding: 4.5rem 0;
  }
}
footer img {
  width: 122px;
  height: 51px;
}

@media (max-width: 1024px) {
  footer {
    padding: 3rem;
  }
}
a #wpp-flutuante {
  position: fixed;
  width: 50px;
  height: 50px;
  right: 5%;
  bottom: 5%;
  z-index: 999;
}

#quem-somos-banner {
  width: 100%;
  height: 274px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background-image: url("../assets/images/banner-pag.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 64rem) {
  #quem-somos-banner {
    background-image: url("../assets/images/banner-pag.jpg");
  }
}

@media (max-width: 1024px) {
  a #wpp-flutuante {
    position: fixed;
    width: 50px;
    height: 50px;
    right: 5%;
    bottom: 5%;
    z-index: 999;
  }
}
#who-we-are {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background-color: #e5e5e5;
}
@media (max-width: 1024px) {
  #who-we-are {
    padding: 4.5rem 0;
  }
}
#who-we-are .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4rem 0;
}
#who-we-are .container .text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 3rem 0;
}
#who-we-are .container .text p {
  text-align: start;
  width: 100%;
}
#who-we-are .container .text a button {
  width: 129px;
  height: 36px;
  border-radius: 4px;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  background-color: #b1965f;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0rem;
  flex-direction: row;
  width: 156px;
  height: 42px;
  font-weight: 400;
}
#who-we-are .container .text a button:hover {
  transform: translateY(-3px);
  color: #b1965f;
  background-color: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
#who-we-are .container .text a button:hover .img {
  background: url("../assets/icons/wpp.png");
  background-repeat: no-repeat;
  background-position: center;
}
#who-we-are .container .text a button .img {
  background: url("../assets/icons/whatsapp.svg");
  height: 100%;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-position: center;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
#who-we-are .container .text .textos {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.7rem 0;
}
#who-we-are .container .images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 2rem;
}
#who-we-are .container .images img {
  height: 358px;
}

@media (max-width: 1024px) {
  #who-we-are {
    padding-bottom: 0;
  }
  #who-we-are .container .images {
    grid-template-columns: 1fr;
    gap: 2rem 0;
  }
}
a #wpp-flutuante {
  position: fixed;
  width: 50px;
  height: 50px;
  right: 5%;
  bottom: 5%;
  z-index: 999;
}

#direito-banner {
  width: 100%;
  height: 274px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background-image: url("../assets/images/direito-empresarial.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 64rem) {
  #direito-banner {
    background-image: url("../assets/images/direito-empresarial.jpg");
  }
}

@media (max-width: 1024px) {
  a #wpp-flutuante {
    position: fixed;
    width: 50px;
    height: 50px;
    right: 5%;
    bottom: 5%;
    z-index: 999;
  }
}
#direito {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}
@media (max-width: 1024px) {
  #direito {
    padding: 4.5rem 0;
  }
}
#direito .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
}
#direito .container .big {
  height: 349px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-left: 5rem;
}
#direito .container .text {
  display: flex;
  flex-direction: column;
  gap: 2rem 0;
}
#direito .container .text p {
  width: 77.5%;
  font-size: 16px;
}
#direito .container .text a button {
  width: 129px;
  height: 36px;
  border-radius: 4px;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  background-color: #b1965f;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0rem;
  flex-direction: row;
  width: 156px;
  height: 42px;
  font-weight: 400;
}
#direito .container .text a button:hover {
  transform: translateY(-3px);
  color: #b1965f;
  background-color: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
#direito .container .text a button:hover .img {
  background: url("../assets/icons/wpp.png");
  background-repeat: no-repeat;
  background-position: center;
}
#direito .container .text a button .img {
  background: url("../assets/icons/whatsapp.svg");
  height: 100%;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-position: center;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

@media (max-width: 1024px) {
  #direito .container {
    grid-template-columns: 1fr;
    gap: 4rem 0;
  }
  #direito .container .big {
    width: 100%;
    margin-left: 0;
  }
  #direito .container .text {
    align-items: start;
    justify-content: center;
    text-align: start;
    width: 100%;
  }
  #direito .container .text p {
    width: 100%;
  }
}
#textos {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  padding-top: 0;
}
@media (max-width: 1024px) {
  #textos {
    padding: 4.5rem 0;
  }
}
#textos .container {
  display: flex;
  flex-direction: column;
  gap: 5rem 0;
  align-items: center;
  justify-content: center;
  padding-left: 9rem;
}
#textos .container .societario {
  display: flex;
  flex-direction: column;
}
#textos .container .societario .containerr {
  display: flex;
  flex-direction: column;
  gap: 3rem 0;
  width: 88%;
}
#textos .container .societario .containerr .textos {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#textos .container .societario .containerr h1 {
  position: relative;
}
#textos .container .societario .containerr h1::after {
  content: "";
  display: block;
  position: absolute;
  background: #b1965f;
  bottom: -1.4rem;
  height: 2px;
  width: 187px;
}
#textos .container .societario .containerr p {
  font-size: 16px;
}
#textos .container .societario .containerr ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 0.75rem 0;
  margin-top: -1rem;
}
#textos .container .societario .containerr ul li {
  list-style-type: disc;
  list-style: inside;
  color: #636363;
}

@media (max-width: 1024px) {
  #textos {
    padding-top: 2rem;
  }
  #textos .container {
    padding-left: 0;
  }
  #textos .container .societario .containerr {
    width: 100%;
  }
}
a #wpp-flutuante {
  position: fixed;
  width: 50px;
  height: 50px;
  right: 5%;
  bottom: 5%;
  z-index: 999;
}

#planejamento-banner {
  width: 100%;
  height: 273px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background-image: url("../assets/images/planejamento.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 64rem) {
  #planejamento-banner {
    background-image: url("../assets/images/planejamento.jpg");
  }
}

@media (max-width: 1024px) {
  a #wpp-flutuante {
    position: fixed;
    width: 50px;
    height: 50px;
    right: 5%;
    bottom: 5%;
    z-index: 999;
  }
}
#planejamento {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}
@media (max-width: 1024px) {
  #planejamento {
    padding: 4.5rem 0;
  }
}
#planejamento .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  place-items: center;
  gap: 3rem 5rem;
}
#planejamento .container .big {
  height: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
#planejamento .container .text {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 1.2rem 0;
  width: 100%;
}
#planejamento .container .text h1 {
  width: 70%;
}
#planejamento .container .text p {
  width: 100%;
}
#planejamento .container .text2 {
  grid-column: 1/4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem 0;
  width: 100%;
}
#planejamento .container .text2 .btn {
  width: 100%;
  display: flex;
  justify-content: start;
  align-items: center;
}
#planejamento .container .text2 .btn a button {
  width: 129px;
  height: 36px;
  border-radius: 4px;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  background-color: #b1965f;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 0.5rem;
  flex-direction: row;
  width: 156px;
  height: 42px;
  font-weight: 400;
}
#planejamento .container .text2 .btn a button:hover {
  transform: translateY(-3px);
  color: #b1965f;
  background-color: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
#planejamento .container .text2 .btn a button:hover .img {
  background: url("../assets/icons/wpp.png");
  background-repeat: no-repeat;
  background-position: center;
}
#planejamento .container .text2 .btn a button .img {
  background: url("../assets/icons/whatsapp.svg");
  height: 100%;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-position: center;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
#planejamento .container .text2 ul {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 0.75rem 0;
  margin-top: 1rem;
}
#planejamento .container .text2 ul li {
  list-style-type: disc;
  list-style: inside;
  color: #636363;
}

@media (max-width: 1024px) {
  #planejamento .container {
    grid-template-columns: 1fr;
    gap: 4rem 0;
  }
  #planejamento .container .text {
    align-items: center;
  }
  #planejamento .container .text h1 {
    font-size: 24px;
    text-align: center;
    width: 100%;
  }
}
a #wpp-flutuante {
  position: fixed;
  width: 50px;
  height: 50px;
  right: 5%;
  bottom: 5%;
  z-index: 999;
}

#holding-banner {
  width: 100%;
  height: 274px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background-image: url("../assets/images/holding-familiar.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 64rem) {
  #holding-banner {
    background-image: url("../assets/images/holding-familiar.jpg");
  }
}

@media (max-width: 1024px) {
  a #wpp-flutuante {
    position: fixed;
    width: 50px;
    height: 50px;
    right: 5%;
    bottom: 5%;
    z-index: 999;
  }
}
#holding {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}
@media (max-width: 1024px) {
  #holding {
    padding: 4.5rem 0;
  }
}
#holding .container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  place-items: center;
  gap: 0 5rem;
  padding: 0 0%;
}
#holding .container .big {
  height: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
#holding .container .text {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 2rem 0;
  width: 100%;
}
#holding .container .text h1 {
  width: 70%;
}
#holding .container .text p {
  width: 100%;
}
#holding .container .text a button {
  width: 129px;
  height: 36px;
  border-radius: 4px;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  background-color: #b1965f;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0rem;
  flex-direction: row;
  width: 156px;
  height: 42px;
  font-weight: 400;
}
#holding .container .text a button:hover {
  transform: translateY(-3px);
  color: #b1965f;
  background-color: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
#holding .container .text a button:hover .img {
  background: url("../assets/icons/wpp.png");
  background-repeat: no-repeat;
  background-position: center;
}
#holding .container .text a button .img {
  background: url("../assets/icons/whatsapp.svg");
  height: 100%;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-position: center;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

@media (max-width: 1024px) {
  #holding .container {
    grid-template-columns: 1fr;
    gap: 4rem 0;
  }
  #holding .container .text {
    align-items: center;
  }
  #holding .container .text h1 {
    font-size: 24px;
    text-align: center;
    width: 100%;
  }
}
a #wpp-flutuante {
  position: fixed;
  width: 50px;
  height: 50px;
  right: 5%;
  bottom: 5%;
  z-index: 999;
}

@media (max-width: 1024px) {
  a #wpp-flutuante {
    position: fixed;
    width: 50px;
    height: 50px;
    right: 5%;
    bottom: 5%;
    z-index: 999;
  }
}
#dr {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  padding-top: 12rem;
  background-color: #fff;
}
@media (max-width: 1024px) {
  #dr {
    padding: 4.5rem 0;
  }
}
#dr .container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  place-items: center;
  background-color: #fff;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid #8a703d;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
#dr .container img {
  width: 100%;
  display: flex;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}
#dr .container .text {
  padding: 0 4rem;
  color: #636363;
  display: flex;
  flex-direction: column;
  gap: 1.5rem 0;
}
#dr .container .text p {
  color: #636363;
  font-size: 18px;
  font-weight: 400;
}

@media (max-width: 1024px) {
  #dr {
    padding-top: 8rem;
  }
  #dr .container {
    grid-template-columns: 1fr;
  }
  #dr .container .text {
    padding: 4rem 2rem;
  }
}/*# sourceMappingURL=style.css.map */