.topbar {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
  background-color: var(--white);
  color: var(--title);
  padding: 10px 0;
  height: 40px;
  font-size: var(--small);
  font-weight: var(--fw-500);
}

.topbar__left {
  display: flex;
  align-items: center;
}

.topbar-media__social {
  background-color: transparent;
  padding: 5px 10px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  color: var(--title);
}

.content-center {
  display: flex;
  align-content: center;
  text-align: center;
  justify-content: center;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.social-icons {
  display: flex;
  gap: 20px;
}

.social-icons a {
  text-decoration: none;
  color: var(--title);
  font-size: 24px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: var(--primary);
}

@media (min-width: 768px) {
  .content-wrapper {
    flex-direction: row;
    gap: 40px;
  }

  .social-icons {
    gap: 30px;
  }
}

/* Custom Dropdown */
.custom-dropdown {
  position: relative;
}

.custom-dropdown__button {
  min-width: 150px; /* Ajuste conforme necessário */
  text-align: left;
  white-space: nowrap;
  background-color: transparent;
  color: var(--title);
  padding: 5px 10px;
  border: 1px solid transparent;
  border-radius: var(--border-radius);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 15px;
  position: relative;
  font-size: 14px;
  font-weight: var(--fw-500);
  transition: background-color 0.3s ease;
}

.custom-dropdown__button::after {
  content: "";
  margin: 0px 0px 3px 10px;
  border: solid var(--title);
  border-width: 0 1px 1px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(45deg);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.custom-dropdown__button:hover {
  background-color: var(--background-hover);
}

.custom-dropdown__button--active::after {
  transform: rotate(-135deg);
  /* Inverte a seta */
}

.custom-dropdown__content {
  display: none;
  position: absolute;
  background-color: var(--white);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius);
  border: none;
  min-width: 100%;
  z-index: 1000;
}

.custom-dropdown__content--active {
  display: block;
}

.custom-dropdown__item {
  padding: 10px 15px;
  color: var(--title);
  text-decoration: none;
  display: block;
}

.custom-dropdown__item:hover {
  background-color: var(--background-hover);
  color: var(--primary);
}

.custom-dropdown__item:first-of-type:hover {
  border-radius: var(--border-radius) var(--border-radius) 0px 0px;
}

.custom-dropdown__item:last-of-type:hover {
  border-radius: 0px 0px var(--border-radius) var(--border-radius);
}

.custom-dropdown__item img {
  max-width: 80px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Topbar Right */
.topbar__right {
  display: flex;
  align-items: center;
}

.topbar__menu {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--p);
  font-weight: var(--fw-500);
}

.topbar__menu-item {
  font-size: 14px;
  color: var(--title);
  text-decoration: none;
  font-weight: var(--fw-500);
}

.topbar__menu-item:hover {
  color: var(--title);
}

.topbar__divider {
  display: inline-block;
  margin: 0;
  color: var(--title);
  font-size: 20px;
  font-weight: var(--fw-500);
  opacity: 0.3;
  line-height: 1;
}

.topbar__desktop {
  display: block;
  background-color: var(--white);
}

.social__desktop {
  display: block;
}

.topbar__mobile {
  display: none;
}

@media screen and (max-width: 1268px) {
  .topbar__desktop {
    display: none;
  }

  .social__desktop {
    display: none;
  }

  .topbar__mobile {
    display: block;
  }
}

.fag-column {
  width: 100%;
  height: auto;
  padding: 30px 0;
}

.fag-columns-products {
  margin: 38px auto 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 24px;
}

@media (min-width: 769px) {
  .fag-columns-products {
    flex-direction: row;
  }
}

.products-brand-primary-box {
  width: 298px;
  height: 332px;

  background-color: var(--white);
  padding: 40px 0 38px;

  border: 2px solid var(--border);
  border-radius: var(--border-radius);
}

.products-brand-primary-box__destac {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;

  height: 100%;
}

.products-brand-primary-box__destac img {
  width: auto;
  height: 158px;
  object-fit: cover;
}

.fag-products__action {
  width: 100%;
  max-width: 236px;
}

.fag-products__action span {
  width: 100%;

  padding: 8px 0;
  border-radius: 6px;

  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-transform: uppercase;
}

.fag-column__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;

  border-bottom: 2px solid #e5eaec;
}

.fag-column__info {
  display: flex;
  align-items: center;
  padding: 15px 15px 32px 15px;
  border-radius: var(--border-radius);
}

.fag-column__icon {
  font-size: 30px;
  margin-right: 15px;
  color: var(--title);
}

.fag-column__svg {
  margin-right: 15px;
}

.fag-column__svg svg {
  width: 45px;
  height: 45px;
  max-width: 45px;
  max-height: 45px;
  object-fit: contain;
}

.fag-column__text {
  display: flex;
  flex-direction: column;
}

.fag-column__text p {
  font-family: var(--font);
  font-size: var(--p);
  color: var(--title);
  font-weight: var(--fw-600);
  margin: 0;
}

.fag-column__text span {
  font-family: var(--font);
  font-size: 14px;
  color: var(--title);
}

@media screen and (max-width: 768px) {
  .fag-column__text p {
    font-size: 14px;
    margin: 0;
  }

  .fag-column__content {
    grid-template-columns: 1fr;
  }

  .fag-column__icon {
    font-size: 25px;
  }

  .fag-column__info {
    padding: 0;
  }
}

.payment-methods {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e5eaec;
  padding: 26px 24px 24px;
  width: 100%;
}

@media (min-width: 769px) {
  .payment-methods {
    padding: 26px 70px 24px;
  }
}

.payment-methods-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;

  gap: 46px;

  width: 100%;
  max-width: 1330px;
}

.payment-method-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border: 1px solid #cccccc;

  width: 106px;
  height: 64px;

  filter: grayscale(1);
}

.fag-bg-primary-degrade {
  width: 100%;
  height: auto;
  padding: 50px 0;
  background: linear-gradient(90deg, var(--primary) 0%, #080092 100%);
}

.fag-bg-primary {
  background-color: var(--primary);
  width: 100%;
  height: auto;
  padding: 50px 0;
}

.fag-bg-primary-100 {
  background-color: var(--primary);
  width: 100%;
  height: auto;
  padding: 100px 0;
}

.fag-bg-green {
  background-color: var(--success);
  width: 100%;
  height: auto;
  padding: 50px 0;
}

.fag-bg-white {
  background-color: var(--white);
  width: 100%;
  height: auto;
  padding: 50px 0;
}

.fag-bg-white-100 {
  background-color: var(--white);
  width: 100%;
  height: auto;
  padding: 100px 0;
}

.fag-bg-background {
  background-color: var(--background);
  width: 100%;
  height: auto;
  padding: 50px 0;
}

.fag-bg-primary-alt {
  background-color: var(--primary-alt);
  width: 100%;
  height: auto;
  padding: 50px 0;
}

.fag-especialista {
  text-align: center;
  gap: 20px;
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
}

.fag-especialista h2 {
  font-family: var(--font);
  font-size: 30px;
  font-weight: 400;
  color: var(--white);
}

.fag-especialista h3 {
  font-family: var(--font);
  font-size: 50px;
  font-weight: 800;
  color: var(--white);
}

.lista-title {
  background: linear-gradient(270deg, var(--primary-alt) 0.4%, var(--primary) 93%);
  width: 32px;
  height: 4px;
}

.lista-title__white {
  background: var(--white);
  width: 32px;
  height: 4px;
}

@media screen and (max-width: 768px) {
  .fag-especialista h2 {
    font-size: 20px;
    line-height: 25px;
  }

  .fag-especialista h3 {
    font-size: 30px;
    line-height: 25px;
  }

  .fag-bg-white-100 {
    background-color: var(--white);
    width: 100%;
    height: auto;
    padding: 50px 0;
  }
}

/* ***** Distribuicao Home *****  */

.fag-distribution {
  background-color: var(--white);
  width: 100%;
  height: auto;
  padding: 50px 0;
}

.fag-distribution__content {
  text-align: center;
  gap: 20px;
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
}

.fag-distribution__flex {
  display: grid;
  grid-column-gap: 5rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr max-content;
  justify-content: space-between;
  align-items: center;
}

.fag-distribution__text h2 {
  font-family: var(--font);
  font-size: 30px;
  font-weight: 600;
  color: var(--title);
  text-align: left;
  margin-top: 15px;
}

.fag-distribution__text p {
  font-family: var(--font);
  font-size: var(--p);
  font-weight: 400;
  color: var(--title);
  text-align: left;
  margin-top: 0px;
}

.fag-distribution__action .button {
  justify-self: start;
}

@media screen and (max-width: 767px) {
  .fag-distribution__flex {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }

  .fag-distribution__text h2 {
    font-size: 25px;
    margin-bottom: 15px;
  }

  .fag-distribution__action .button {
    justify-self: flex-start;
  }
}

.social__desktop {
  display: block;
}

.topbar__mobile {
  display: none;
}

@media screen and (max-width: 1268px) {
  .topbar__desktop {
    display: none;
  }

  .social__desktop {
    display: none;
  }

  .topbar__mobile {
    display: block;
  }
}

.social-nav li {
  margin: 0;
  padding: 0;
}

.header .col-af-content {
  height: 90px;
}

.clearfix::before,
.clearfix::after {
  content: "";
  display: table;
}

/* ***** MENU PRINCIPAL *****  */
header .desktop-hidden {
  display: block !important;
}

@media (min-width: 1268px) {
  header .desktop-hidden {
    display: none !important;
  }
}

header .mega-menu-trigger {
  display: none !important;
}

@media (min-width: 1268px) {
  header .mega-menu-trigger {
    display: block !important;
  }
}

header .mega-menu-trigger i {
  transition: transform 0.5s ease-in-out;
}

header .mega-menu-trigger i.active {
  transform: rotate(180deg);
}

header .mega-menu-container {
  display: none;

  visibility: hidden;
  opacity: 0;
  max-height: 0;

  background-color: #0a00b3;
  border-top: 0;

  transition: all 0.5s ease-in-out;
}

@media (min-width: 1380px) {
  header .mega-menu-container {
    display: flex;
  }
}
header .mega-menu-container.active {
  visibility: visible;
  opacity: 1;
  max-height: 200px;
  border-top: 4px solid #ffffff;
}

header .mega-menu-content {
  display: flex;

  transition: all 0.4s ease-in-out;

  visibility: hidden;
  opacity: 0;
  max-height: 0;

  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1440px;

  margin: 0 auto;

  padding: 40px 30px;
  position: relative;

  gap: 34px;
}

header .mega-menu-container.active .mega-menu-content {
  visibility: visible;
  opacity: 1;
  max-height: 156px;
}

header .mega-menu-content-header {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);

  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 8px;

  margin-left: 30px;
}

header .mega-menu-content-header img {
  width: auto;
  height: 18px;
}

header .mega-menu-content-header p {
  color: #ffffff;
  font-size: 21px;
  line-height: 1.5;
  text-transform: uppercase;
}

header .mega-menu-content-body {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 36px;
}

header .mega-menu-content-body a {
  font-size: 15px;
  font-weight: 600;

  text-decoration: none;
  color: #ffffff;
  text-transform: uppercase;

  transition: color 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), font-weight 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

header .mega-menu-content-body a:hover {
  color: #ff1c0f;
}

#header.header-is-visible .top .header__container {
  height: 0;
}

#header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 9;
  background-color: var(--primary);
  box-shadow: rgba(17, 17, 17, 0.04) 0px 1px 2px;
  border-top: 3px solid var(--primary-alt);
}

#header.header-is-visible {
  box-shadow: 0 15px 60px 0 rgba(0, 0, 0, 0.1);
}

.clearfix::before,
.clearfix::after {
  content: "";
  display: table;
}

.header {
  width: 100%;
  background-color: transparent;
  transition: ease 0.3s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.header .header__container {
  position: relative;
  height: 90px;
}

.header .header__btn {
  float: right;
  padding: 0.675rem 2rem;
  margin: 25px 0 0 60px;
  border-radius: var(--border-radius);
}

.header__logo {
  display: block;
  width: 220px;
  float: left;
  margin: 20px 0 0;
}

.header__logo img {
  display: block;
  width: 100%;
  margin: 0;
}

@media screen and (max-width: 1268px) {
  .header {
    position: relative;
  }

  .header .header__btn {
    margin: 20px 80px 0 60px;
  }
}

@media screen and (max-width: 768px) {
  .top {
    display: none;
  }

  .header .header__container {
    height: 65px;
    width: 100%;
  }

  .header .header__btn {
    min-width: auto;
    padding: 0 15px;
    font-size: 10px;
    height: 36px;
    margin: 14px 60px 0 0;
    line-height: 34px;
    border-radius: var(--border-radius);
  }

  .header__logo {
    width: 200px;
    margin: 12px 0 0 10px;
  }
}

.header-nav {
  margin: 0;
  display: flex;
  justify-content: flex-end;
}

.header-nav .header__btn {
  display: none;
}

.header-nav ul {
  margin: 0;
  padding: 0;
}

.header-nav li {
  display: inline-block;
  float: left;
  line-height: 90px;
  position: relative;
}

.header-nav li a {
  font-family: var(--font);
  display: block;
  font-size: var(--p);
  text-align: center;
  font-weight: var(--fw-600);
  color: var(--white);
  padding: 0 10px;
  margin: 0;
  transition: color 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), font-weight 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.header-nav a.header-nav__link {
  position: relative;
}

.header-nav__link.has-arrow::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  margin: -12px 0 0;
  width: 24px;
  height: 24px;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24'%3E%3Cpath fill='%23FF6200' d='m11.3 14.3l-2.6-2.6q-.475-.475-.212-1.087T9.425 10h5.15q.675 0 .938.613T15.3 11.7l-2.6 2.6q-.15.15-.325.225T12 14.6q-.2 0-.375-.075T11.3 14.3Z'/%3E%3C/svg%3E");
  background-size: 100% auto;
}

.header-nav li .header-nav__link.active::after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.header-nav li ul {
  opacity: 0;
  width: 200px;
  visibility: hidden;
  overflow: hidden;
  left: 10px;
  top: 75px;
  position: absolute;
  z-index: 8;
  background-color: #fff;
  padding: 5px 15px;
  border-radius: var(--border-radius);
  transition: ease 0.3s;
  box-shadow: 0.05px 2px 30px 0 rgba(0, 0, 0, 0.1);
}

.header-nav li ul li {
  line-height: 35px;
}

.header-nav li ul li a {
  padding: 0;
}

.header-nav li .header-nav__link.active + ul {
  opacity: 1;
  visibility: visible;
}

.header-nav li a:hover {
  color: var(--primary-alt);
}

input#header-nav__toggle-menu,
label.header-nav__toggle-menu {
  display: none;
}

.header-nav__menu-link--icons {
  display: none;
}

@media screen and (max-width: 1268px) {
  .header-nav__menu-link--icons {
    display: block;
    float: right;
    font-size: 20px;
  }

  label.header-nav__toggle-menu {
    position: absolute;
    right: 0;
    top: 15px;
    display: block;
    z-index: 11;
    height: 60px;
    width: 60px;
    outline: 0;
    border: 0;
    cursor: pointer;
  }

  label.header-nav__toggle-menu div {
    position: absolute;
    top: 20px;
    right: 42px;
  }

  label.header-nav__toggle-menu span {
    display: block;
    height: 2px;
    width: 25px;
    background-color: var(--white);
    position: absolute;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    transition: all 0.3s;
  }

  label.header-nav__toggle-menu span:nth-child(1) {
    top: 0;
  }

  label.header-nav__toggle-menu span:nth-child(2) {
    top: 8px;
  }

  label.header-nav__toggle-menu span:nth-child(3) {
    top: 16px;
  }

  input#header-nav__toggle-menu:checked ~ label.header-nav__toggle-menu span:nth-child(1) {
    top: 8px;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }

  input#header-nav__toggle-menu:checked ~ label.header-nav__toggle-menu span:nth-child(2) {
    opacity: 0;
  }

  input#header-nav__toggle-menu:checked ~ label.header-nav__toggle-menu span:nth-child(3) {
    top: 8px;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }

  .header-nav {
    float: none;
    display: block;
    width: 100%;
    position: fixed;
    overflow: auto;
    top: 90px;
    right: 0;
    z-index: 9;
    padding: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #fff;
    transition: all 0.3s;
    -webkit-transform: translateY(150%);
    transform: translateY(150%);
  }

  .header-is-visible .header-nav {
    height: calc(100vh - 90px);
    top: 90px;
  }

  input#header-nav__toggle-menu:checked ~ .header-nav {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  .header-nav ul {
    width: 100%;
    line-height: 55px;
    padding: 0 0 30px;
  }

  .header-nav li {
    width: 100%;
    line-height: 55px;
  }

  .header-nav li a {
    font-size: var(--p);
    color: var(--title);
    text-align: left;
    font-weight: var(--fw-400);
    padding: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
  }

  .header-nav li ul {
    display: block;
    position: relative;
    width: 100%;
    box-shadow: none;
    max-height: 0;
    top: auto;
    left: auto;
    overflow: hidden;
    padding: 0;
    background-color: transparent;
    transition: all 0.3s;
  }

  .header-nav li .header-nav__link.active + ul {
    max-height: 800px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 20px 0;
  }

  .header-nav li ul li a {
    font-size: 15px;
    text-align: left;
    padding: 0;
    border-bottom: 0;
    position: relative;
  }

  .header-nav .header__btn {
    display: block;
    width: 100%;
    margin: 20px 0 0;
    font-size: 15px;
    padding: 20px 35px 22px;
    height: auto;
    line-height: 1.2;
  }
}

@media screen and (max-width: 768px) {
  label.header-nav__toggle-menu {
    right: 0;
    top: 2px;
  }

  .header-nav,
  .header-is-visible .header-nav {
    height: calc(100vh - 69px);
    top: 69px;
  }
}

.header__container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
}

.header__btn-ghost {
  background-image: none;
  color: var(--title);
  background-color: var(--primary);
}

.header__btn {
  font-family: var(--font);
  display: inline-block;
  font-size: var(--p);
  font-weight: var(--fw-400);
  line-height: 1.6;
  color: var(--white);
  border: 0;
  text-align: center;
  margin: 0;
  color: var(--title);
  background-color: var(--white);
  padding: 15px 30px;
  transition: all 0.3s;
  border-radius: var(--border-radius);
}

.mobile-widget {
  display: none;
}

@media screen and (max-width: 1268px) {
  .mobile-widget {
    display: flex;
    position: relative;
    width: 100%;
    padding-top: 1rem;
  }
}

.mobile-widget__content {
  width: 100%;
  background: var(--background-hover);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

.mobile-widget__container {
  position: relative;
  width: 100%;
}

.mobile-widget__heading {
  margin-bottom: 1rem;
  font-family: var(--font);
  font-size: var(--p);
  font-weight: 400;
  letter-spacing: normal;
  text-transform: uppercase;
  margin-top: -0.625rem;
  padding-bottom: 0.875rem;
  border-bottom: 1px solid var(--white);
}

.mobile-widget__columns {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.mobile-widget__social {
  flex: 1;
  max-width: 100%;
  box-sizing: border-box;
}

.mobile-widget__social i {
  padding: 10px;
  font-size: 20px;
}

.mobile-widget__social img {
  padding: 10px;
  width: 120px;
}

.mobile-widget__link {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  align-items: center;
  height: 100%;
  line-height: 1;
  text-align: center;
  color: var(--title);
  border: none;
  text-decoration: none;
  box-shadow: none;
  transition: background-color 0.2s;
}

.mobile-widget__title {
  transition: color 0.2s;
  font-family: var(--font);
  white-space: nowrap;
  font-size: var(--p);
  font-weight: var(--fw-400);
  font-style: normal;
  text-transform: none;
  line-height: 1.14;
  color: var(--title);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  font-size: var(--p);
  font-weight: var(--fw-500);
  font-family: var(--font);
  color: var(--white);
  border: none;
  outline: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all 0.2s;
}

.button__icon {
  font-size: 18px;
  margin-left: 15px;
}

.button--primary {
  background-color: var(--primary);
}

.button--primary:hover:not(.button--disabled) {
  color: var(--white);
  background-color: var(--primary-hover);
}

.button--disabled {
    background-color: var(--disabled);
    color: var(--white);
    cursor: not-allowed;
}

.button--secondary {
  background-color: var(--title);
}

.button--secondary:hover {
  color: var(--white);
  background-color: var(--title-hover);
}

.button--danger {
  background-color: var(--danger);
}

.button--danger:hover {
  color: var(--white);
  background-color: var(--danger-hover);
}

.button--success {
  background-color: var(--success);
}

.button--success:hover {
  color: var(--white);
  background-color: var(--success-hover);
}

.button--warning {
  background-color: var(--warning);
  color: var(--title);
}

.button--warning:hover {
  background-color: var(--warning-hover);
}

.button--light {
  background-color: var(--background);
  color: var(--title);
}

.button--light:hover {
  background-color: var(--title);
}

.button--white {
  background-color: var(--white);
  color: var(--primary);
}

.button--white:hover {
  color: var(--primary);
  background-color: var(--background);
}

.button--full {
  width: 100%;
}

.button--no-border {
  border-radius: 0 !important;
}

/* News Slider */
.newsSlider {
  width: 100%;
  height: 100%;
  max-width: 1320px;
  margin: 20px auto 0 auto;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.newsSlider__slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.newsSlider__slide {
  min-width: 100%;
  box-sizing: border-box;
}

.newsSlider__controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 1;
}

.newsSlider__control {
  background: rgba(0, 0, 0, 0.7);
  border: none;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  transition: background-color 0.3s ease;
}

.newsSlider__control:hover {
  background: rgba(0, 0, 0, 0.9);
}
/* News Slider */

.newSlider {
  width: 100%;
  height: 100%;
  max-width: 1320px;
  margin: 20px auto 0 auto;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.newSlider__slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.newSlider__slide {
  min-width: 100%;
  box-sizing: border-box;
}

.newSlider__image {
  display: block;
  position: relative;
  
  width: 100%;
  max-height: 344px;
  object-fit: cover;
}

.newSlider__image img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.newSlider__image--mobile {
  display: block;
  max-height: 500px;
}

.newSlider__controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}

.newSlider__control {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 12px;
  border: none;
  color: #ffffff;
  margin: 10px;
  padding: 10px;
  cursor: pointer;
  line-height: 0px;
  pointer-events: auto;
  z-index: 10;
}

.newSlider__dots {
  position: absolute;
  bottom: 10px;
  width: 100%;
  display: flex;
  justify-content: center;
  pointer-events: auto;
}

.newSlider__dot {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 12px;
  cursor: pointer;
}

.newSlider__dot--active {
  background: #ffffff;
}

@media (max-width: 768px) {
  .newSlider {
    margin: 0;
    border-radius: 0px;
  }

  .newSlider__image {
    border-radius: 0px;
  }
}

/* ***** Sliders Marcas *****  */

.partners-slider {
  display: block;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  border: 2px solid var(--border);
  border-radius: var(--border-radius);
}

.partners-slider ul {
  display: block;
  list-style: none;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
}

.partners-slider ul li {
  display: block;
  float: left;
  position: relative;
  width: 220px;
  height: 100px;
  line-height: 100px;
  text-align: center;
}

.partners-slider ul li img {
  vertical-align: middle;
  max-width: 120px;
  width: 100%;
  max-height: 100%;
  transition: all 0.3s ease;
  filter: grayscale(100%);
}

.partners-slider ul li img:hover {
  filter: grayscale(0%);
}

/* ***** Partners NTC *****  */
.partners-ntc {
  grid-column-gap: 5rem;
  grid-row-gap: 4px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.partners-ntc__img {
  position: relative;
}

.partners-ntc__img img {
  max-width: 100%;
  display: inline-block;
}

.partners-ntc__float {
  -webkit-backdrop-filter: blur(11px);
  backdrop-filter: blur(11px);
  background-color: rgba(0, 0, 0, 0.25);
  border-radius: var(--border-radius);
  justify-content: center;
  align-items: center;
  width: 35%;
  padding: 2rem;
  display: flex;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: -7%;
  right: auto;
}

@media screen and (max-width: 479px) {
  .partners-ntc {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 767px) {
  .partners-ntc {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .partners-ntc__float {
    left: -4%;
    right: 0;
  }

  .partners-ntc__info {
    order: -9999;
    padding-top: 90px;
  }
}

.partners-primary {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.partners-primary__groups {
  grid-template-rows: auto;
  grid-template-columns: 1fr 0.75fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: flex;
  position: relative;
}

.partners-primary__groups--marcasporprias {
  width: 100%;
  margin-left: 10%;
  margin-right: 10%;
}

.partners-primary__groups--xxlarge {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--border-radius);
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius);
}

.partners-primary__groups--ntc {
  -webkit-backdrop-filter: blur(11px);
  backdrop-filter: blur(11px);
  background-color: rgba(0, 0, 0, 0.25);
  border-radius: var(--border-radius);
  justify-content: center;
  align-items: center;
  width: 35%;
  padding: 2rem;
  display: flex;
  position: absolute;
  top: 10%;
  bottom: auto;
  left: auto;
  right: 0%;
}

@media screen and (max-width: 479px) {
  .partners-primary {
    grid-template-columns: 1fr;
  }

  .partners-primary__groups {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }
}

@media screen and (max-width: 767px) {
  .partners-primary {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .partners-primary__groups {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }
}

@media screen and (max-width: 991px) {
  .partners-primary {
    grid-column-gap: 3rem;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

  .partners-primary__groups--ntc {
    width: 30%;
  }

  .partners-primary__groups--ntc img {
    max-width: 100%;
    display: inline-block;
  }
}

.partners-brand-primary {
  margin-top: 50px;
}

.partners-brand-primary-box {
  background-color: var(--white);
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  justify-items: center;
  padding: 1rem;
  display: grid;
  border: 2px solid var(--border);
  border-radius: var(--border-radius);
}

.partners-brand-primary-box__destac {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 0.5fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  justify-items: center;
  min-height: 10rem;
  padding: 1;
  display: grid;
}

.partners-brand-primary-box__destac img {
  max-width: 100%;
  display: inline-block;
}

.partners-brand-primary-box__text {
  padding: 2rem;
}

.partners-brand-primary-box__text p {
  font-weight: var(--fw-300);
  font-size: var(--p);
}

.partners-brand {
  padding-top: 4rem;
  padding-bottom: 4rem;
  text-align: center;
}

.partners-brand {
  font-size: var(--h4);
  font-weight: var(--fw-500);
}

.partners-brand-secondary {
  margin: 15px auto;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.partners-brand-secondary__box {
  background-color: var(--white);
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  justify-items: center;
  padding: 1rem;
  display: grid;
  border: 2px solid var(--border);
  border-radius: var(--border-radius);
}

.partners-brand-secondary__box img:first-child {
  width: 120px;
  max-width: 100%;
  display: inline-block;
}

.partners-brand-secondary__box img {
  max-width: 100%;
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .partners-brand-secondary {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  }
}

/* ***** Blog Post ***** */

.blog-post {
  padding-top: 50px;
  margin: 0 auto;
}

.blog-post__content {
  width: 100%;
  padding: 20px;
  border: 1px solid transparent;
  background-color: var(--white);
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
}

.blog-post__content:hover {
  transform: scale(1.01);
}

.blog-post__content:focus-visible {
  border: 1px solid var(--primary);
  outline: none;
}

.blog-post__image {
  width: 100%;
  height: 220px;
  border-radius: 8px;
  margin-bottom: 20px;

  object-fit: cover;
}

.blog-post__header {
  margin-bottom: 20px;
}

.blog-post__header h2,
.blog-post__header h3  {
  font-size: var(--p);
  font-weight: var(--fw-600);
  color: var(--title);

  height: 48px;

  /* Limita o texto a 2 linhas */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}


.blog-post__body p {
  font-size: var(--small);
  font-weight: var(--fw-400);
  color: var(--title);
  line-height: 1.6;

  height: 58px;

  /* Limita o texto a 3 linhas */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-post__prograganda {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .fag-home__section--img {
    margin-bottom: 0rem !important;
  }
}

.fag-home__section {
  margin: 0;
  padding: 50px 0;
  width: 100%;
  position: relative;
}

.fag-home__content {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.fag-home__content--text {
  margin: 1rem auto;
}

.fag-home__content--text h6 {
  color: var(--white);
  font-weight: var(--fw-600);
  margin-bottom: 15px;
}

.fag-home__content--text h4 {
  color: var(--white);
}

.fag-home__content--text p {
  color: var(--white);
  font-weight: var(--fw-300);
}

.fag-home__section--img {
  width: 100%;
  margin-top: 2rem;
  margin-bottom: -13rem;
}

.fag-home__content--text--list {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.button-group {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

@media screen and (max-width: 479px) {
  .fag-home__content--text--list,
  .fag-home__content {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 767px) {
  .fag-home__content {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 991px) {
  .fag-home__content {
    grid-column-gap: 3rem;
    grid-row-gap: 2rem;
  }
}

/* ***** Testimonial *****  */

.review-slider {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  padding-top: 20px;
}

.review-slider__wrapper {
  display: flex;
  transition: transform 0.5s ease;
}

.review-slider__slide {
  min-width: 100%;
  box-sizing: border-box;
  padding: 0px;
  text-align: left;
}

.review-slider__text {
  font-size: var(--p);
  margin-bottom: 10px;
  color: var(--title);
}

.review-slider__author {
  font-size: var(--p);
  color: var(--primary);
}

.review-slider__dots {
  position: relative;
  padding: 15px 0;
  left: 0;
}

.review-slider__dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ccc;
  margin: 0 5px;
  cursor: pointer;
}

.review-slider__dot--active {
  background-color: var(--primary);
}

@media (min-width: 768px) {
  .review-slider__text {
    font-size: var(--p);
  }

  .review-slider__author {
    font-size: var(--small);
  }
}

.marcas {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--gap-small);
  margin: 0;
  padding: 0;
  width: 100%;
}

@media (max-width: 1140px) {
  .marcas {
    padding: 50px 0;
    grid-template-columns: 1fr;
  }
}

.marcas__right {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: var(--border-radius);
  background: var(--white);
  cursor: pointer;
  padding: 1rem;
  gap: 0.75rem;
  flex-direction: row;
  height: 100%;
}

.marcas__image {
  width: 100%;
  height: auto;
}

.marcas__image img {
  max-width: 250px;
}

.marcas__heading {
  font-weight: var(--fw-500);
  font-size: var(--h4);
}

.marcas__description {
  font-weight: var(--fw-300);
  font-size: var(--p);
}

.sustentabilidade {
  padding-bottom: 15px;
  width: 100%;
}

.sustentabilidade__icon {
  flex-shrink: 0;
  padding-bottom: 15px;
}

.sustentabilidade__icon img {
  width: 50px;
  height: 50px;
}

.sustentabilidade__content {
  flex: 1;
}

.sustentabilidade__title {
  font-size: var(--p);
  color: var(--title);
  font-weight: var(--fw-600);
  margin-bottom: 10px;
}

.sustentabilidade__description {
  font-size: var(--p);
  color: var(--title);
  margin-bottom: 10px;
}

.sustentabilidade__button {
  margin-top: 15px;
  display: inline-block;
  font-size: 14px;
  color: var(--primary);
  text-decoration: none;
  font-weight: var(--fw-600);
}

.sustentabilidade__button:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .sustentabilidade {
    width: 100%;
  }
}

.fag-video {
  background-position: center;
  background-size: cover;
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.fag-video img {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fag-video__play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: none;
}

.fag-video__play svg {
  width: 80px;
  height: 80px;
  fill: var(--white);
  opacity: 0.9;
  filter: drop-shadow(1px 0 6px rgba(0, 0, 0, 0.5));
  transition: opacity 0.3s ease;
}

.fag-video:hover .fag-video__play svg {
  opacity: 1;
}

/* ***** NEWSLETTER *****  */

.newsletter {
  padding-block-start: 40px;
  padding-block-end: 0px;
  text-align: left;
}

.newsletter__form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.newsletter__input {
  background: transparent;
  border: 2px solid var(--border);
  color: var(--title);
  padding: 10px 20px;
  margin: 5px;
  font-size: var(--p);
  border-radius: var(--border-radius);
  outline: none;
}

.newsletter__input:hover {
  background: transparent;
  border: 2px solid var(--primary);
}

.newsletter__input::placeholder {
  color: var(--title);
}

.newsletter__input--name {
  flex: 1 1 200px;
}

.newsletter__input--email {
  flex: 2 1 300px;
}

.newsletter__button {
  background-color: var(--primary);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 10px 20px;
  margin: 5px;
  font-weight: var(--fw-300);
  font-size: var(--p);
  border-radius: var(--border-radius);
  cursor: pointer;
  text-align: center;
  transition: background-color 0.3s, color 0.3s;
}

.newsletter__button:hover {
  background-color: var(--white);
  color: var(--primary);
}

@media (max-width: 600px) {
  .newsletter__input--name,
  .newsletter__input--email {
    flex: 1 1 100%;
    margin: 5px 0;
  }

  .newsletter__button {
    width: 100%;
  }
}

/* ***** FOOTER PRINCIPAL *****  */

.footer {
  background-color: var(--white);
  width: 100%;
  height: auto;
  padding: 50px 0 0 0;
}

.footer__list {
  position: relative;
  margin-bottom: 20px;
}

.footer__list h4 {
  font-weight: var(--fw-600);
  font-size: var(--h5);
  color: var(--title);
  margin-bottom: 20px;
}

.footer__list ul li a {
  font-weight: var(--fw-400);
  font-size: 14px;
  color: var(--title);
  margin: 5px 0;
  position: relative;
}

.footer__list li:hover {
  opacity: 1;
  cursor: pointer;
  text-decoration: underline;
}

.footer__list ul {
  list-style: none;
  padding: 0;
}

.footer__list ul li {
  margin: 10px 0;
}

.footer__list ul li a:hover {
  color: var(--title);
  text-decoration: underline;
}

/* ***** FOOTER COPYRIGHT *****  */

.footer__copyright {
  padding-block: 5px;
  border-block-start: 1px solid var(--border);
}

.footer__copyright-social {
  grid-column-gap: 0.75rem;
  grid-row-gap: 0rem;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  align-items: start;
  justify-items: start;
  display: grid;
}

.footer__copyright-social-link {
  color: var(--title);
  align-items: center;
  font-size: 14px;
  text-decoration: none;
  display: flex;
  border-radius: 50%;
  transition: 0.25s ease;
}

.footer__copyright-social a {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
}

.footer__copyright-social i {
  font-size: 20px;
}

.footer__copyright-title {
  font-weight: var(--fw-300);
  font-size: var(--small);
  color: var(--title);
  margin-block: 25px;
}

.footer__copyright-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__copyright-item {
  display: inline-block;
  margin: 0 10px;
}

.footer__copyright-link {
  color: #09256d;
  text-decoration: none;
}

.footer__copyright-link:hover {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .footer__copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer__copyright-social {
    margin-block-start: 0;
  }
}

@media (max-width: 768px) {
  .footer__copyright-list {
    display: flex;
    flex-direction: column;
  }

  .footer__copyright-item {
    display: inline-block;
    margin: 5px 0;
  }

  .footer__copyright {
    padding-block: 15px;
    border-block-start: 1px solid var(--border);
  }
}

/* ***** Breadcrumb *****  */

.breadcrumb {
  background-color: var(--white);
  padding: 10px 15px;
  font-family: var(--font);
  font-size: var(--p);
  color: var(--title);
  border-block-end: 1px solid var(--border);
}

.breadcrumb__list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0;
  padding: 0;
}

.breadcrumb__item {
  display: inline;
}

.breadcrumb__link {
  text-decoration: none;
  color: var(--title);
  font-weight: 400;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.breadcrumb__link:hover {
  color: var(--primary-hover);
}

.breadcrumb__item--active {
  font-weight: 600;
  color: var(--primary);
}

.breadcrumb__divider {
  color: var(--primary);
  font-size: 12px;
}

.new-breadcrumb {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 300px;
  overflow: hidden;
  max-width: 1320px;
  margin: 20px auto;
  border-radius: 8px;
}

.new-breadcrumb__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.new-breadcrumb__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.new-breadcrumb__content {
  position: absolute;
  top: 50%;
  left: 50px;
  transform: translateY(-50%);
  text-align: left;
  z-index: 3;
  color: #fff;
}

/* Banner */
.banner {
  text-align: center;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 25px 0;
}

.banner__image {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* Responsiveness */
@media (max-width: 768px) {
  .new-breadcrumb__content h2 {
    position: relative;
    text-align: left;
    font-size: 22px;
    color: #fff;
  }

  .new-breadcrumb {
    margin: 0;
    min-height: 250px;
    border-radius: 0px;
  }

  .banner {
    width: 100%;
    padding: 0;
  }

  .breadcrumb {
    font-size: 12px;
    padding: 8px 10px;
  }

  .breadcrumb__list {
    gap: 4px;
    flex-wrap: wrap;
  }

  .breadcrumb__link {
    font-size: 12px;
  }

  .breadcrumb__divider {
    font-size: 14px;
    margin: 0 3px;
  }

  .banner__image {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
  }
}

/* ***** Cookies *****  */

.cookie-card {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 300px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--border-radius);
  padding: 15px;
  margin: 15px;
  z-index: 1000;
  display: none;
  /* Ocultar por padrão */
}

.cookie-card__content {
  display: flex;
  flex-direction: column;
}

.cookie-card h4 {
  margin: 0;
  font-weight: var(--fw-500);
  font-size: var(--h4);
}

.cookie-card p {
  margin: 10px 0;
  font-weight: var(--fw-300);
  font-size: var(--p);
}

.cookie-card a {
  color: var(--primary);
  text-decoration: none;
}

.cookie-card a:hover {
  text-decoration: underline;
}

.cookie-card button {
  align-self: flex-end;
  padding: 10px 20px;
  background-color: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
}

.cookie-card button:hover {
  transition: background-color 0.3s ease, transform 0.3s ease;
  background-color: var(--primary-hover);
  transform: translateY(-2px);
}

/* ***** FAQ *****  */

.faq {
  margin: 0;
}

.faq__title h5 {
  font-weight: var(--fw-600);
  font-size: var(--h5);
  color: var(--title);
}

.faq__subtitle p {
  color: var(--title);
  font-weight: var(--fw-400);
  font-size: var(--p);
  margin-bottom: 30px;
}

.faq__img {
  width: 100%;
  max-width: 500px;
  margin: 20px;
}

.faq__accordion {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}

.faq__question {
  border-top: 1px solid var(--border);
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  display: flex;
  position: relative;
}

.faq__question--title {
  color: var(--title);
  font-weight: var(--fw-600);
  font-size: var(--p);
}

.faq__question--wrapper {
  align-self: flex-start;
  width: 2rem;
  display: flex;
}

.faq__question--wrapper---icon {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  display: flex;
}

.faq__question--body {
  overflow: hidden;
  height: 0;
  transition: height 0.3s ease;
  padding: 0 15px;
}

.faq__question--body--content {
  padding: 0px 0px 20px 0px;
  height: 100%;
  width: 100%;
}

.faq__question--body--content p {
  padding-bottom: 15px;
  color: var(--title);
  font-weight: var(--fw-400);
  font-size: var(--p);
}

@media (max-width: 480px) {
  .faq__img {
    margin: -50px;
    padding: 25px 0px;
  }
}

/* ***** Fields Styles *****  */

.field {
  margin-bottom: 15px;
}

.field__label {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
  color: var(--title);
  font-weight: 400;
}

.field__wrapper {
  margin-top: 5px;
}

.field__required {
  color: var(--danger);
}

.field__wrapp {
  position: relative;
}

.field__flex {
  display: flex;
  justify-content: space-between;
}

.field__link {
  font-size: 12px;
  color: var(--primary);
  text-decoration: none;
  margin-left: auto;
}

.field__link:hover {
  text-decoration: underline;
}

.field__input {
  display: block;
  width: 100%;
  box-sizing: border-box;
  border: 2px solid var(--border);
  background-color: var(--white);
  outline: none;
  color: var(--title);
  margin-bottom: 0;
  padding: 0.675rem 0.875rem;
  font-weight: var(--fw-400);
  font-size: var(--p);
  line-height: 1.6;
  border-radius: var(--border-radius);
}

textarea.field__input {
  height: auto;
  resize: vertical;
}

.field__input:hover,
.field__input:focus {
  border: 2px solid var(--primary);
}

/* ***** Checkbox Styles *****  */

.custom-checkbox {
  display: flex;
  align-items: center;
}

.custom-checkbox__input {
  display: none;
}

.custom-checkbox__label {
  position: relative;
  padding-left: 2rem;
  cursor: pointer;
  user-select: none;
  font-weight: var(--fw-300);
  font-size: var(--p);
  color: var(--title);
}

.custom-checkbox__label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1rem;
  height: 1rem;
  border: 2px solid var(--title);
  border-radius: var(--border-radius);
  background-color: var(--white);
  transition: background-color 0.3s, border-color 0.3s;
}

.custom-checkbox__input:checked + .custom-checkbox__label::before {
  background-color: var(--primary);
  border-color: var(--primary);
}

.custom-checkbox__label::after {
  content: "";
  position: absolute;
  left: 0.375rem;
  top: 0.125rem;
  width: 0.3125rem;
  height: 0.625rem;
  border: solid var(--white);
  border-width: 0 0.2rem 0.2rem 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.3s;
}

.custom-checkbox__input:checked + .custom-checkbox__label::after {
  opacity: 1;
}

/* ***** Radio Styles *****  */

.custom-radio {
  display: flex;
  align-items: center;
}

.custom-radio__input {
  display: none;
}

.custom-radio__label {
  position: relative;
  padding-left: 2rem;
  cursor: pointer;
  user-select: none;
  font-weight: var(--fw-300);
  font-size: var(--p);
  color: var(--title);
}

.custom-radio__label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1rem;
  height: 1rem;
  border: 2px solid var(--title);
  border-radius: 50%;
  background-color: var(--white);
  transition: background-color 0.3s, border-color 0.3s;
}

.custom-radio__input:checked + .custom-radio__label::before {
  background-color: var(--primary);
  border-color: var(--primary);
}

.custom-radio__label::after {
  content: "";
  position: absolute;
  left: 0.5rem;
  top: 0.5rem;
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--white);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s;
}

.custom-radio__input:checked + .custom-radio__label::after {
  opacity: 1;
}

.card-ntc {
  background: var(--white);
  display: flex;
  min-height: 0px;
  justify-content: space-evenly;
  border-radius: var(--border-radius);
  margin-top: 30px;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 30px;
  padding-right: 30px;
}

.card-ntc__img {
  text-align: center;
}

.card-ntc__img img {
  width: 200px;
  height: auto;
}

.card-ntc__text {
  position: relative;
}

.card-ntc__text p {
  color: var(--title);
  font-size: var(--p);
  font-weight: var(--fw-400);
}

.fag-marcas {
  border-radius: var(--border-radius);
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: var(--white);
  background-clip: border-box;
  border: none;
}

.fag-marcas__body {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 1px;
  padding: 30px;
}

.fag-marcas__body img {
  width: 100%;
  max-width: 150px;
  height: 80px;
  display: block;
  margin: 0 auto;
}

.fag-marcas__body p {
  color: var(--title);
  font-size: 14px;
  margin: 0;
  width: 100%;
  text-align: justify;
}

.fag-ntc {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.fag-ntc h3 {
  font-size: 35px;
  line-height: 45px;
  font-weight: var(--fw-400);
  color: var(--title);
  margin-bottom: 15px;
  text-align: center;
}

.fag-ntc h4 {
  font-size: 25px;
  font-weight: var(--fw-400);
  color: var(--title);
  margin-bottom: 50px;
  text-align: center;
}

.fag-ntc img {
  max-width: 250px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .fag-ntc h3 {
    font-size: 20px;
    line-height: 1.6;
  }
}

.fag-ntc-pc {
  font-family: var(--font);
  color: var(--title);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  height: 100%;
}

.fag-ntc-pc h2 {
  font-size: 30px;
  font-weight: var(--fw-600);
  margin-bottom: 15px;
}

.fag-ntc-pc p {
  font-size: var(--p);
  font-weight: var(--fw-400);
  margin-bottom: 20px;
}

.fag-ntc-pc--img {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  padding: 20px;
}

.fag-ntc-pc--img-alt {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  padding: 20px;
  margin-bottom: -7rem;
}

.fag-ntc-pc--img-green {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  padding: 20px;
  margin-bottom: 0;
}

.fag-ntc-pc--img-green img {
  width: 100%;
  max-width: 200px;
  height: auto;
}

.fag-ntc-pc--img img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 768px) {
  .fag-ntc-pc h2 {
    font-size: 20px;
    line-height: 25px;
  }

  .fag-ntc-pc--img img {
    width: 100%;
  }

  .fag-ntc-pc--img-alt {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    padding: 20px;
    margin-bottom: 0;
  }
}

.fag-contanto {
  margin: 5px auto;
  background-color: var(--white);
  padding: 30px;
  width: 100%;
  border-radius: var(--border-radius);
}

.fag-contanto__icon {
  flex-shrink: 0;
  padding-bottom: 15px;
}

.fag-contanto__icon svg {
  width: 25px;
  height: 25px;
  fill: var(--title);
  margin-bottom: 15px;
}

.fag-contanto__icon i {
  font-size: 25px;
  fill: var(--title);
  margin-bottom: 15px;
}

.fag-contanto__icon img {
  width: 25px;
  height: 25px;
  fill: var(--title);
  margin-bottom: 15px;
}

.fag-contanto__content {
  flex: 1;
}

.fag-contanto__title {
  font-size: var(--h5);
  color: var(--title);
  font-weight: var(--fw-600);
  margin-bottom: 10px;
}

.fag-contanto__subtitle {
  font-size: var(--p);
  color: var(--title);
  margin-bottom: 20px;
}

.fag-contanto__description {
  font-size: var(--p);
  color: var(--title);
  margin-bottom: 0px;
}

.fag-contanto__button {
  margin-top: 15px;
  display: inline-block;
  font-size: 14px;
  color: var(--primary);
  text-decoration: none;
  font-weight: var(--fw-600);
}

.fag-contanto__button:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .fag-contanto {
    width: 100%;
  }
}

.fag-ntc-garantia {
  margin: 0 auto;
  background-color: var(--background);
  padding: 30px;
  width: 100%;
  border-radius: var(--border-radius);
}

.fag-ntc-garantia__icon {
  flex-shrink: 0;
  padding-bottom: 15px;
}

.fag-ntc-garantia__icon svg {
  width: 25px;
  height: 25px;
  fill: var(--title);
  margin-bottom: 15px;
}

.fag-ntc-garantia__content {
  flex: 1;
}

.fag-ntc-garantia__title-alt {
  font-size: 18px;
  color: var(--title);
  font-weight: bold;
  margin-bottom: 5px;
}

.fag-ntc-garantia__title {
  font-size: var(--h5);
  color: var(--title);
  font-weight: var(--fw-600);
  margin-bottom: 0px;
}

.fag-ntc-garantia__subtitle {
  font-size: var(--p);
  color: var(--title);
  margin-bottom: 0px;
}

.blog__result p {
  margin: 0 0 16px;
  font-size: var(--p);
  line-height: 1.8;
  color: var(--title);
}

.blog__result u a {
  font-weight: bold;
  border-bottom: 1px dashed var(--primary);
}

.blog__tag {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.blog__tag--item {
  background-color: var(--primary);
  color: var(--white);
  border-radius: 20px;
  padding: 8px 16px;
  font-size: var(--small);
  text-transform: capitalize;
  transition: background-color 0.3s ease;
}

.blog__tag--item:hover {
  color: var(--white);
  background-color: var(--primary-hover);
}

.blog__tag--item div {
  font-weight: bold;
}

.blog__result p:last-of-type {
  margin-top: 20px;
  font-size: 14px;
  color: var(--title);
}

@media (max-width: 768px) {
  .blog__tag--item {
    font-size: 12px;
    padding: 6px 12px;
  }
}

.contador-card {
  text-align: center;
  background-color: var(--white);
  border: none;
  border-radius: 10px;
  padding: 20px;
  width: 100%;
}

.contador-card h4 {
  font-size: 60px;
  margin: 0;
  color: var(--primary);
}

.contador-card p {
  font-size: var(--p);
  color: var(--title);
  margin: 5px 0 0;
}

@media screen and (max-width: 768px) {
  .contador-card h4 {
    font-size: 30px;
  }
}

/* ***** Timeline *****  */

.timeline {
  margin: 70px auto;
  position: relative;
}

.timeline__wrapper {
  margin: 220px 0;
  padding: 0;
  border-top: 2px solid var(--border);
  list-style: none;
}

.timeline__content {
  margin: 0;
}

.timeline__content h4 {
  font-weight: var(--fw-500);
  font-size: var(--h4);
  color: var(--title);
}

.timeline__content h4 {
  font-weight: var(--fw-500);
  font-size: var(--h4);
  color: var(--primary);
}

.timeline__content p {
  color: var(--title);
  font-weight: var(--fw-300);
  font-size: var(--p);
}

.timeline__item {
  float: left;
  width: 20%;
  padding-top: 30px;
  position: relative;
}

.timeline__item h4 {
  margin: 0;
  font-weight: var(--fw-400);
  font-size: var(--h4);
  color: var(--primary);
}

.timeline__item span {
  width: 15px;
  height: 15px;
  margin-left: -14px;
  background: var(--primary);
  border-radius: 50%;
  position: absolute;
  top: -9px;
  border: 2px solid var(--white);
}

.timeline__item p {
  font-weight: var(--fw-300);
  font-size: var(--p);
  width: 100%;
  margin: 0 auto;
}

.timeline__item-content--top {
  position: absolute;
  bottom: 0;
  margin-bottom: 70px;
}

.timeline__item-content--bottom {
  position: absolute;
  margin-top: 0;
}

.timeline__item-content--top h4 {
  font-weight: var(--fw-500);
  font-size: var(--h4);
  color: var(--primary);
}

.timeline__item-content--bottom h4 {
  font-weight: var(--fw-500);
  font-size: var(--h4);
  color: var(--primary);
}

.timeline__item-content--top p {
  font-weight: var(--fw-300);
  font-size: var(--p);
}

.timeline__item-content--bottom p {
  font-weight: var(--fw-300);
  font-size: var(--p);
}

.timeline__item-bottom {
  position: absolute;
  margin: 5px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .timeline__wrapper:before {
    top: 60px !important;
  }

  .timeline__wrapper:after {
    top: inherit !important;
  }

  .timeline__wrapper {
    margin: 60px 0 !important;
    border-left: 2px solid var(--border);
    padding-left: 0 !important;
    padding-top: 0px !important;
    border-top: 0 !important;
    margin-left: 0px !important;
  }

  .timeline__item {
    height: 100px;
    float: none !important;
    width: 100% !important;
  }

  .timeline__item:last-child {
    margin: 0;
    bottom: 0 !important;
    height: 120px;
  }

  .timeline__item:last-child .timeline__item-content--top {
    margin-bottom: 0 !important;
    top: 20px;
    width: 100% !important;
  }

  .timeline__item span {
    left: 0 !important;
  }

  .timeline__item span.timeline__item-marker--top:before,
  .timeline__item span.timeline__item-marker--top:after,
  .timeline__item span.timeline__item-marker--bottom:before,
  .timeline__item span.timeline__item-marker--bottom:after {
    content: none !important;
  }

  .timeline__item p {
    text-align: left !important;
    width: 100% !important;
    margin: 0 auto !important;
    margin-top: 0px !important;
  }

  .timeline__item-content--top {
    width: 90% !important;
    float: right !important;
    right: 0;
    top: -15px;
    bottom: 0;
    margin-bottom: 0px;
  }

  .timeline__item-content--bottom {
    width: 90% !important;
    float: right !important;
    right: 0;
    top: -10px;
    bottom: 0;
    margin-bottom: 0px;
  }

  .timeline__item span {
    margin-left: -8px !important;
  }
}

.vagas {
  position: relative;
  height: 350px;
  width: 100%;
  overflow: hidden;
}

.vagas img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.vagas__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  z-index: 2;
  padding: 20px;
}

.vagas__content {
  max-width: 600px;
  z-index: 3;
}

.vagas__content p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* ***** Login *****  */

.login {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 50px 0;
}

.login__container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.login__wrapp {
  width: 100%;
  max-width: 400px;
  padding: 20px;
  border: 1px solid var(--border-input);
  border-radius: var(--border-radius);
}

.login__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.login__title {
  margin: 20px 0;
  font-size: 24px;
  color: var(--title);
}

.login__form {
  width: 100%;
}

.login__field {
  margin-bottom: 15px;
  width: 100%;
}

/* ***** Alerts *****  */

.alert {
  padding: 15px;
  font-size: var(--p);
  font-family: var(--font);
  margin-bottom: 20px;
  border: 1px solid transparent;
  position: relative;
  border-radius: var(--border-radius);
  display: none;
  /* Oculto inicialmente */
  transition: opacity 0.5s ease;
}

.alert--danger {
  background-color: var(--danger);
  color: var(--white);
  border-color: var(--danger);
}

.alert--success {
  background-color: var(--success);
  color: var(--white);
  border-color: var(--success);
}

.alert--primary {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.alert--info {
  background-color: var(--info);
  color: var(--white);
  border-color: var(--info);
}

.alert--warning {
  background-color: var(--warning);
  color: var(--title);
  border-color: var(--warning);
}

.alert--show {
  display: block;
  opacity: 1;
}

.alert--hide {
  opacity: 0;
}

/* Utility class for margin */
.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

/* CSS para a estrutura BEM do modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1050;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  /* Evita scroll na página por trás do modal */
  outline: 0;
}

.modal__backdrop {
  display: none;
  position: fixed;
  z-index: 1040;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.5;
}

.modal.show,
.modal__backdrop.show {
  display: block;
}

.modal__dialog {
  position: fixed;
  /* Alterado para fixed para manter a posição centralizada */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 600px;
  max-height: 90%;
  overflow: auto;
  /* Permite scroll se necessário */
  pointer-events: none;
}

.modal__content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  pointer-events: auto;
  background-color: var(--white);
  background-clip: padding-box;
  border: 1px solid var(--border);
  border-radius: var(--border-radius);
  outline: 0;
  overflow-y: auto;
}

.modal__header,
.modal__body,
.modal__footer {
  padding: 1rem;
}

.modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.modal__title {
  font-size: var(--p);
  margin-bottom: 0;
}

.modal__close {
  font-size: 30px;
  cursor: pointer;
}

.modal__body {
  position: relative;
  flex: 1 1 auto;
  overflow-y: auto;
}

.modal__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  border-top: 1px solid var(--border);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

@media (max-width: 768px) {
  .modal__dialog {
    width: 100%;
    max-width: none;
    height: 100%;
    max-height: none;
    margin: 0;
    transform: none;
    top: 0;
    left: 0;
  }
}

/* Estilo geral para a seção de política de privacidade */

.privacy-policy {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  margin: 20px;
  padding: 20px;
  border-radius: var(--border-radius);
  background-color: #f9f9f9;
}

.privacy-policy__title,
.privacy-policy__subtitle {
  font-weight: bold;
  color: #1c2b33;
}

.privacy-policy__title {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.privacy-policy__subtitle {
  font-size: 1.2em;
  margin: 20px 0 10px;
}

.privacy-policy__text {
  margin-bottom: 15px;
  font-size: 1em;
}

.privacy-policy__site {
  color: var(--primary);
  text-decoration: none;
}

.privacy-policy__site:hover {
  text-decoration: underline;
}

.privacy-policy__company {
  font-weight: bold;
}

.privacy-policy__link {
  color: var(--primary);
  text-decoration: none;
}

.privacy-policy__link:hover {
  text-decoration: underline;
}

.privacy-policy__ip {
  font-style: italic;
}

.privacy-policy__anon {
  font-style: italic;
  color: #666;
}

.privacy-policy__list {
  list-style: disc;
  margin-left: 20px;
}

.privacy-policy__list-item {
  margin-bottom: 10px;
}

/* ***** Panel *****  */

.page {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  min-height: 100vh;
}

@media only screen and (max-width: 767px) {
  .page {
    overflow: hidden;
  }
}

.page__title {
  font-size: 24px;
  font-weight: 400;
  color: #ffffff;
}

@media only screen and (max-width: 767px) {
  .page__title {
    font-size: 20px;
  }
}

.page__breadcrumbs {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 500;
}

@media only screen and (max-width: 767px) {
  .page__breadcrumbs {
    font-size: 12px;
  }
}

.page__breadcrumbs .icon {
  width: 12px;
  height: 12px;
  margin: -2px 14px 0;
  fill: #ffffff;
}

@media only screen and (max-width: 767px) {
  .page__breadcrumbs .icon {
    margin: -1px 10px 0;
  }
}

.page__breadcrumbs .page__link {
  color: #a2a6aa;
  transition: color 0.2s;
}

.page__breadcrumbs .page__link:hover {
  color: #ffffff;
}

.page__text {
  display: inline;
  font-weight: 400;
  color: #ffffff;
}

.page__line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
}

@media only screen and (max-width: 767px) {
  .page__line {
    margin-top: 32px;
  }
}

.page__nav {
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  .page__nav {
    flex-grow: 1;
    -webkit-overflow-scrolling: touch;
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .page__nav::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
  }
}

.page__nav .page__link {
  position: relative;
  display: flex;
  align-items: center;
  height: 54px;
  padding: 2px 24px 0;
  font-size: 16px;
  font-weight: 500;
  color: #a2a6aa;
  transition: color 0.2s;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

@media only screen and (max-width: 767px) {
  .page__nav .page__link {
    padding: 2px 16px 0;
    flex-shrink: 0;
  }
}

.page__nav .page__link:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  transition: all 0.2s;
}

.page__nav .page__link:hover,
.page__nav .page__link.active {
  color: #ffffff;
}

.page__nav .page__link.active:before {
  height: 2px;
  background: var(--primary);
}

.page__date {
  position: relative;
  flex-shrink: 0;
  width: 160px;
}

@media only screen and (max-width: 767px) {
  .page__date {
    width: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    margin-left: 24px;
  }
}

.page__date input {
  width: 100%;
  height: 48px;
  padding: 0 18px 0 58px;
  border-radius: var(--border-radius);
  background: rgba(255, 255, 255, 0.07);
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  cursor: pointer;
}

@media only screen and (max-width: 767px) {
  .page__date input {
    padding: 0;
    border-radius: var(--border-radius);
    font-size: 16px;
    opacity: 0;
  }
}

.page__date .icon {
  position: absolute;
  top: 50%;
  left: 18px;
  z-index: 1;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  pointer-events: none;
  fill: #ffffff;
}

@media only screen and (max-width: 767px) {
  .page__date .icon {
    left: 12px;
  }
}

.page__body {
  margin: 0 auto;
  background-color: var(--background-hover);
}

.page__container {
  padding: 40px 0;
}

.card {
  position: relative;
  margin-top: 24px;
  padding: 24px;
  background: #ffffff;
  border-radius: var(--border-radius);
}

.card__head {
  display: flex;
  align-items: flex-start;
}

.card__title {
  margin-right: auto;
  font-size: 18px;
  font-weight: 400;
}

@media only screen and (max-width: 767px) {
  .card__title {
    padding-top: 1px;
    font-size: 16px;
  }
}

.settings {
  display: flex;
  align-items: flex-start;
}

@media only screen and (max-width: 1023px) {
  .settings {
    display: block;
    padding: 24px;
    border-radius: var(--border-radius);
    background: #ffffff;
  }
}

.settings .card {
  flex-grow: 1;
  margin: 0 0 0 24px;
  padding: 32px;
}

@media only screen and (max-width: 1023px) {
  .settings .card {
    margin: 0;
    padding: 0;
    border-radius: var(--border-radius);
  }
}

.settings__menu {
  position: sticky;
  top: 20px;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  width: 417px;
  padding: 24px;
  border-radius: var(--border-radius);
  background: #ffffff;
}

@media only screen and (max-width: 1259px) {
  .settings__menu {
    width: 320px;
  }
}

@media only screen and (max-width: 1023px) {
  .settings__menu {
    flex-direction: row;
    width: auto;
    margin-bottom: 32px;
    padding: 0;
    border-radius: var(--border-radius);
  }
}

@media only screen and (max-width: 767px) {
  .settings__menu {
    margin: 0 -24px 24px;
    -webkit-overflow-scrolling: touch;
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .settings__menu::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
  }

  .settings__menu:before,
  .settings__menu:after {
    content: "";
    flex-shrink: 0;
    width: 24px;
  }
}

.settings__link {
  display: flex;
  align-items: center;
  padding: 15px;
  border-radius: var(--border-radius);
  font-size: 18px;
  font-weight: 400;
  color: #1a1c1e;
  transition: all 0.2s;
}

@media only screen and (max-width: 1259px) {
  .settings__link {
    padding: 16px;
    font-size: 16px;
  }
}

@media only screen and (max-width: 1023px) {
  .settings__link {
    position: relative;
    height: 54px;
    padding: 0 24px 0;
    border-radius: var(--border-radius);
    flex-shrink: 0;
    color: #a2a6aa;
  }

  .settings__link:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #edf1f3;
    transition: all 0.2s;
  }
}

.settings__link .icon {
  transition: fill 0.2s;
}

.settings__link .icon-arrow-next {
  font-size: 24px;
  margin-left: auto;
}

@media only screen and (max-width: 1023px) {
  .settings__link .icon-arrow-next {
    display: none;
  }
}

.settings__link:hover {
  background: #dce4e8;
}

.settings__link.active {
  background: var(--primary);
  box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.16);
  color: #ffffff;
}

@media only screen and (max-width: 1023px) {
  .settings__link.active {
    background: transparent;
    box-shadow: none;
    color: var(--primary);
  }

  .settings__link.active:before {
    height: 2px;
    background: var(--primary);
  }
}

.settings__link.active .settings__icon {
  box-shadow: 0px 7px 24px rgba(0, 0, 0, 0.09);
  background: #ffffff;
}

.settings__link.active .settings__icon .icon {
  fill: var(--primary);
}

.settings__link.active .icon-arrow-next {
  fill: #ffffff;
}

.settings__link:not(:last-child) {
  margin-bottom: 12px;
}

@media only screen and (max-width: 1023px) {
  .settings__link:not(:last-child) {
    margin: 0;
  }
}

.settings__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin-right: 16px;
  border-radius: 50%;
  background: #c8d1d6;
  transition: all 0.2s;
}

@media only screen and (max-width: 1259px) {
  .settings__icon {
    margin-right: 12px;
  }
}

@media only screen and (max-width: 1023px) {
  .settings__icon {
    display: none;
  }
}

.settings__icon img {
  width: 50px;
  height: auto;
}

.settings__form {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid #edf1f3;
}

@media only screen and (max-width: 767px) {
  .settings__form {
    margin-top: 24px;
    padding-top: 24px;
  }
}

.settings__photo {
  margin-bottom: 32px;
}

@media only screen and (max-width: 767px) {
  .settings__photo {
    margin-bottom: 24px;
  }
}

.settings__label {
  margin-bottom: 14px;
  font-size: 12px;
  line-height: 1.6;
  font-weight: 500;
  color: #acb5bb;
}

.settings__control {
  display: flex;
  align-items: center;
}

.settings__avatar {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  margin-right: 20px;
  border-radius: 50%;
  overflow: hidden;
  background: #dce4e8;
}

@media only screen and (max-width: 767px) {
  .settings__avatar {
    width: 62px;
    height: 62px;
  }
}

.settings__avatar .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 32px;
  height: 32px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  fill: #6c7278;
}

.settings__avatar img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 2;
}

.settings__file {
  position: relative;
  overflow: hidden;
  margin-right: 12px;
}

@media only screen and (max-width: 767px) {
  .settings__file {
    flex-grow: 1;
  }
}

.settings__file input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

@media only screen and (max-width: 767px) {
  .settings__control .settings__button {
    width: 100%;
    padding: 0 12px;
  }
}

@media only screen and (max-width: 767px) {
  .settings__delete {
    flex-shrink: 0;
    width: 51px;
    padding: 0;
    font-size: 0;
  }
}

.settings__delete .icon {
  display: none;
}

@media only screen and (max-width: 767px) {
  .settings__delete .icon {
    display: inline-block;
  }
}

.settings__form > .field:not(:last-child),
.settings__notification:not(:last-child) {
  margin-bottom: 32px;
}

@media only screen and (max-width: 767px) {
  .settings__form > .field:not(:last-child),
  .settings__notification:not(:last-child) {
    margin-bottom: 24px;
  }
}

.settings__row {
  display: flex;
  margin: 0 -10px;
}

@media only screen and (max-width: 767px) {
  .settings__row {
    display: block;
    margin: 0;
  }
}

.settings__row .field {
  flex: 0 0 calc(33.333% - 20px);
  width: calc(33.333% - 20px);
  margin: 0 10px;
}

@media only screen and (max-width: 767px) {
  .settings__row .field {
    width: 100%;
    margin: 0 0 24px;
  }
}

.settings__btns {
  display: flex;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid #edf1f3;
}

@media only screen and (max-width: 767px) {
  .settings__btns {
    margin-top: 24px;
    padding-top: 24px;
  }
}

.settings__btns .settings__button {
  min-width: 175px;
}

@media only screen and (max-width: 767px) {
  .settings__btns .settings__button {
    flex: 0 0 calc(50% - 8px);
    min-width: calc(50% - 8px);
  }
}

.settings__btns .settings__button:first-child {
  margin-right: 24px;
}

@media only screen and (max-width: 767px) {
  .settings__btns .settings__button:first-child {
    margin-right: 8px;
  }
}

@media only screen and (max-width: 767px) {
  .settings__btns .settings__button:nth-child(2) {
    margin-left: 8px;
  }
}

.settings__notification {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.settings__title {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 400;
  color: #6c7278;
}

.settings__content {
  font-size: 12px;
  line-height: 16px;
  letter-spacing: -0.01em;
  font-weight: 500;
  color: #acb5bb;
}

.settings .switch {
  flex-shrink: 0;
  margin-left: 12px;
}

.help {
  display: flex;
  align-items: flex-start;
}

@media only screen and (max-width: 1023px) {
  .help {
    display: block;
  }
}

.help .card {
  flex: 0 0 calc(100% - 441px);
  width: calc(100% - 441px);
  margin: 0 0 0 24px;
  padding: 32px;
}

@media only screen and (max-width: 1259px) {
  .help .card {
    flex: 0 0 calc(100% - 364px);
    width: calc(100% - 364px);
    padding: 24px;
  }
}

@media only screen and (max-width: 1023px) {
  .help .card {
    width: 100%;
    margin: 0;
  }
}

.help__box {
  position: sticky;
  top: 20px;
  flex-shrink: 0;
  width: 417px;
  padding: 24px;
  border-radius: var(--border-radius);
  background: #ffffff;
}

@media only screen and (max-width: 1259px) {
  .help__box {
    width: 340px;
  }
}

@media only screen and (max-width: 1023px) {
  .help__box {
    position: static;
    width: 100%;
    margin-bottom: 24px;
  }
}

.help__title {
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 400;
}

@media only screen and (max-width: 767px) {
  .help__title {
    font-size: 20px;
  }
}

.help__text {
  margin-bottom: 32px;
  font-weight: 500;
  color: #6c7278;
}

@media only screen and (max-width: 767px) {
  .help__text {
    font-size: 12px;
  }
}

.help .search {
  width: 100%;
  margin-bottom: 32px;
}

.help__label {
  margin-bottom: 14px;
  font-weight: 500;
  color: #6c7278;
}

.help__btns {
  display: flex;
  flex-wrap: wrap;
  margin: -16px 0 0 -16px;
}

@media only screen and (max-width: 767px) {
  .help__btns {
    margin: -8px 0 0 -8px;
  }
}

.help__button {
  margin: 16px 0 0 16px;
}

@media only screen and (max-width: 767px) {
  .help__button {
    margin: 8px 0 0 8px;
  }
}

.help__list {
  margin-top: 32px;
  border-top: 1px solid #edf1f3;
}

@media only screen and (max-width: 767px) {
  .help__list {
    margin-top: 32px;
    padding-top: 8px;
  }
}

.help__item {
  margin-top: 32px;
  padding: 24px;
  border: 1px solid #dce4e8;
  border-radius: var(--border-radius);
}

@media only screen and (max-width: 767px) {
  .help__item {
    margin-top: 24px;
  }
}

.help__subtitle {
  font-size: 18px;
  font-weight: 400;
}

.help__content {
  margin-top: 16px;
  font-weight: 500;
  color: #acb5bb;
}

.help__line {
  display: flex;
  margin-top: 32px;
}

.help__like {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  color: #1a1c1e;
  transition: color 0.2s;
}

.help__like .icon {
  margin-right: 8px;
  transition: fill 0.2s;
}

.help__like .icon-like-fill {
  display: none;
}

.help__like:hover,
.help__like.active {
  color: var(--primary);
}

.help__like:hover .icon,
.help__like.active .icon {
  fill: var(--primary);
}

.help__like.active .icon-like-fill {
  display: inline-block;
}

.help__like.active .icon-like {
  display: none;
}

.help__tags {
  display: flex;
  flex-grow: 1;
  margin-right: 32px;
  -webkit-overflow-scrolling: touch;
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.help__tags::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.help__tag {
  flex-shrink: 0;
  padding: 10px 23px;
  border: 1px solid #dce4e8;
  border-radius: var(--border-radius);
  font-size: 12px;
  line-height: 16px;
  letter-spacing: -0.01em;
  font-weight: 400;
}

.help__tag:not(:last-child) {
  margin-right: 6px;
}

.privacy {
  padding-top: 4rem;
  padding-bottom: 4rem;
  text-align: left;
}

.privacy h4 {
  font-size: var(--h4);
}

.privacy p {
  font-size: var(--p);
}

/* ***** certifications *****  */

.certifications-iso {
  padding: 5rem 0;
}

.certifications-iso__content {
  grid-column-gap: 5rem;
  grid-row-gap: 4px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.certifications-iso__img {
  text-align: center;
  border-radius: var(--border-radius);
  box-shadow: 0 32px 64px -12px rgba(0, 0, 0, 0.14);
}

.certifications-iso__img img {
  width: 450px;
  height: 100%;
  max-width: 100%;
  display: inline-block;
  vertical-align: middle;
}

@media screen and (max-width: 767px) {
  .certifications-iso {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

@media screen and (max-width: 991px) {
  .certifications-iso {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

@media screen and (max-width: 479px) {
  .certifications-iso__content {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 767px) {
  .certifications-iso__content {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .certifications-iso__info {
    order: -9999;
  }
}

.fag-home-rede-white {
  background-color: var(--white);
  width: 100%;
  height: auto;
  padding: 20px 0;
}

.fag-home-rede {
  text-align: left;
  gap: 20px;
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
}

.fag-home-rede h2 {
  font-family: var(--font);
  font-size: 22px;
  font-weight: 500;
  color: var(--title);
}

.fag-home-rede i {
  font-size: 25px;
  color: var(--title);
}

/* Estilo do checkbox */
.custom-checkbox {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.custom-checkbox__input {
  margin: 0;
  margin-right: 10px;
  width: 16px;
  height: 16px;
}

.custom-checkbox__label {
  font-size: 14px;
  color: var(--title);
}

.custom-checkbox__label a {
  color: var(--primary);
  text-decoration: none;
}

.custom-checkbox__label a:hover {
  text-decoration: underline;
}

.divider__img {
  text-align: left;
}

.divider__img img {
  width: 35px;
  height: auto;
}
