* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 13px;
  overflow-x: hidden;
}

.button {
  display: inline-block;
  background-color: #b28756;
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  padding: 10px 30px;
  margin-top: 30px;
  border-radius: 20px;
}
.button--dark {
  background-color: #000;
}
.button--dark:hover {
  background-color: #b28756;
}

/* Tabs */
.tab-container {
  width: 100%;
}

.tab {
  overflow: hidden;
  border-bottom: 1px solid #ccc;
  background-color: #f1f1f1;
}

.tab button {
  background-color: inherit;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 17px;
}

.tab button:hover {
  background-color: #ddd;
}

.tab button.active {
  background-color: #ccc;
}

.tab-content-container {
  padding: 20px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-top: none;
}

.tabcontent {
  display: none;
  padding: 20px;
}

.tabcontent h3 {
  margin-top: 0;
}
/* End Tabs */

.default {
  padding-top: 50px;
  padding-bottom: 50px;
}
.default .section-title,
.default .section-desc {
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
}
.default .section-title {
  font-size: 20px;
}
.default .section-desc {
  font-size: 12px;
  color: #ccc;
  margin-top: 10px;
  margin-bottom: 40px;
}
.default .section-body {
  max-width: 1140px;
  margin: auto;
}
.default.light {
  background-color: #f7f7f7;
}
.default.light .section-title,
.default.light .section-body {
  color: #000;
}
.default.dark {
  background-color: var(--colorEntity);
}
.default.dark .section-title,
.default.dark .section-body {
  color: #fff;
}

/* footer */
footer {
  background-color: var(--colorEntity);
  padding: 20px;
}
.footer--area {
  max-width: 1140px;
  margin: auto;
  color: #fff;
  display: flex;
}
.footer--area.copyright {
  margin-top: 50px;
  text-align: center;
}
.footer--area.copyright a {
  text-decoration: none;
  color: #2196f3;
}
.footer--item {
  flex: 1;
  line-height: 20px;
}
.footer--item i {
  //margin-right: 10px;
}
.footer--item p a {
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}
.footer-social {
  display: flex;
  margin-top: 15px;
}
.footer-social a {
  display: block;
  width: 40px;
  height: 40px;
  background-color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 13px;
  margin-right: 10px;
  color: #ffffff;
}
.footer-social a:hover {
  background-color: #b28756;
}
.footer-social img {
  height: 10px;
}
.footer--item.area2 {
  
}
.footer--item.area3 form {
  background-color: #333;
  text-align: center;
  padding: 30px;
}
.footer--item.area3 input {
  width: 100%;
  height: 40px;
  border: 0;
  background: transparent;
  border-bottom: 1px solid #ccc;
  outline: 0;
  color: #fff;
  font-size: 14px;
  text-align: center;
}

/* end footer */

/*
CSS DE ÁREAS ESPECÍFICAS
*/
.section-page {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
}

.section-page--content {
  width: 100vw;
  max-width: 1140px;
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.section-aboutus {
  display: flex;
}
.section-aboutus--left {
  flex: 1;
}
.section-aboutus--left p {
  font-size: 14px;
  line-height: 25px;
}
.section-aboutus--right {
  width: 520px;
  text-align: center;
}
.section-aboutus--right img {
  width: 480px;
  box-shadow: 0px 5px 10px #333;
}

.section-services {
  display: flex;
}
.section-service {
  flex: 1;
  text-align: center;
  border-right: 1px solid #333;
  padding: 15px;
}
.section-service:first-child {
  border-left: 1px solid #333;
}
.section-service h4 {
  margin-top: 20px;
  text-transform: uppercase;
  font-size: 18px;
}
.section-service p {
  margin-top: 10px;
  font-size: 13px;
  color: #999;
}

.section-service a {
  color: #fafafa;
  text-decoration: none;
}

.section-projects {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-projects--filters {
  border: 1px solid #ccc;
  background-color: #eee;
  border-radius: 30px;
  display: inline-block;
  padding: 0px 20px;
}
.section-projects--filters ul,
.section-projects--filters li {
  list-style: none;
}
.section-projects--filters li {
  display: inline-block;
  padding: 10px;
  text-transform: uppercase;
  font-size: 13px;
  border-left: 1px solid #ccc;
  color: #555;
  border-bottom: 3px solid #eee;
  cursor: pointer;
}
.section-projects--filters li:hover,
.section-projects--filters li.active {
  border-bottom: 3px solid #b28756;
}
.section-projects--filters li:first-child {
  border-left: 0;
}

.section-projects--photos {
  width: 100vw;
  max-width: 1140px;
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.section-projects--photo {
  width: 280px;
}
.section-projects--photoarea {
  margin: 10px;
  width: 260px;
  height: 220px;
}
.section-projects--photoarea img {
  width: inherit;
  height: 160px;
}
.section-projects--photoinfo {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  width: inherit;
  height: 160px;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}
.section-projects--photoinfo h5 {
  font-size: 18px;
  font-weight: 600;
}
.section-projects--photoarea:hover .section-projects--photoinfo {
  display: flex;
}

.link-news {
  color: #ffffff;
  font-weight: bolder;
  text-decoration: none;
}
.link-news-title {
  color: #000000;
  font-weight: bolder;
  text-decoration: none;
}

.bg-team {
  background-image: url("../images/bg.jpg");
  background-size: cover;
  background-position: center;
  padding: 0;
}
.section-team-area {
  background-color: rgba(0, 0, 0, 0.8);
  padding-top: 50px;
  padding-bottom: 50px;
}
.section-team {
  overflow: hidden;
  max-width: 880px;
  margin: auto;
}
.section-team .sliders {
  width: 1000vw;
  height: 100%;
}
.section-team .slide {
  width: 280px;
  height: 100%;
  min-height: 300px;
  display: inline-block;
  background-color: #fff;
  margin-right: 20px;
}
.section-team .slidearea {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  align-items: center;
  color: #000;
  padding: 30px;
}
.section-team-area .sliders-pointers {
  margin-top: 30px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-team-area .pointer {
  width: 15px;
  height: 15px;
  border: 2px solid #b28756;
  border-radius: 8px;
  margin-left: 5px;
  margin-right: 5px;
  cursor: pointer;
}
.section-team-area .pointer.active {
  background-color: #b28756;
}
.section-team--avatar {
  width: 150px;
  height: auto;
}
.section-team--name {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 17px;
  margin-top: 30px;
}
.section-team--role {
  font-size: 14px;
  color: #999;
  margin-top: 5px;
}
.section-team--social {
  display: flex;
  margin-top: 20px;
}
.section-team--social a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px;
  background-color: #ccc;
  border-radius: 13px;
  margin-right: 10px;
}
.section-team--social a:hover {
  background-color: #b28756;
}

.testimonials .section-body {
  max-width: initial;
}
.section-testimonials {
  overflow: hidden;
}
.section-testimonials .sliders {
  width: 1000vw;
  height: 100%;
}
.section-testimonials .slide {
  width: 100vw;
  height: 100%;
  display: inline-block;
}
.section-testimonials .slidearea {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  align-items: center;
}

.section-testimonials--avatar {
  width: 100px;
}
.section-testimonials--name {
  font-weight: bold;
  font-size: 16px;
  margin-top: 20px;
}
.section-testimonials--role {
  font-size: 14px;
}
.section-testimonials--quoteimg {
  width: 20px;
  margin-top: 30px;
}
.section-testimonials--quote {
  margin-top: 10px;
  font-size: 13px;
  max-width: 700px;
  color: #555;
  text-align: center;
  line-height: 25px;
  margin-left: 30px;
  margin-right: 30px;
}
.section-testimonials .sliders-pointers {
  width: 100vw;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}
.section-testimonials .pointer {
  width: 15px;
  height: 15px;
  border: 2px solid #b28756;
  border-radius: 8px;
  margin-left: 5px;
  margin-right: 5px;
  cursor: pointer;
}
.section-testimonials .pointer.active {
  background-color: #b28756;
}

.section-companies {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.section-companies--area {
  display: flex;
  align-items: center;
}
.section-company {
  flex: 1;
  text-align: center;
}

.section-price {
  display: flex;
}
.section-price--item {
  flex: 1;
  background-color: #fff;
  margin-right: 20px;
  padding: 20px;
  text-align: center;
}
.section-price--item:last-child {
  margin-right: 0;
}
.section-price--item-name {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
}
.section-price--item-money {
  font-weight: bold;
  font-size: 22px;
  margin-top: 10px;
}
.section-price--item-period {
  color: #999;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section-price--item-point {
  font-size: 12px;
}

.section-box {
  display: flex;
}
.section-box--item {
  flex: 1;
  margin-right: 20px;
  padding: 20px;
  justify-content: center;
  //text-align:center;
  display: inline-flex;
  background-color: #f1d134;
}

.section-box--item:last-child {
  margin-right: 0;
}
.section-box--item-name {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
}
.section-box--item-name a {
  text-decoration: none;
  color: #000;
  display: inline-flex;
  align-items: center;
}
.section-box--item-name i {
  margin: 0 5px;
}
.section-box--item-money {
  font-weight: bold;
  font-size: 22px;
  margin-top: 10px;
}
.section-box--item-period {
  color: #999;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section-box--item-point {
  font-size: 12px;
}

.premium {
  background-color: #fff !important;
  border-top: 1px solid #ccc;
}
.premium .section-body {
  max-width: initial;
}
.section-premium {
  overflow: hidden;
}
.section-premium a {
  margin-top: 30px;
}
.section-premium .sliders {
  width: 1000vw;
  height: 100%;
}
.section-premium .slide {
  width: 100vw;
  height: 100%;
  display: inline-block;
}
.section-premium .slidearea {
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
  max-width: 1140px;
  border-bottom: 1px solid #ccc;
  margin: auto;
  padding-bottom: 40px;
}
.section-premium--left {
  flex: 1;
  text-align: right;
}
.section-premium--left img {
  width: 300px;
  margin-right: 30px;
}
.section-premium--right {
  flex: 1;
}
.section-premium--item {
  display: flex;
  margin-bottom: 20px;
}
.section-premium--item img {
  width: 20px;
  height: 20px;
  margin-right: 20px;
}
.section-premium--item div {
  flex: 1;
  color: #999;
  line-height: 20px;
}
.section-premium--item div h4 {
  color: #000;
  font-size: 17px;
  font-weight: 600;
}

.section-premium .sliders-pointers {
  width: 100vw;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}
.section-premium .pointer {
  width: 15px;
  height: 15px;
  border: 2px solid #b28756;
  border-radius: 8px;
  margin-left: 5px;
  margin-right: 5px;
  cursor: pointer;
}
.section-premium .pointer.active {
  background-color: #b28756;
}

.section-facts {
  display: flex;
}
.section-fact {
  flex: 1;
  text-align: center;
  padding: 15px;
}
.section-fact h3 {
  color: #b28756;
  font-size: 45px;
}
.section-fact-line {
  width: 20px;
  border-bottom: 2px solid #b28756;
  margin: auto;
}
.section-fact h4 {
  margin-top: 20px;
  text-transform: uppercase;
  font-size: 18px;
}
.section-fact p {
  margin-top: 10px;
  font-size: 13px;
  color: #999;
}

.section-share {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background-color: #fff;
  color: #999;
}
.section-share--legend {
  display: flex;
  align-items: center;
  margin-right: 40px;
}
.section-share--legend img {
  margin-right: 10px;
}
.section-share--item {
  font-size: 12px;
  margin-right: 20px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.section-share--icon {
  width: 30px;
  height: 30px;
  border-radius: 15px;
  background-color: #ccc;
  margin-right: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-share--icon img {
  height: 12px;
}
.section-share--icon.twitter {
  background-color: #34c5f0;
}
.section-share--icon.linkedin {
  background-color: #127cb4;
}
.section-share--icon.facebook {
  background-color: #336297;
}
.section-share--icon.googleplus {
  background-color: #e74237;
}
.section-share--icon.pinterest {
  background-color: #b71c29;
}

.section-contact {
  max-width: 450px;
  margin: auto;
  text-align: center;
}
.section-contact input[type="text"],
.section-contact textarea {
  display: block;
  width: 100%;
  height: 40px;
  border: 0;
  background: transparent;
  border-bottom: 1px solid #ccc;
  outline: 0;
  margin-top: 10px;
}
.section-contact textarea {
  height: 100px;
  resize: none;
}
.section-contact--split {
  display: flex;
}
.section-contact--split input:first-child {
  margin-right: 20px;
}

.section-map {
  background-size: cover;
  background-position: center;
}
.section-map--area {
  width: 100vw;
  max-width: 1140px;
  margin: auto;
  height: 220px;
}
.section-map--info {
  width: 50%;
  padding: 30px;
  background-color: #fff;
  color: #000;
}
.section-map--info-item {
  display: flex;
  align-items: center;
  color: #999;
  margin-bottom: 10px;
}
.section-map--info-item-img {
  width: 30px;
  height: 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  background-color: #999;
  border-radius: 15px;
  margin-right: 15px;
}
.section-map--info-item-img img {
  width: 15px;
  height: auto;
}

.vertical-buttons {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  //gap: 10px;
  z-index: 1000;
}

.vertical-buttons a {
  padding: 8px 8px;
  border: none;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s;
}

.vertical-buttons a:hover {
  background-color: #2980b9;
}

/*
TABLET
*/
@media (min-width: 450px) and (max-width: 800px) {
  .logo {
    margin-left: 30px;
  }

  .section-aboutus {
    flex-direction: column;
  }

  .section-aboutus--left {
    margin-left: 30px;
    margin-right: 30px;
    margin-bottom: 30px;
  }

  .section-aboutus--right {
    width: auto;
  }

  .section-services {
    flex-wrap: wrap;
  }
  .section-service {
    min-width: 50%;
    margin-bottom: 30px;
  }
  .section-service:first-child {
    border-left: 0;
  }

  .section-team {
    max-width: 580px;
  }

  .section-price {
    flex-wrap: wrap;
  }
  .section-price--item {
    margin-left: 20px;
    min-width: calc(50% - 40px);
    margin-bottom: 20px;
  }
  .section-price--item:last-child {
    margin-right: 20px;
  }

  .section-facts {
    flex-wrap: wrap;
  }
  .section-fact {
    min-width: 50%;
  }

  .section-map {
    padding-left: 30px;
    padding-right: 30px;
  }
  .section-map--area {
    width: auto;
  }
  .section-map--info {
    width: auto;
  }
  .section-map--info-item {
    margin-bottom: 20px;
  }
  .section-map--info-item:last-child {
    margin-bottom: 0;
  }
}

/*
MOBILE
*/
@media (max-width: 450px) {
  .logo {
    margin-left: 30px;
  }

  .logoimg img {
    width: 100%;
    height: 100%;
  }

  .tab-container {
    padding: 20px;
  }

  .section-aboutus {
    flex-direction: column;
  }
  .section-aboutus--left {
    margin-left: 30px;
    margin-right: 30px;
    margin-bottom: 30px;
  }

  .section-aboutus--right {
    width: auto;
    margin-left: 30px;
    margin-right: 30px;
  }
  .section-aboutus--right img {
    width: 100%;
  }

  .section-services {
    flex-wrap: wrap;
  }
  .section-service {
    min-width: 100%;
    margin-bottom: 30px;
  }
  .section-service:first-child {
    border-left: 0;
  }

  .section-projects--filters {
    margin-left: 30px;
    margin-right: 30px;
  }
  .section-projects--photo {
    width: 320px;
  }
  .section-projects--photoarea {
    width: 300px;
    height: 190px;
  }

  .section-team {
    max-width: 280px;
  }

  .section-companies--area {
    flex-wrap: wrap;
  }
  .section-company {
    min-width: 50%;
    margin-bottom: 20px;
  }

  .section-price {
    flex-wrap: wrap;
  }
  .section-price--item {
    margin-left: 20px;
    min-width: calc(100% - 40px);
    margin-bottom: 20px;
  }
  .section-price--item:last-child {
    margin-right: 20px;
  }

  .section-premium .slidearea {
    flex-direction: column;
  }
  .section-premium--left {
    text-align: center;
    margin-bottom: 30px;
  }
  .section-premium--right {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-facts {
    flex-wrap: wrap;
  }
  .section-fact {
    min-width: 100%;
  }

  .section-share {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .section-share--legend {
    width: 100vw;
    margin: 0;
    margin-bottom: 30px;
    justify-content: center;
  }
  .section-share--item {
    min-width: 50%;
    max-width: 50%;
    margin: 0;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 20px;
  }

  .section-contact {
    max-width: 100vw;
    margin-left: 20px;
    margin-right: 20px;
  }
  .section-contact--split {
    flex-direction: column;
  }

  .section-map {
    padding: 0;
    padding-bottom: 250px;
    height: 300px;
  }
  .section-map iframe {
    width: 100%;
  }
  .section-map--area {
    width: auto;
  }
  .section-map--info {
    width: auto;
  }
  .section-map--info-item {
    margin-bottom: 20px;
  }
  .section-map--info-item:last-child {
    margin-bottom: 0;
  }

  .section-box {
    display: flex;
    flex-direction: column; /* Colocar os itens em uma coluna */
    justify-content: center; /* Centralizar os itens verticalmente */
    align-items: center; /* Centralizar os itens horizontalmente */
  }

  .section-box--item {
    flex: 1;
    width: 80%;
    margin: 0 auto 15px;
    padding: 20px;
    justify-content: center;
    display: inline-flex;
  }

  .section-box--item:last-child {
    margin-right: auto;
  }

  .footer--area {
    flex-direction: column;
    margin-bottom: 60px;
  }
  .footer--item {
    margin-bottom: 20px;
  }
  .footer-social {
    justify-content: center;
  }
}

/* Estilos de alto contraste */
.high-contrast body * {
  background-color: black !important;
  color: yellow;
}

.high-contrast a {
  color: cyan;
}

.high-contrast h1,
.high-contrast h2 {
  color: white;
}

/* Politica de privacidade */
.policy-paragraph {
  text-align: justify;
  margin-bottom: 10px;
}

.policy-ul {
  margin: 20px;
}

.policy-area h1,
.policy-area h2,
.policy-area h3,
.policy-area h4 {
  margin-bottom: 10px;
}

.form-container {
  background-color: #edecec;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 1140px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;

  .form-group {
    flex: 1 1 20%;
    min-width: 100px;
    display: flex;
    flex-direction: column;
  }

  label {
    margin-bottom: 5px;
  }

  input, select {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }

  button {
    padding: 10px;
    background-color: var(--colorEntity);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    flex: 1 1 100%;
    margin-top: 10px;
  }

  button:hover {
    background-color: #0056b3;
  }

  @media (max-width: 450px) {
    .form-group {
      flex: none;
      width: 100%;
    }
  }
}

/* tabela 2 */
.table-default {
  font-weight: 400;
  width: 100%;
  background-color: #ffffff;
  color: #000000;
  
  thead {
    display: none;
    font-weight: 500;
    background-color: #bfbfbf
  }
  
  tbody {
    tr {
      border: 1px solid #dad6eb;
      border-radius: 5px;
      display: block;
      padding: 30px;
      margin-bottom: 30px;
      
      td {
        display: block;
        font-weight: 500;
        padding: 5px;
        position: relative;
        text-align: right;
        
        button {
          background: #927cfe;
          border: none;
          border-radius: 20px;
          box-shadow: 0 4px 8px transparentize(#222, .8);
          bottom: -30px;
          color: #fff;
          font-family: 'Roboto', sans-serif;
          font-weight: 700;
          left: 50%;
          padding: 10px 0;
          position: absolute;
          transform: translate(-50%, 50%);
          transition: background .12s ease-out;
          width: 50%;
          
          &:hover,
          &:focus {
            background: lighten(#927cfe, 5%);
            cursor: pointer;
          }
        }
        
        &:before {
          color: #8a8a87;
          content: attr(data-label);
          font-weight: 400;
          left: 5px;
          position: absolute;
        }

        p {
          text-align: justify;
        }
      }
    }
  }
}

@media all and (min-width: 768px) {
  .table-default {
    border: 1px solid #eee;
    border-collapse: collapse;
    max-width: 1140px;
    text-align: left;
    width: 100%;
    
    thead {
      display: table-header-group;
      
      th {
        padding: 10px;
      }
    }
    
    tbody {
      font-size: 1.115em;
      
      tr {
        border: none;
        display: table-row;
        
        &:nth-child(odd) {
          background: #eee;
        }
        
        td {
          display: table-cell;
          font-weight: 400;
          padding: 10px;
          text-align: left;
          
          button {
            display: inline-block;
            padding: 10px 15px;
            position: initial;
            transform: translate(0);
            width: auto;
          }
          
          &:before {
            display: none;
          }
        }
      }
    }
  }
}

@media (max-width: 450px) {
  .table-default p {
    width: 70%;
    right: 0;
    margin-left: auto;
    text-align: justify;
  }
}