:root {
  --radius: 10px;
  --orange-600: #E54318;
  --gray-600: #666;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
  list-style-type: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  border: 0;
  background-color: transparent;
  cursor: pointer;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  background-color: var(--background);
  color: #494949;
}

a {
  text-decoration: none;
  display: inline-block;
}

.swiper-pagination-bullet {
  width: 1.6rem !important;
  height: 1.6rem !important;
}

.swiper-pagination-bullet-active {
  background-color: var(--orange-600) !important;
}

@media (max-width: 1024px) {
  h2 {
    font-size: 2.4rem !important;
  }
  p {
    font-size: 1.6rem !important;
    line-height: 2rem !important;
  }
}
p {
  text-align: justify;
}

.container {
  width: 100%;
  max-width: 131rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

h1 {
  font-size: 4rem;
}

h2 {
  font-size: 3.2rem;
}

h3 {
  font-size: 2.8rem;
}

h4 {
  font-size: 2.4rem;
}

h5 {
  font-size: 2rem;
}

h6 {
  font-size: 1.6rem;
}

p {
  font-size: 1.8rem;
}

a {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--gray-scale-03);
}

ul li {
  font-size: 1.8rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  font-family: "Lato", sans-serif;
  color: var(--gray-scale-02);
}

p,
li {
  font-weight: 400;
  color: var(--gray-scale-03);
}

.contact-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  padding: 2rem 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  -webkit-animation: pulse 1.5s infinite;
  animation: pulse 1.5s infinite;
  z-index: 1000;
  -webkit-transition: opacity 0.3;
  transition: opacity 0.3;
  white-space: nowrap;
}
.contact-button:hover {
  opacity: 0.6;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.modal {
  display: none;
  position: fixed;
  z-index: 1001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.modal-content {
  background-color: #fefefe;
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.whatsapp-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  font-size: 16px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.whatsapp-btn:hover {
  opacity: 0.6;
}
.whatsapp-btn svg {
  width: 32px;
  height: 32px;
  display: block;
  margin-right: 1rem;
}

.whatsapp-normal {
  background-color: #25D366;
  color: white;
}
.whatsapp-normal svg, .whatsapp-normal path {
  fill: #fff;
}

.whatsapp-urgente {
  background-color: #FF6B00;
  color: white;
}

.whatsapp-btn img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

@media (max-width: 600px) {
  .contact-button {
    bottom: 15px;
    right: 15px;
  }
}
.btn-primary {
  padding: 1.6rem 3rem;
  background-color: var(--orange-600);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 6px;
  border-radius: var(--radius);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.btn-primary:hover {
  opacity: 0.6;
}

.deposition {
  padding: 3.8rem;
  border-radius: var(--radius);
  background: #FFF;
  -webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
  gap: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.deposition .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2rem;
}
.deposition .top .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.2rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}
.deposition .top .text strong {
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  text-align: center;
  display: block;
}
.deposition .top .text span {
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  display: block;
}
.deposition p {
  color: #616161;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
}

.noticia {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: var(--radius);
  background: #FFF;
  padding-bottom: 2rem;
  -webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.noticia img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 39.2rem;
}
.noticia span {
  display: block;
  color: #494949;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  width: 100%;
  padding: 0rem 4.7rem;
  margin-top: 2rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}
.noticia .more {
  margin-top: 1.5rem;
  color: #E54318;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.noticia .more:hover {
  opacity: 0.6;
}
@media (max-width: 1024px) {
  .noticia img {
    height: 35.7rem;
  }
  .noticia span {
    padding: 2rem;
    font-size: 2rem;
    line-height: 3rem;
  }
  .noticia a {
    margin: 0px;
  }
}

.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 9rem;
  background: #FFF;
}
.header .logo img {
  max-width: 22rem;
  width: 100%;
}
.header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.header .container nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 6rem;
}
.header .container nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 5rem;
}
.header .container nav ul li,
.header .container nav ul a {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  color: var(--gray-600);
  text-transform: uppercase;
}
.header .container nav ul a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header .container nav ul a:hover {
  opacity: 0.6;
}
.header .open {
  display: none;
}
@media (max-width: 1024px) {
  .header .open {
    display: block;
  }
  .header .container nav {
    display: none;
  }
}

.menu-mobile .overlay {
  position: fixed;
  z-index: 2023;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
  pointer-events: none;
}
.menu-mobile .content {
  position: fixed;
  left: -50rem;
  top: 0;
  z-index: 2024;
  border-radius: var(--radius);
  background: #FFF;
  -webkit-box-shadow: 5px 10px 50px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 5px 10px 50px 0px rgba(0, 0, 0, 0.3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
  pointer-events: none;
  width: 100%;
  max-width: 36.4rem;
  padding: 2rem;
  height: 60vh;
  gap: 2rem;
}
.menu-mobile .content .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.menu-mobile .content .logo img {
  max-width: 22rem;
  width: 100%;
}
.menu-mobile .content nav {
  margin-top: 5.6rem;
}
.menu-mobile .content nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.menu-mobile .content nav ul li:not(:first-of-type) {
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid #C4C4C4;
}
.menu-mobile .content nav ul li,
.menu-mobile .content nav ul li a {
  color: #666;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
}
.menu-mobile .content .btn-primary {
  margin-top: auto;
}
.menu-mobile.active .overlay {
  opacity: 1;
  pointer-events: all;
}
.menu-mobile.active .content {
  left: 0;
  opacity: 1;
  pointer-events: all;
}

.footer {
  padding: 1.4rem;
  background-color: #7D2A14;
}
.footer .container p {
  color: #FFF;
  text-align: center;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 400;
}
@media (max-width: 1024px) {
  .footer .container p {
    font-size: 1.2rem !important;
  }
}

.home .s-hero {
  background: url("../assets/bg-home.png") no-repeat center center;
  background-size: cover;
  padding: 15.5rem 0rem;
}
.home .s-hero .container h1,
.home .s-hero .container p {
  width: 100%;
  max-width: 77.8rem;
}
.home .s-hero .container h1 {
  color: #FFF;
  text-transform: uppercase;
  font-size: 6.4rem;
  font-style: normal;
  font-weight: 900;
}
.home .s-hero .container p {
  margin-top: 1rem;
  color: #FFF;
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.6rem;
}
.home .s-cards {
  padding: 15rem 0rem;
}
.home .s-cards .container .items {
  position: relative;
  overflow: hidden;
  padding-bottom: 4rem;
}
.home .s-cards .container .items .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: justify;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1rem;
  border-radius: 10px;
  background: #FFF;
  -webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
  padding: 6rem 3.5rem;
}
.home .s-cards .container .items .item img {
  width: 5rem;
  height: auto;
}
.home .s-cards .container .items .item span {
  color: #494949;
  text-align: center;
  font-family: Lato;
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 700;
  width: 100%;
  max-width: 29rem;
  text-transform: uppercase;
}
.home .s-cards .container .items .item p {
  color: #616161;
  text-align: justify;
  font-family: Lato;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
}
.home .s-cards .container .items .item svg {
  fill: var(--orange-600);
  width: 4.2rem;
  height: 4.2rem;
}
.home .s-box {
  padding: 19.5rem;
  background: url("../assets/bg-box.png") no-repeat center center;
  background-size: cover;
}
.home .s-box .container .box {
  border-radius: var(--radius);
  background-color: #fff;
  padding: 7rem;
  width: 100%;
  max-width: 83.5rem;
}
.home .s-box .container .box h2 {
  color: #7D2A14;
  font-family: Lato;
  font-size: 50px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}
.home .s-box .container .box span {
  color: #7D2A14;
  font-family: Lato;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 42px;
  display: block;
  margin-top: 1rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
}
.home .s-box .container .box p {
  color: #616161;
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.4rem;
}
.home .s-solutions {
  padding: 14.3rem;
}
.home .s-solutions .container h2 {
  color: #494949;
  font-size: 4rem;
  font-style: normal;
  font-weight: 700;
  display: block;
  text-align: center;
  text-transform: uppercase;
}
.home .s-solutions .container > p {
  margin-top: 1rem;
  color: #616161;
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.4rem;
  display: block;
  text-align: center;
}
.home .s-solutions .container .items {
  margin-top: 5.7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2rem;
}
.home .s-solutions .container .items .item {
  padding: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2rem;
  border-radius: var(--radius);
  background: #FFF;
  -webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
}
.home .s-solutions .container .items .item .number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #FFF;
  font-size: 5rem;
  font-style: normal;
  font-weight: 500;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 10.2rem;
  height: 10.2rem;
  background-color: #7D2A14;
  border-radius: 50%;
}
.home .s-solutions .container .items .item .text span {
  color: #494E60;
  font-family: Lato;
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
}
.home .s-solutions .container .items .item .text p {
  margin-top: 1rem;
  color: #494E60;
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
}
.home .s-contact {
  position: relative;
  height: 100rem;
  overflow: hidden;
  padding-left: 50vw;
  background: #FFFAF9;
}
.home .s-contact > img {
  position: absolute;
  z-index: 1;
  right: 50vw;
  top: 0;
  bottom: 0;
}
.home .s-contact .container {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.home .s-contact .container .text {
  width: 100%;
  max-width: 55.7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.home .s-contact .container .text h2 {
  color: #494949;
  text-transform: uppercase;
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
}
.home .s-contact .container .text p {
  color: #494949;
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  margin-top: 1rem;
}
.home .s-contact .container .text ul {
  margin: 2rem 0rem 0rem 2rem;
}
.home .s-contact .container .text ul li {
  list-style: disc;
}
.home .s-contact .container .text .btn-primary {
  margin-top: 4rem;
  width: 100%;
}
.home .s-depositions {
  padding: 10rem 0rem;
}
.home .s-depositions .container h2 {
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #494949;
  font-size: 4rem;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
}
.home .s-depositions .container p {
  text-align: justify;
  color: #494949;
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  margin-top: 1rem;
}
.home .s-depositions .container .slide {
  margin-top: 5.6rem;
  overflow: hidden;
  padding: 2rem;
  padding-bottom: 4rem;
  position: relative;
}
.home .s-burocracia {
  padding: 13rem;
  background: url("../assets/bg-burocracia.png") no-repeat center center;
  background-size: cover;
}
.home .s-burocracia .container {
  background-color: #fff;
  padding-top: 3.8rem;
  padding-bottom: 3.8rem;
  border-radius: var(--radius);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 1rem;
}
.home .s-burocracia .container h2 {
  color: #7D2A14;
  text-transform: uppercase;
  text-align: center;
  font-size: 50px;
  font-style: normal;
  font-weight: 500;
  width: 100%;
  max-width: 95.8rem;
}
.home .s-burocracia .container h2 strong {
  font-weight: 700;
}
.home .s-burocracia .container p {
  color: #494949;
  text-align: center;
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  width: 100%;
  max-width: 95.8rem;
}
.home .s-burocracia .container .btn-primary {
  margin-top: 1rem;
  width: 100%;
  max-width: 51rem;
}
.home .s-noticias {
  padding-top: 13rem;
}
.home .s-noticias .container h2 {
  color: #494949;
  font-size: 4rem;
  font-style: normal;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}
.home .s-noticias .container p {
  color: #494949;
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.4rem;
  text-align: center;
  margin-top: 1rem;
}
.home .s-noticias .container .slide {
  margin-top: 5.6rem;
  padding: 2rem;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
}
.home .s-questions {
  background: #FFFAF9;
  padding: 12.1rem 0rem;
}
.home .s-questions .container > h2 {
  color: #494949;
  font-size: 4rem;
  font-style: normal;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}
.home .s-questions .container > p {
  color: #494949;
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.4rem;
  text-align: center;
  margin-top: 1rem;
}
.home .s-questions .container .questions {
  margin-top: 5.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4rem;
}
.home .s-questions .container .questions .question .title {
  border-radius: 2rem;
  background: #FFF;
  -webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 4rem;
}
.home .s-questions .container .questions .question .title .toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 3.1rem;
  height: 3.1rem;
  cursor: pointer;
}
.home .s-questions .container .questions .question .title span {
  color: #494E60;
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
}
.home .s-questions .container .questions .question .title svg:first-of-type {
  display: block;
}
.home .s-questions .container .questions .question .title svg:last-of-type {
  display: none;
}
.home .s-questions .container .questions .question .description {
  width: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  height: 0px;
  opacity: 0;
  visibility: hidden;
}
.home .s-questions .container .questions .question .description p {
  color: #494E60;
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 700;
}
.home .s-questions .container .questions .question.active .title svg:first-of-type {
  display: none;
}
.home .s-questions .container .questions .question.active .title svg:last-of-type {
  display: block;
}
.home .s-questions .container .questions .question.active .description {
  height: auto;
  padding: 4rem;
  visibility: visible;
  opacity: 1;
}
@media (max-width: 1024px) {
  .home .s-hero .container h1 {
    font-size: 2.4rem;
    line-height: 3rem;
  }
  .home .s-hero .container p {
    font-size: 1.6rem;
    line-height: 2rem;
  }
  .home .s-cards {
    padding: 7.4rem 0rem;
  }
  .home .s-cards .container span {
    font-size: 2.4rem;
    line-height: 3.2rem;
  }
  .home .s-box {
    padding: 7.4rem 2rem;
  }
  .home .s-box .container .box {
    padding: 2rem;
  }
  .home .s-box .container .box span {
    font-size: 2rem;
    line-height: 2.4rem;
  }
  .home .s-solutions {
    padding: 7.4rem 0rem;
  }
  .home .s-solutions .container .items .item {
    padding: 2rem;
  }
  .home .s-solutions .container .items .item .number {
    font-size: 3.2rem;
    width: 6.8rem;
    height: 6.8rem;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  .home .s-solutions .container .items .item .text span {
    font-size: 1.6rem;
    line-height: 2.4rem;
  }
  .home .s-solutions .container .items .item .text p {
    font-size: 1.2rem;
    line-height: 1.4rem;
  }
  .home .s-contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0px;
    height: initial;
  }
  .home .s-contact img {
    position: initial;
    width: 100%;
    height: auto;
  }
  .home .s-contact .container .text {
    padding: 7.2rem 0rem;
    height: initial;
    text-align: center;
  }
  .home .s-contact .container .text ul {
    text-align: initial;
  }
  .home .s-depositions {
    padding: 7.4rem 0rem;
  }
  .home .s-depositions .container h2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
  }
  .home .s-burocracia {
    padding: 7.4rem 2rem;
  }
  .home .s-noticias {
    padding-top: 7.4rem;
  }
  .home .s-noticias .container .slide {
    margin-top: 2rem;
  }
  .home .s-questions {
    padding: 7.4rem 0rem;
  }
  .home .s-questions .container .questions .question .title {
    padding: 2rem;
  }
  .home .s-questions .container .questions .question .title span {
    font-size: 1.6rem;
  }
  .home .s-questions .container .questions .question.active .description {
    padding: 2rem 2rem;
  }
}

.blog .s-hero {
  background: url("../assets/bg-blog.png") no-repeat center center;
  background-size: cover;
  padding: 15.5rem 0rem;
}
.blog .s-hero .container h1,
.blog .s-hero .container p {
  width: 100%;
  max-width: 77.8rem;
}
.blog .s-hero .container h1 {
  color: #FFF;
  text-transform: uppercase;
  font-size: 6.4rem;
  font-style: normal;
  font-weight: 900;
}
.blog .s-hero .container p {
  margin-top: 1rem;
  color: #FFF;
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.6rem;
}
.blog .s-noticias {
  padding: 8rem 0rem;
}
.blog .s-noticias .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.blog .s-noticias .container h2 {
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #494949;
  font-size: 4rem;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
}
.blog .s-noticias .container p {
  text-align: center;
  color: #494949;
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  margin-top: 1rem;
}
.blog .s-noticias .container .noticias .alm-listing {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4rem;
}
.blog .s-noticias .alm-btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.blog .s-noticias .alm-btn-wrap .btn-primary {
  margin: 0 auto;
  margin-top: 4rem;
}
.blog .s-noticias .alm-btn-wrap .btn-primary.done {
  display: none;
}
@media (max-width: 1024px) {
  .blog .s-hero .container h1 {
    font-size: 2.4rem;
    line-height: 3rem;
  }
  .blog .s-hero .container p {
    font-size: 1.6rem;
    line-height: 2rem;
  }
  .blog .s-noticias .container .noticias .alm-listing {
    grid-template-columns: 1fr;
  }
}

.post .s-post {
  padding-bottom: 5.6rem;
}
.post .s-post .cover {
  height: 60rem;
}
.post .s-post .cover img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.post .s-post h1 {
  margin-top: 5.6rem;
  color: #494949;
  text-align: center;
  font-size: 5rem;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
}
.post .s-post .details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
}
.post .s-post .details .author {
  color: #353D44;
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
}
.post .s-post .details .date {
  color: #FFF;
  text-align: center;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  padding: 1.2rem;
  background-color: var(--orange-600);
  border-radius: var(--radius);
}
.post .s-post .details .share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2rem;
}
.post .s-post .details .share span {
  color: #353D44;
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
}
.post .s-post .details .share ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
}
.post .s-post .details .share ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.post .s-post .content {
  margin-top: 5.6rem;
  color: #494949;
  width: 100%;
}
.post .s-post .content blockquote {
  border-left: 2px solid rgba(92, 31, 166, 0.15);
  padding-left: 2.4rem;
  margin-bottom: 4rem;
}
.post .s-post .content blockquote p {
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 175%;
  margin-bottom: 0;
}
.post .s-post .content h1,
.post .s-post .content h2,
.post .s-post .content h3,
.post .s-post .content h4,
.post .s-post .content h5,
.post .s-post .content h6 {
  margin-bottom: 2.4rem;
}
.post .s-post .content p {
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 175%;
  margin-bottom: 1.6rem;
}
.post .s-post .content p a {
  text-decoration: underline;
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
}
.post .s-post .content p a:hover {
  -webkit-filter: brightness(0.5);
  filter: brightness(0.5);
}
.post .s-post .content ul {
  padding-left: 1.5rem;
  margin-bottom: 4rem;
}
.post .s-post .content ul li {
  list-style-type: disc;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 175%;
}
.post .s-post .content ul li:not(:last-child) {
  margin-bottom: 1.6rem;
}
@media (max-width: 1024px) {
  .post .s-post .cover {
    height: 41rem;
  }
  .post .s-post h1 {
    font-size: 3.2rem;
  }
  .post .s-post .details {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2rem;
  }
  .post .s-post .details .author {
    font-size: 2rem;
  }
  .post .s-post .details .date {
    font-size: 1.6rem;
  }
  .post .s-post .details .share {
    font-size: 1.6rem;
  }
}

.contact {
  padding-bottom: 5.6rem;
}
.contact .s-hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5.6rem;
}
.contact .s-hero .cover {
  height: 60rem;
}
.contact .s-hero .cover img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.contact .s-hero .container {
  text-align: center;
}
.contact .s-hero .container h1 {
  color: #494949;
  font-size: 4rem;
  font-style: normal;
  font-weight: 500;
  text-transform: uppercase;
}
.contact .s-hero .container > span {
  display: block;
  font-size: 2rem;
  color: #494949;
  margin-top: 2rem;
}
.contact .s-hero .container div.social {
  margin: 0 auto;
  width: 100%;
  max-width: 41rem;
  margin-top: 5.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  gap: 2rem;
  text-align: start;
}
.contact .s-hero .container div.social a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 1rem;
}
.contact .s-hero .container div.social a svg {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.contact .s-hero .container div.social a span {
  font-weight: normal;
  font-size: 2rem;
  color: #494949;
}
.contact .s-hero .container .wpp {
  margin-top: 5.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2rem;
}
.contact .s-hero .container .wpp > span {
  color: #494949;
  font-size: 3rem;
  font-style: normal;
  font-weight: 700;
}
.contact .s-hero .container .wpp .btn-primary {
  margin: 0 auto;
  width: 100%;
  max-width: 51rem;
}
.contact .s-hero .container .wpp .btn-primary span {
  font-size: 2.4rem;
}
@media (max-width: 1024px) {
  .contact .s-hero .cover {
    height: 39.4rem;
  }
  .contact .s-hero .cover img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .contact .s-hero .container h1 {
    font-size: 3.2rem;
  }
  .contact .s-hero .container .wpp span {
    font-size: 2.4rem;
  }
  .contact .s-hero .container .wpp .btn-primary span {
    font-size: 2rem;
  }
}