@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.6rem;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  color: #3F484B;
}
@media (max-width: 575px) {
  body {
    font-size: 1.6rem;
  }
}

a {
  text-decoration: none;
}

.page-padding {
  padding: 6rem 0;
}
@media (max-width: 991px) {
  .page-padding {
    padding: 6rem 0;
  }
}

.title {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2rem;
}
.title--hero {
  font-size: 4.8rem;
  line-height: 1.15;
  letter-spacing: -1px;
}
@media (max-width: 991px) {
  .title--hero {
    font-size: 3.6rem;
  }
}
.title--section {
  font-size: 3.2rem;
  color: #004A57;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .title--section {
    font-size: 2.8rem;
  }
}
.title--tertiary {
  color: #FE4600;
}

.subtitle {
  color: #c8c8c8;
  font-size: 1.6rem;
  line-height: 1.6;
}

@keyframes scaleUpScaleDown {
  0% {
    transform: translateZ(-1px) scale(1);
  }
  80% {
    transform: translateZ(-1px) scale(1.4);
    opacity: 0.4;
  }
  100% {
    transform: translateZ(-1px) scale(1.5);
    opacity: 0;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 0.8rem 2rem;
  line-height: 1;
  border-radius: 8px;
  transition: all 0.2s;
  text-decoration: none;
}
.btn--white {
  color: #fff;
}
.btn--white:hover {
  color: #fff;
}
.btn--bg-white {
  background-color: #fff;
}
.btn--bg-white:hover {
  background-color: #d9d9d9;
}
.btn--bg-gray {
  background-color: #eeeeee;
}
.btn--bg-gray:hover {
  background-color: #c8c8c8;
}
.btn--bg-primary {
  background-color: #119889;
  color: #fff;
}
.btn--bg-primary:hover {
  background-color: #0c6a60;
  color: #fff;
}
.btn--bg-secondary {
  background-color: #004A57;
  color: #fff;
}
.btn--bg-secondary:hover {
  background-color: #001f24;
  color: #fff;
}
.btn--bg-tertiary {
  background-color: #FE4600;
  color: #fff;
}
.btn--bg-tertiary:hover {
  background-color: #cb3800;
  color: #fff;
}
.btn--hero {
  padding: 1.8rem 3rem;
  border-radius: 4px;
  font-size: 1.4rem;
  min-width: 280px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  gap: 1rem;
}
.btn--hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(17, 152, 137, 0.2);
}
.btn--lg {
  padding: 1.4rem 2.8rem;
  font-size: 1.5rem;
  border-radius: 4px;
}
.btn--glass {
  background-color: rgba(255, 255, 255, 0.25);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.btn--glass:hover {
  background-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.icon {
  width: 2.4rem;
  height: 2.4rem;
  font-size: 1.2rem;
  border: 2px solid #fff;
  border-radius: 4px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.social__item {
  color: #fff;
}

.form-group {
  margin-bottom: 2rem;
}
.form-group label {
  display: block;
  color: #3F484B;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.form-group .wpcf7-form-control-wrap {
  display: block;
}
.form-group input:not([type=file], [type=submit], [type=checkbox], [type=radio]),
.form-group textarea {
  padding: 1.4rem 1.5rem;
  width: 100%;
  border: 1px solid rgba(200, 200, 200, 0.5);
  background-color: #fff;
  color: #292929;
  font-size: 1.4rem;
  border-radius: 4px;
  transition: all 0.3s;
}
.form-group input:not([type=file], [type=submit], [type=checkbox], [type=radio])::placeholder,
.form-group textarea::placeholder {
  color: #c8c8c8;
}
.form-group input:not([type=file], [type=submit], [type=checkbox], [type=radio]):focus,
.form-group textarea:focus {
  outline: none;
  border-color: #119889;
  box-shadow: 0 0 0 3px rgba(17, 152, 137, 0.1);
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.wpcf7-submit {
  border: none;
  cursor: pointer;
  width: 100%;
}

.form-submit {
  position: relative;
  text-align: center;
}
.form-submit .btn {
  min-width: 12rem;
}
.form-submit .wpcf7-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  transform: translate(-50%, -50%);
}

.fixed-whatsapp {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: #25d366;
  display: flex;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transform-style: preserve-3d;
  transition: all 0.2s;
}
.fixed-whatsapp i {
  font-size: 2.8rem;
  color: #fff;
}
.fixed-whatsapp::after {
  content: "";
  position: absolute;
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 50%;
  background-color: #128c7e;
  z-index: -999;
  animation: scaleUpScaleDown 2s ease-in infinite both;
  transform: translateZ(-1px);
  filter: blur(1px);
}
.fixed-whatsapp:hover {
  transform: scale(1.2);
}

.erp-card {
  background-color: #fff;
  border-radius: 8px;
  padding: 3rem 2.5rem;
  height: 100%;
  border: 1px solid #e9e9e9;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.erp-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(25, 25, 25, 0.05);
}
.erp-card__icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  margin-bottom: 2.5rem;
  font-size: 1.6rem;
}
.erp-card__icon--primary {
  background-color: #119889;
  color: #fff;
}
.erp-card__icon--lime {
  background-color: #00CFC9;
  color: #fff;
}
.erp-card__icon--dark {
  background-color: #0098D4;
  color: #fff;
}
.erp-card__icon--tertiary {
  background-color: #FE4600;
  color: #fff;
}
.erp-card__title {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.6rem;
  color: #004A57;
  margin-bottom: 1.5rem;
  font-weight: 400;
}
.erp-card__title--tertiary {
  color: #FE4600;
}
.erp-card__text {
  color: #3F484B;
  font-size: 1.6rem;
  line-height: 1.6;
  margin: 0;
}

.footer {
  background-color: #F0EDED;
  padding-top: 8rem;
}
.footer__top {
  padding-bottom: 6rem;
}
.footer__title {
  color: #004A57;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.footer__desc {
  color: #3F484B;
  font-size: 1.6rem;
  line-height: 1.6;
  margin: 0;
}
.footer__desc--small {
  font-size: 1.2rem;
}
.footer__nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__nav li {
  margin-bottom: 1.2rem;
}
.footer__nav li:last-child {
  margin-bottom: 0;
}
.footer__nav li a {
  color: #3F484B;
  font-size: 1.6rem;
  text-decoration: none;
  transition: color 0.3s;
}
.footer__nav li a:hover {
  color: #119889;
}
.footer__newsletter .newsletter-form__group {
  display: flex;
  align-items: flex-start;
  position: relative;
}
.footer__newsletter .newsletter-form__group .wpcf7-form-control-wrap {
  flex: 1;
  display: block;
  min-width: calc(100% - 7.4rem);
}
.footer__newsletter .newsletter-form__group .wpcf7-form-control-wrap input {
  width: 100%;
  border: none;
  padding: 0 1.5rem;
  height: 4.8rem;
  font-size: 1.6rem;
  background-color: #fff;
  color: #292929;
}
.footer__newsletter .newsletter-form__group .wpcf7-form-control-wrap input::placeholder {
  color: #c8c8c8;
}
.footer__newsletter .newsletter-form__group .wpcf7-form-control-wrap input:focus {
  outline: none;
}
.footer__newsletter .newsletter-form__group .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  font-size: 1.2rem;
  margin-top: 0.5rem;
  color: #dc3545;
  display: block;
}
.footer__newsletter .newsletter-form__group .wpcf7-submit {
  border-radius: 0;
  padding: 0 2.5rem;
  height: 4.8rem;
  min-width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}
.footer__newsletter .newsletter-form__group .wpcf7-spinner {
  position: absolute;
  right: 1.5rem;
  top: 2.4rem;
  transform: translateY(-50%);
}
.footer__newsletter .wpcf7-response-output {
  margin: 1rem 0 0 0;
  font-size: 1.2rem;
  padding: 1rem;
  border-radius: 4px;
  line-height: 1.4;
}
.footer__social {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  background-color: rgba(0, 74, 87, 0.05);
  color: #004A57;
  font-size: 2.2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 74, 87, 0.15);
  text-decoration: none;
}
.footer__social-link i {
  transition: transform 0.3s ease;
}
.footer__social-link:hover {
  background-color: #119889;
  color: #fff;
  border-color: #119889;
  transform: translateY(-3px);
  box-shadow: 0 0.8rem 2rem rgba(17, 152, 137, 0.25);
}
.footer__social-link:hover i {
  transform: scale(1.1);
}
.footer__bottom {
  border-top: 1px solid rgba(200, 200, 200, 0.3);
  padding: 3rem 0;
}
.footer__copyright {
  color: #3F484B;
  font-size: 1.4rem;
  margin: 0;
}
.footer__legal {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 2rem;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .footer__legal {
    justify-content: center;
    margin-top: 1.5rem;
  }
}
.footer__legal li a {
  color: #3F484B;
  font-size: 1.4rem;
  text-decoration: none;
  transition: color 0.3s;
}
.footer__legal li a:hover {
  color: #119889;
}

.header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(25, 25, 25, 0.05);
  position: relative;
  z-index: 999;
  padding: 1rem 0;
}
@media (max-width: 991px) {
  .header {
    padding: 1.5rem 0;
  }
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
@media (max-width: 991px) {
  .header-content {
    width: auto;
    flex-grow: 1;
  }
}
.header-logo img {
  height: 55px;
  width: auto;
  display: block;
}
@media (max-width: 991px) {
  .header-logo img {
    height: 35px;
  }
}
@media (max-width: 991px) {
  .header-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s;
    background-color: #fff;
    box-shadow: 0 5px 10px rgba(25, 25, 25, 0.05);
  }
}
@media (max-width: 991px) {
  .header-nav.opened {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
.header-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 3rem;
}
@media (max-width: 991px) {
  .header-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
}
.header-nav ul li {
  /* Estilo ativo para a Home (ou item atual) */
  /* Botão Área do Cliente */
}
@media (max-width: 991px) {
  .header-nav ul li {
    width: 100%;
    border-bottom: 1px solid #e9e9e9;
  }
}
.header-nav ul li a {
  display: inline-block;
  color: #4b5563;
  font-weight: 500;
  font-size: 1.6rem;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}
@media (max-width: 991px) {
  .header-nav ul li a {
    display: block;
    padding: 1.5rem 2rem;
    width: 100%;
  }
}
.header-nav ul li a:hover {
  color: #119889;
}
.header-nav ul li.active > a {
  color: #119889;
  font-weight: 700;
}
.header-nav ul li.active > a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #119889;
}
@media (max-width: 991px) {
  .header-nav ul li.active > a::after {
    display: none;
  }
}
@media (max-width: 991px) {
  .header-nav ul li.highlighted {
    border-bottom: none;
    padding: 1.5rem 2rem;
  }
}
.header-nav ul li.highlighted a {
  background-color: #119889;
  color: #fff;
  padding: 1rem 2.4rem;
  border-radius: 8px;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
@media (max-width: 991px) {
  .header-nav ul li.highlighted a {
    text-align: center;
    padding: 1.5rem;
    display: block;
  }
}
.header-nav ul li.highlighted a:hover {
  background-color: #0c6a60;
  transform: translateY(-2px);
  color: #fff;
}
.header-nav ul li.highlighted a::after {
  display: none;
}
.header-nav__btn {
  height: 4rem;
  position: relative;
  cursor: pointer;
  display: none;
  align-items: center;
  margin-left: 2rem;
}
@media (max-width: 991px) {
  .header-nav__btn {
    display: flex;
  }
}
.header-nav__icon {
  position: relative;
  width: 3rem;
  height: 3rem;
}
.header-nav__icon-bar {
  position: absolute;
  width: 100%;
  height: 0.3rem;
  left: 0;
  background-color: #119889;
  border-radius: 3px;
  transition: all 0.3s ease;
}
.header-nav__icon-bar--1 {
  top: 0.6rem;
}
.header-nav__icon-bar--2 {
  top: 50%;
  transform: translateY(-50%);
}
.header-nav__icon-bar--3 {
  bottom: 0.6rem;
}
.header-nav__icon.opened .header-nav__icon-bar--1 {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.header-nav__icon.opened .header-nav__icon-bar--2 {
  opacity: 0;
  visibility: hidden;
}
.header-nav__icon.opened .header-nav__icon-bar--3 {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.banner {
  width: 100%;
  position: relative;
  z-index: 0;
  aspect-ratio: 1920/800;
  min-height: 50rem;
}
.banner-item {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
}
.banner-item__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  object-position: center;
}
.banner .owl-carousel {
  height: 100%;
}
.banner .owl-carousel .owl-stage-outer {
  height: 100%;
}
.banner .owl-carousel .owl-stage-outer .owl-stage {
  height: 100%;
}
.banner .owl-carousel .owl-stage-outer .owl-stage .owl-item {
  height: 100%;
}
.banner .owl-dots {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .banner .owl-dots {
    bottom: 0;
  }
}
.banner .owl-dots .owl-dot span {
  background-color: transparent;
  border: 2px solid #fff;
}
.banner .owl-dots .owl-dot:hover span {
  background-color: #fff;
}
.banner .owl-dots .owl-dot.active span {
  background-color: #fff;
}
.banner .owl-prev,
.banner .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.banner .owl-prev {
  left: 2%;
}
.banner .owl-next {
  right: 2%;
}
.banner .owl-nav {
  height: 0 !important;
  margin: 0 !important;
}
.banner .owl-nav [class*=owl-] {
  width: 3.2rem;
  height: 3.2rem;
  background-color: #292929 !important;
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem !important;
  opacity: 0.5;
  transition: all 0.2s;
}
.banner .owl-nav [class*=owl-]:hover {
  background-color: #434343 !important;
  opacity: 1;
  color: #191919;
  text-decoration: none;
}

.breadcrumb {
  margin-top: 5rem;
  color: #898989;
  font-size: 1.4rem;
}
.breadcrumb-item a {
  color: #898989;
}
.breadcrumb-item a:hover {
  color: #616161;
}
.breadcrumb-item.active {
  font-weight: 500;
  color: #898989;
}
.breadcrumb-item + .breadcrumb-item::before {
  content: "\f0da" !important;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #454545;
}

/* =========================================
   Barra Lateral Desktop (#menu_cliente)
   ========================================= */
#menu_cliente {
  height: 100vh;
  padding: 4rem 2rem 2rem 2rem; /* Sem header fixo, padding reduzido */
  width: 350px;
  max-width: 90%;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  background-color: #004A57;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}
@media (max-width: 991px) {
  #menu_cliente {
    display: none;
  }
}
#menu_cliente::-webkit-scrollbar {
  width: 6px;
}
#menu_cliente::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}
#menu_cliente::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.2);
}
#menu_cliente::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* =========================================
   Topbar Mobile (Client Area)
   ========================================= */
.client-mobile-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(25, 25, 25, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 998; /* Abaixo do overlay */
}
.client-mobile-topbar .client-mobile-logo img {
  height: 40px;
  max-width: 100%;
  object-fit: contain;
}
.client-mobile-topbar .client-mobile-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 25px;
  padding: 0;
}
.client-mobile-topbar .client-mobile-btn .client-icon-bar {
  width: 100%;
  height: 3px;
  background-color: #119889;
  margin-bottom: 5px;
  transition: all 0.3s;
  border-radius: 2px;
}
.client-mobile-topbar .client-mobile-btn .client-icon-bar:last-child {
  margin-bottom: 0;
}

/* =========================================
   Gaveta Mobile (#menu_cliente_mobile)
   ========================================= */
#mobile_overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(25, 25, 25, 0.6);
  z-index: 100000;
  opacity: 0;
  transition: opacity 0.3s ease;
}
#mobile_overlay.active {
  display: block;
  opacity: 1;
}

#menu_interna #menu_cliente_mobile {
  position: fixed;
  top: 0;
  left: -100%;
  width: 300px;
  max-width: 85%;
  height: 100vh;
  background-color: #004A57;
  z-index: 100001;
  overflow-y: auto;
  transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 2px 0 10px rgba(25, 25, 25, 0.5);
}
#menu_interna #menu_cliente_mobile.open-drawer {
  left: 0;
  padding: 2rem;
}
#menu_interna #menu_cliente_mobile .close-client-menu {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 4rem;
  color: #fff;
  cursor: pointer;
  z-index: 10;
  line-height: 1;
  font-weight: 300;
  transition: transform 0.2s ease;
}
#menu_interna #menu_cliente_mobile .close-client-menu:hover {
  transform: scale(1.1);
}
#menu_interna #menu_cliente_mobile .menu {
  position: static;
  height: auto;
  background: transparent;
  box-shadow: none;
  padding: 8rem 3rem 4rem 3rem; /* Paddingzinho extra adicionado aqui */
  width: 100%;
  margin: 0;
}

/* =========================================
   Estilos Compartilhados (Listas e Links)
   ========================================= */
#menu_cliente ul.principal,
#menu_interna #menu_cliente_mobile .menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
#menu_cliente ul.principal::-webkit-scrollbar,
#menu_interna #menu_cliente_mobile .menu::-webkit-scrollbar {
  width: 6px;
}
#menu_cliente ul.principal::-webkit-scrollbar-track,
#menu_interna #menu_cliente_mobile .menu::-webkit-scrollbar-track {
  background: transparent;
}
#menu_cliente ul.principal::-webkit-scrollbar-thumb,
#menu_interna #menu_cliente_mobile .menu::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
}
#menu_cliente ul.principal::-webkit-scrollbar-thumb:hover,
#menu_interna #menu_cliente_mobile .menu::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}
#menu_cliente ul.principal li,
#menu_interna #menu_cliente_mobile .menu li {
  padding: 0;
  margin-bottom: 2px;
  display: block;
}
#menu_cliente ul.principal li.current-cat,
#menu_interna #menu_cliente_mobile .menu li.current-cat {
  background-color: transparent;
}
#menu_cliente ul.principal li.current-cat > a,
#menu_interna #menu_cliente_mobile .menu li.current-cat > a {
  background: rgba(255, 255, 255, 0.15);
  color: #119889;
  font-weight: 700;
  border-left: 3px solid #119889;
  border-radius: 0 6px 6px 0;
  padding-left: 1.3rem;
}
#menu_cliente ul.principal li.current-cat > ul.children,
#menu_interna #menu_cliente_mobile .menu li.current-cat > ul.children {
  display: block;
}
#menu_cliente ul.principal li.cat-parent > a,
#menu_interna #menu_cliente_mobile .menu li.cat-parent > a {
  padding-right: 4.5rem;
}
#menu_cliente ul.principal li.cat-parent > a .accordion-toggle,
#menu_interna #menu_cliente_mobile .menu li.cat-parent > a .accordion-toggle {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  border-radius: 0 6px 6px 0;
  transition: background 0.2s ease;
}
#menu_cliente ul.principal li.cat-parent > a .accordion-toggle:hover,
#menu_interna #menu_cliente_mobile .menu li.cat-parent > a .accordion-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}
#menu_cliente ul.principal li.cat-parent > a .accordion-toggle::after,
#menu_interna #menu_cliente_mobile .menu li.cat-parent > a .accordion-toggle::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(255, 255, 255, 0.7);
  border-bottom: 2px solid rgba(255, 255, 255, 0.7);
  transform: rotate(-135deg);
  border-color: #119889;
  margin-top: 4px;
  transition: all 0.3s ease;
}
#menu_cliente ul.principal li.cat-parent.closed > a .accordion-toggle::after,
#menu_interna #menu_cliente_mobile .menu li.cat-parent.closed > a .accordion-toggle::after {
  transform: rotate(45deg);
  border-color: rgba(255, 255, 255, 0.7);
  margin-top: 0;
}
#menu_cliente ul.principal li a,
#menu_interna #menu_cliente_mobile .menu li a {
  display: block;
  padding: 1.2rem 1.6rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.6rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
  border: none;
}
#menu_cliente ul.principal li a::before,
#menu_interna #menu_cliente_mobile .menu li a::before {
  content: none;
}
#menu_cliente ul.principal li a:hover,
#menu_interna #menu_cliente_mobile .menu li a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding-left: 2rem;
}
#menu_cliente ul.principal ul.children,
#menu_interna #menu_cliente_mobile .menu ul.children {
  display: none;
  padding-left: 1.5rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
#menu_cliente ul.principal ul.children a,
#menu_interna #menu_cliente_mobile .menu ul.children a {
  font-size: 1.6rem;
  padding: 1rem 1.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}
#menu_cliente ul.principal ul.children a:hover,
#menu_interna #menu_cliente_mobile .menu ul.children a:hover {
  color: #119889;
  background: transparent;
  padding-left: 2rem;
}

/* =========================================
   Busca (Search Form)
   ========================================= */
#menu_cliente #searchform,
#menu_interna #menu_cliente_mobile #searchform {
  margin: 2rem 0;
  padding: 0;
}
#menu_cliente #searchform div,
#menu_interna #menu_cliente_mobile #searchform div {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  width: 100%;
  transition: all 0.3s ease;
}
#menu_cliente #searchform div:focus-within,
#menu_interna #menu_cliente_mobile #searchform div:focus-within {
  background: rgba(255, 255, 255, 0.12);
  border-color: #119889;
}
#menu_cliente #searchform input[type=text],
#menu_interna #menu_cliente_mobile #searchform input[type=text] {
  flex-grow: 1;
  width: 10px;
  background: transparent;
  border: none;
  padding: 1.2rem 1.5rem;
  border-radius: 0;
  color: #fff;
  font-size: 1.4rem;
}
#menu_cliente #searchform input[type=text]::placeholder,
#menu_interna #menu_cliente_mobile #searchform input[type=text]::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
#menu_cliente #searchform input[type=text]:focus,
#menu_interna #menu_cliente_mobile #searchform input[type=text]:focus {
  outline: none;
}
#menu_cliente #searchform input[type=submit],
#menu_interna #menu_cliente_mobile #searchform input[type=submit] {
  position: static;
  transform: none;
  background: #119889;
  color: #004A57;
  border-radius: 30px;
  padding: 0.8rem 1.8rem;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  margin: 3px;
  transition: all 0.3s ease;
}
#menu_cliente #searchform input[type=submit]:hover,
#menu_interna #menu_cliente_mobile #searchform input[type=submit]:hover {
  background: #fff;
}

/* =========================================
   Utilitários / Outros Links
   ========================================= */
.client-name {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 2.2rem;
  font-weight: 700;
}

.client-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.btn-home {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.2rem 1.5rem;
  background: #119889;
  border: 1px solid #119889;
  color: #004A57;
  text-align: center;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
}
.btn-home i {
  margin-right: 1rem;
}
.btn-home:hover {
  background: transparent;
  color: #119889;
}

.logout-link {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.2rem 1.5rem;
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  text-align: center;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.logout-link:hover {
  background: rgba(255, 80, 80, 0.2);
  color: #fff;
  border-color: rgba(255, 80, 80, 0.5);
}

.hero {
  position: relative;
  background-image: url("../../images/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 12rem 0;
  min-height: 90vh;
  display: flex;
  align-items: center;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(25, 25, 25, 0.6);
  z-index: 1;
}
.hero .container {
  position: relative;
  z-index: 2;
}
.hero__content {
  padding-right: 3rem;
}
@media (max-width: 991px) {
  .hero__content {
    padding-right: 0;
  }
}
.hero__badge {
  display: inline-block;
  background-color: #FE4600;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 400;
  text-transform: uppercase;
  padding: 0.6rem 1.4rem;
  border-radius: 4px;
  margin-bottom: 2.5rem;
  letter-spacing: 1px;
}
.hero__text {
  color: rgba(148, 222, 240, 0.8);
  margin-bottom: 4rem;
  font-size: 1.8rem;
  line-height: 1.6;
  max-width: 95%;
}
@media (max-width: 991px) {
  .hero__text {
    font-size: 1.6rem;
    max-width: 100%;
  }
}
.hero__video {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(25, 25, 25, 0.6);
  aspect-ratio: 16/9;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.hero__video iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.client-area__form-wrapper {
  background-color: rgba(255, 255, 255, 0.7);
  padding: 4rem;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(25, 25, 25, 0.6);
}
@media (max-width: 991px) {
  .client-area__form-wrapper {
    padding: 3rem;
  }
}
.client-area__form-wrapper form p {
  margin-bottom: 2rem;
}
.client-area__form-wrapper form label {
  display: block;
  color: #004A57;
  font-weight: 600;
  margin-bottom: 0.8rem;
  font-size: 1.6rem;
}
.client-area__form-wrapper form input[type=text],
.client-area__form-wrapper form input[type=password] {
  width: 100%;
  padding: 1.4rem 1.5rem;
  border: 1px solid rgba(0, 74, 87, 0.2);
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.6);
  color: #292929;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.client-area__form-wrapper form input[type=text]:focus,
.client-area__form-wrapper form input[type=password]:focus {
  outline: none;
  border-color: #119889;
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(17, 152, 137, 0.1);
}
.client-area__form-wrapper form .login-remember {
  display: flex;
  align-items: center;
  margin-bottom: 2.5rem;
}
.client-area__form-wrapper form .login-remember label {
  margin-bottom: 0;
  font-weight: 500;
  font-size: 1.3rem;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
}
.client-area__form-wrapper form .login-remember input[type=checkbox] {
  margin: 0;
  width: 16px;
  height: 16px;
  accent-color: #119889;
}
.client-area__form-wrapper form .login-submit {
  margin-bottom: 1.5rem;
}
.client-area__form-wrapper form .login-submit input[type=submit] {
  width: 100%;
  background-color: #004A57;
  color: #fff;
  border: none;
  padding: 1.5rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s;
}
.client-area__form-wrapper form .login-submit input[type=submit]:hover {
  background-color: #042123;
  transform: translateY(-2px);
}
.client-area__forgot {
  display: block;
  text-align: center;
  color: #004A57;
  font-size: 1.3rem;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.3s;
}
.client-area__forgot:hover {
  color: #119889;
}

.about {
  background-color: #f7f7f7;
  padding: 8rem 0;
}
.about .subtitle {
  color: #3F484B;
}
.about__tabs {
  background-color: #e9e9e9;
  border-radius: 12px;
  padding: 0.5rem;
  display: inline-flex;
}
.about__tabs .nav-item {
  margin: 0;
}
.about__tabs .nav-link {
  color: #1B1C1C;
  font-weight: 400;
  padding: 0.8rem 2rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  font-size: 1.6rem;
}
.about__tabs .nav-link:hover {
  color: #004A57;
}
.about__tabs .nav-link.active {
  background-color: #FE4600;
  color: #fff;
  font-weight: 700;
}
.about__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(25, 25, 25, 0.1);
}
.about__text {
  color: #4b5563;
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.about__list li {
  display: flex;
  align-items: center;
  margin-bottom: 1.2rem;
  color: #1B1C1C;
  font-size: 1.6rem;
  font-weight: 500;
}
.about__list li .icon-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #119889;
  color: #119889;
  margin-right: 1.2rem;
  font-size: 1rem;
  flex-shrink: 0;
}
.about__divider {
  border-top: 1px solid #c8c8c8;
  margin: 5rem 0 4rem;
  opacity: 0.5;
}
.about__clients-title {
  font-size: 1.6rem;
  color: #95959f;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 2.5rem;
  text-align: center;
}
.about__clients-logos {
  gap: 2rem;
  justify-content: center;
  display: flex;
}
@media (max-width: 991px) {
  .about__clients-logos {
    flex-wrap: wrap;
  }
}
.about__clients-logos img {
  flex: 1;
  width: 1px;
  max-width: 200px;
  opacity: 0.8;
  filter: grayscale(100%);
  transition: all 0.2s ease;
}
@media (max-width: 991px) {
  .about__clients-logos img {
    width: 100px;
    margin-bottom: 1.5rem;
  }
}
.about__clients-logos img:hover {
  opacity: 1;
}

.erp {
  background-color: #F6F3F2;
  padding: 8rem 0 10rem;
}
.erp__subtitle {
  color: #3F484B;
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 2rem;
}
.erp__desc {
  color: #3F484B;
  font-size: 1.6rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.features {
  background-color: #191919;
  padding: 10rem 0;
  color: #fff;
  /* =========================================
     ERP Steps (Aba Implantação)
     ========================================= */
  /* =========================================
     ERP Results (Aba Resultados)
     ========================================= */
}
.features__logo img {
  width: 150px;
}
.features__kicker {
  display: block;
  color: #94DEF0;
  font-size: 1.6rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.5rem;
}
.features__title {
  color: #fff;
  margin-bottom: 2rem;
  font-weight: 800;
  font-size: 4.8rem;
}
.features__desc {
  color: #c8c8c8;
  font-size: 1.6rem;
  line-height: 1.6;
  margin-bottom: 0;
  max-width: 90%;
}
.features__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.features__item {
  display: flex;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}
.features__item-icon {
  font-size: 2rem;
  color: #fff;
  margin-right: 2rem;
  margin-top: 0.3rem;
}
.features__item-content h4 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: #fff;
}
.features__item-content p {
  font-size: 1.4rem;
  color: #c8c8c8;
  margin: 0;
  line-height: 1.5;
}
.features__item:hover {
  background-color: rgba(0, 74, 87, 0.6);
  border-left: 4px solid #119889;
}
.features__item:hover .features__item-content p {
  color: rgba(255, 255, 255, 0.8);
}
.features__img {
  box-shadow: 0 20px 50px rgba(25, 25, 25, 0.8);
}
.features__box {
  background-color: #292929;
  border-radius: 12px;
  padding: 4rem 5rem;
  margin-top: 6rem;
}
@media (max-width: 991px) {
  .features__box {
    padding: 3rem 2rem;
  }
}
.features__box-tabs {
  background-color: rgba(25, 25, 25, 0.5);
  display: inline-flex;
  padding: 0.5rem;
  border-radius: 12px;
}
.features__box-tabs .nav-item {
  margin: 0;
}
.features__box-tabs .nav-link {
  color: #c8c8c8;
  font-weight: 400;
  font-size: 1.6rem;
  padding: 1rem 3rem;
  border-radius: 12px;
  transition: all 0.3s;
}
.features__box-tabs .nav-link:hover {
  color: #fff;
}
.features__box-tabs .nav-link.active {
  background-color: #004A57;
  color: #fff;
  font-weight: 700;
}
.features__module i {
  font-size: 2.4rem;
  color: #94DEF0;
  margin-bottom: 2rem;
  display: block;
}
.features__module h5 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}
.features__module p {
  font-size: 1.4rem;
  color: #c8c8c8;
  line-height: 1.5;
  margin: 0;
}
.features .erp-step {
  background-color: rgba(25, 25, 25, 0.4);
  border-radius: 12px;
  padding: 3rem 2.5rem;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.features .erp-step:hover {
  transform: translateY(-5px);
  background-color: rgba(0, 74, 87, 0.6);
  border-color: #119889;
}
.features .erp-step__header {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.features .erp-step__icon {
  width: 40px;
  height: 40px;
  background-color: rgba(17, 152, 137, 0.1);
  color: #119889;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-right: 1.5rem;
}
.features .erp-step__title {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.features .erp-step__list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 2;
}
.features .erp-step__list li {
  color: #c8c8c8;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: flex-start;
  line-height: 1.5;
}
.features .erp-step__list li i {
  color: #119889;
  margin-right: 1rem;
  margin-top: 0.3rem;
  font-size: 1.2rem;
}
.features .erp-step__list li:last-child {
  margin-bottom: 0;
}
.features .erp-step__number {
  position: absolute;
  bottom: -2rem;
  right: -1rem;
  font-size: 12rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 1;
}
.features .erp-step:hover .features .erp-step__number {
  color: rgba(17, 152, 137, 0.08);
  transform: scale(1.1);
}
.features .erp-results {
  background-color: rgba(25, 25, 25, 0.4);
  border-radius: 12px;
  padding: 4rem 5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
@media (max-width: 767px) {
  .features .erp-results {
    padding: 3rem 2rem;
  }
}
.features .erp-results__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}
@media (max-width: 991px) {
  .features .erp-results__list {
    grid-template-columns: 1fr;
  }
}
.features .erp-results__list li {
  display: flex;
  align-items: flex-start;
  color: #c8c8c8;
  font-size: 1.6rem;
  line-height: 1.6;
}
.features .erp-results__list li i {
  color: #119889;
  font-size: 1.8rem;
  margin-right: 1.5rem;
  margin-top: 0.3rem;
  background-color: rgba(17, 152, 137, 0.1);
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}
.features .erp-results__list li span {
  flex: 1;
}
.features .erp-results__cta {
  font-size: 1.6rem;
}

.client-area {
  background-color: #F6F3F2;
  padding: 8rem 0;
}
.client-area__box {
  background-image: url("../../images/bg-client-area.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 8rem 5rem;
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .client-area__box {
    padding: 5rem 3rem;
  }
}
.client-area__box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(25, 25, 25, 0.7);
  z-index: 1;
}
.client-area__box > .row {
  position: relative;
  z-index: 2;
}
.client-area__content {
  color: #fff;
}
.client-area__content .title {
  color: #fff;
  font-size: 4.8rem;
}
.client-area__desc {
  color: #c8c8c8;
  font-size: 1.6rem;
  line-height: 1.6;
  margin-bottom: 4rem;
}
.client-area__buttons {
  display: flex;
  gap: 2rem;
}
.client-area__buttons .btn {
  flex: 1;
  padding: 2rem 2rem;
}
@media (max-width: 575px) {
  .client-area__buttons {
    flex-direction: column;
  }
}
.client-area__support-title {
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
}
.client-area__support-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.client-area__support-list .client-area__support-item {
  display: flex;
  align-items: center;
}
.client-area__support-list .client-area__support-item i {
  font-size: 2rem;
  color: #119889;
  margin-right: 1.5rem;
  width: 2.5rem;
  text-align: center;
}
.client-area__support-list .client-area__support-item i.fa-whatsapp {
  color: #25D366;
}
.client-area__support-list .client-area__support-item i.fa-envelope {
  color: #FE4600;
}
.client-area__support-list .client-area__support-item-text a {
  color: #fff;
  font-size: 1.6rem;
  text-decoration: none;
  transition: color 0.3s;
}
.client-area__support-list .client-area__support-item-text a:hover {
  color: #fff;
  text-decoration: underline;
}

.contact {
  padding: 10rem 0;
}
.contact__content h2 {
  margin-bottom: 1.5rem;
}
.contact__content > p {
  color: #3F484B;
  font-size: 1.6rem;
  line-height: 1.6;
  margin-bottom: 5rem;
  max-width: 90%;
}
.contact__list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.contact__list-item {
  display: flex;
  align-items: flex-start;
}
.contact__list-item i {
  font-size: 2.2rem;
  color: #004A57;
  margin-right: 2rem;
  margin-top: 0.2rem;
}
.contact__list-item i.fa-whatsapp {
  color: #25D366;
}
.contact__list-item i.fa-envelope {
  color: #FE4600;
}
.contact__list-item-text h4 {
  font-size: 1.6rem;
  color: #004A57;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.contact__list-item-text p, .contact__list-item-text a {
  font-size: 1.6rem;
  color: #3F484B;
  margin: 0;
  line-height: 1.5;
}
.contact__list-item-text a:hover {
  text-decoration: underline;
  color: #119889;
}
.contact__form-box {
  background-color: #F6F3F2;
  padding: 5rem;
  border-radius: 8px;
}
@media (max-width: 991px) {
  .contact__form-box {
    padding: 3rem;
    margin-top: 4rem;
  }
}

.map iframe {
  width: 100%;
  height: 300px;
  margin-bottom: -7px;
}

.tax-reform {
  background: linear-gradient(135deg, #031424 0%, #093C52 100%);
  padding: 10rem 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 991px) {
  .tax-reform {
    padding: 8rem 0;
  }
}
.tax-reform__badge {
  background-color: #FE4600;
  color: #fff;
  font-size: 1.2rem;
  text-transform: uppercase;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 2rem;
}
.tax-reform__title {
  color: #fff;
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
}
@media (max-width: 767px) {
  .tax-reform__title {
    font-size: 2.8rem;
  }
}
.tax-reform__desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.tax-reform__desc:last-of-type {
  margin-bottom: 5rem;
}
.tax-reform__footer-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.8rem;
  font-weight: 500;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}
.tax-reform__footer-text strong {
  color: #FE4600;
  font-weight: 700;
}
.tax-reform__cta {
  min-width: 280px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 10px 20px rgba(254, 70, 0, 0.2);
  border-radius: 4px;
}
.tax-reform__cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(254, 70, 0, 0.4);
}

.tax-reform-card {
  background-color: rgba(0, 30, 38, 0.4);
  border: 1px solid rgba(17, 152, 137, 0.15);
  border-radius: 8px;
  padding: 3rem 2rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}
@media (max-width: 1199px) {
  .tax-reform-card {
    padding: 2.5rem 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.tax-reform-card:hover {
  transform: translateY(-5px);
  border-color: #119889;
  background-color: rgba(0, 30, 38, 0.6);
  box-shadow: 0 1rem 3rem rgba(17, 152, 137, 0.15);
}
.tax-reform-card:hover .tax-reform-card__icon {
  transform: scale(1.1);
}
.tax-reform-card__icon-wrapper {
  margin-bottom: 2.5rem;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tax-reform-card__icon {
  width: auto;
  height: 50px;
  transition: transform 0.3s ease;
}
.tax-reform-card__title {
  color: #FE4600;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 2rem;
  min-height: 4.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1199px) {
  .tax-reform-card__title {
    min-height: auto;
    margin-bottom: 1.5rem;
  }
}
.tax-reform-card__text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.3rem;
  line-height: 1.6;
  margin: 0;
}

.page-404 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
}
.page-404 .container {
  width: 80rem;
}
.page-404-main {
  padding: 20rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #292929;
  padding: 4rem 2rem;
  border-radius: 40px;
  width: 80rem;
  max-width: 100%;
  margin: auto;
}
.page-404-main * {
  max-width: 100%;
}
.page-404-main h1 {
  text-align: center;
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1;
  margin-bottom: 2rem;
  color: #fff;
}
.page-404-main h1 span {
  font-size: 8rem;
  display: block;
  color: #fff;
}
.page-404-main h2 {
  font-size: 2.4rem;
  text-align: center;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 2rem;
  margin-top: 3.2rem;
  color: #fff;
}
.page-404-main p {
  color: #fff;
}
.page-404-main a {
  display: block;
  margin: auto;
  width: 35rem;
  max-width: 100%;
  text-decoration: underline;
  margin-bottom: 2rem;
}

.thanks {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
}
.thanks .container {
  width: 80rem;
}
.thanks-main {
  padding: 20rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #292929;
  padding: 4rem 2rem;
  border-radius: 40px;
  width: 80rem;
  max-width: 100%;
  margin: auto;
}
.thanks-main * {
  max-width: 100%;
}
.thanks-main h1 {
  text-align: center;
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1;
  margin-bottom: 2rem;
  color: #fff;
}
.thanks-main h1 span {
  font-size: 8rem;
  display: block;
  color: #292929;
}
.thanks-main h2 {
  font-size: 2.4rem;
  text-align: center;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 2rem;
  margin-top: 3.2rem;
  color: #fff;
}
.thanks-main p {
  color: #fff;
}
.thanks-main a {
  display: block;
  margin: auto;
  width: 35rem;
  max-width: 100%;
  text-decoration: underline;
}

/* =========================================
   Páginas Padrão (Termos, Privacidade, etc)
   ========================================= */
.page-default {
  background-color: #F0EDED;
  padding: 6rem 0;
}
.page-default__header {
  margin-bottom: 4rem;
}
.page-default__header .page-default__title {
  color: #004A57;
  font-size: 4rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}
.page-default__header .page-default__title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: #119889;
  border-radius: 2px;
}
@media (max-width: 767px) {
  .page-default__header .page-default__title {
    font-size: 3rem;
  }
}
.page-default__body {
  background-color: #fff;
  border-radius: 12px;
  padding: 5rem;
  box-shadow: 0 10px 30px rgba(25, 25, 25, 0.05);
  color: #4b5563;
  font-size: 1.6rem;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
  /* Destaque (Blockquote) */
}
@media (max-width: 991px) {
  .page-default__body {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .page-default__body {
    padding: 2rem;
  }
}
.page-default__body h1, .page-default__body h2, .page-default__body h3, .page-default__body h4, .page-default__body h5, .page-default__body h6 {
  color: #004A57;
  font-weight: 700;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}
.page-default__body h1:first-child, .page-default__body h2:first-child, .page-default__body h3:first-child, .page-default__body h4:first-child, .page-default__body h5:first-child, .page-default__body h6:first-child {
  margin-top: 0;
}
.page-default__body h2 {
  font-size: 2.8rem;
}
.page-default__body h3 {
  font-size: 2.4rem;
}
.page-default__body h4 {
  font-size: 2rem;
}
.page-default__body p {
  margin-bottom: 1.5rem;
}
.page-default__body ul, .page-default__body ol {
  margin-bottom: 2rem;
  padding-left: 2rem;
}
.page-default__body ul li, .page-default__body ol li {
  margin-bottom: 0.8rem;
}
.page-default__body a {
  color: #119889;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}
.page-default__body a:hover {
  color: #004A57;
  text-decoration: underline;
}
.page-default__body blockquote {
  border-left: 4px solid #119889;
  background-color: rgba(17, 152, 137, 0.05);
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #004A57;
}
.page-default__body blockquote p {
  margin-bottom: 0;
}

/* =========================================
   Área de Conteúdo (Client Content)
   ========================================= */
.client-content {
  padding: 2rem 2rem 6rem 37rem; /* 350px (menu_cliente width) + 20px gap = 370px */
  min-height: 100vh;
  background-color: #F0EDED;
}
@media (max-width: 991px) {
  .client-content {
    padding: 10rem 2rem 6rem 2rem; /* Menu lateral some ou vira gaveta */
  }
}
.client-content--home img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(25, 25, 25, 0.1);
}
.client-content__header {
  margin-bottom: 3rem;
}
.client-content__header h1 {
  color: #004A57;
  font-size: 3.2rem;
  font-weight: 700;
  margin: 0;
}
.client-content__breadcrumbs {
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  color: #95959f;
}
.client-content__breadcrumbs a {
  color: #004A57;
  text-decoration: none;
  transition: color 0.3s ease;
}
.client-content__breadcrumbs a:hover {
  color: #119889;
  text-decoration: underline;
}
.client-content__empty {
  background-color: #fff;
  border-radius: 12px;
  padding: 4rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(25, 25, 25, 0.05);
}
.client-content__empty p {
  color: #3F484B;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.client-content__empty p:last-child {
  margin-bottom: 0;
}

/* =========================================
   Grids e Cards (Categorias, Arquivos)
   ========================================= */
.client-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.client-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  text-decoration: none;
  color: #3F484B;
  box-shadow: 0 4px 12px rgba(25, 25, 25, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(25, 25, 25, 0.05);
  position: relative;
  overflow: hidden;
}
.client-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(25, 25, 25, 0.1);
  border-color: #119889;
}
.client-card--sticky::before {
  content: "Destaque";
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: #119889;
  color: #004A57;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  text-transform: uppercase;
}
.client-card__image {
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}
.client-card__image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.client-card:hover .client-card__image img {
  transform: scale(1.05);
}
.client-card__title {
  font-size: 1.6rem;
  margin-bottom: 2rem;
  font-weight: 700;
  color: #004A57;
  line-height: 1.4;
}
.client-card__cta {
  background-color: #119889;
  color: #fff;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  font-size: 1.4rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}
.client-card__cta:hover {
  background-color: #004A57;
}

.container {
  max-width: 1280px;
}

.container,
.row {
  --bs-gutter-x: 3.6rem !important;
}

.g-0,
.gx-0 {
  --bs-gutter-x: 0 !important;
}

/*# sourceMappingURL=main.css.map */
