@charset "UTF-8";
/* Base (globais) */
@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap");
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

body {
  font-family: "IBM Plex Sans", sans-serif;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: "Lora", serif;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Layout */
.hero--home {
  width: 100%;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background-image: url("../../../assets/img/banner-background.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  /* ===============================
     HEADER
  =============================== */
}
.hero--home .hero__header {
  position: relative;
  z-index: 10;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 32px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.hero--home .hero__logo img {
  height: auto;
}
.hero--home {
  /* ===============================
     NAV
  =============================== */
}
.hero--home .hero__nav {
  display: flex;
  gap: 20px;
}
.hero--home .hero__nav-item {
  position: relative;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #F7F9FC;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.hero--home .hero__nav-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: #B18E7B;
  transition: width 0.25s ease;
}
.hero--home .hero__nav-item:hover {
  color: #B18E7B;
}
.hero--home .hero__nav-item:hover::after {
  width: 100%;
}
.hero--home .hero__cta {
  height: 40px;
}
.hero--home {
  /* ===============================
     CONTENT
  =============================== */
}
.hero--home .hero__content {
  position: relative;
  z-index: 2;
  flex: 1;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-end;
  gap: 48px;
  padding-top: 80px;
}
.hero--home {
  /* TEXTO — alinha verticalmente no meio da coluna */
}
.hero--home .hero__text {
  align-self: center;
  padding-bottom: 80px;
}
.hero--home .hero__meta {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 12px;
  color: #B18E7B;
  background-color: #223345;
  display: inline-block;
  padding: 4px 8px;
  margin-bottom: 16px;
}
.hero--home .hero__title {
  font-family: "Lora", serif;
  font-size: 56px;
  line-height: 1.1;
  color: #FFF;
}
.hero--home .hero__title span {
  color: #B18E7B;
}
.hero--home .hero__subtitle {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 18px;
  color: #F7F9FC;
  max-width: 520px;
  margin: 24px 0 32px;
  padding: 0 10px;
}
.hero--home .hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero--home .hero__actions .btn--primary {
  border-radius: 8px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
  padding: 10px 16px;
  background-color: #B18E7B;
  max-width: 225px;
  font-family: "IBM Plex Sans", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  text-align: center;
  white-space: nowrap;
  color: #223345;
}
.hero--home {
  /* IMAGEM — encostada na base */
}
.hero--home .hero__media {
  align-self: flex-end;
  display: flex;
  justify-content: center;
}
.hero--home .hero__image {
  display: block;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  object-fit: contain;
  object-position: bottom;
}
.hero--home {
  /* ===============================
     SETA SCROLL
  =============================== */
}
.hero--home .hero__scroll-arrow {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  text-decoration: none;
}
.hero--home .hero__scroll-arrow span {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.hero--home .hero__scroll-arrow .hero__scroll-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  transition: border-color 0.2s, color 0.2s;
  animation: arrowBounce 2s ease-in-out infinite;
}
.hero--home .hero__scroll-arrow:hover .hero__scroll-icon {
  border-color: #B18E7B;
  color: #B18E7B;
}
@keyframes arrowBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}
.hero--home {
  /* ===============================
     MOBILE TOGGLE
  =============================== */
}
.hero--home .hero__menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  color: #FFF;
  cursor: pointer;
}
.hero--home {
  /* ===============================
     BREAKPOINTS
  =============================== */
}
@media (max-width: 1024px) {
  .hero--home .hero__content {
    grid-template-columns: 1fr;
    align-items: center;
    text-align: center;
    padding-top: 48px;
  }
  .hero--home .hero__text {
    align-self: auto;
    padding-bottom: 0;
  }
  .hero--home .hero__actions {
    justify-content: center;
  }
  .hero--home .hero__media {
    align-self: auto;
  }
  .hero--home .hero__image {
    margin: 0 auto;
    max-height: 400px;
  }
}
@media (max-width: 768px) {
  .hero--home .hero__nav,
  .hero--home .hero__cta {
    display: none;
  }
  .hero--home .hero__menu-toggle {
    display: block;
  }
  .hero--home .hero__title {
    font-size: 40px;
  }
  .hero--home .hero__scroll-arrow {
    bottom: 20px;
  }
}
@media (max-width: 480px) {
  .hero--home .hero__title {
    font-size: 32px;
  }
  .hero--home .hero__subtitle {
    font-size: 16px;
  }
}

/* ===============================
   MENU MOBILE OVERLAY
=============================== */
.hero__mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background-color: #223345;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transform: translateY(-100%);
  transition: transform 0.35s ease;
}
.hero__mobile-menu a {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 22px;
  color: #F7F9FC;
  text-decoration: none;
}
.hero__mobile-menu a:hover {
  color: #B18E7B;
}
.hero__mobile-menu .btn {
  margin-top: 24px;
}

.hero__mobile-menu.is-open {
  transform: translateY(0);
}

.hero__mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  font-size: 28px;
  color: #F7F9FC;
  cursor: pointer;
}

.pain--home {
  background-color: #F7F9FC;
  padding: 150px 0;
}
.pain--home .container {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 0 24px;
}
.pain--home {
  /* ===============================
     CONTEÚDO
  =============================== */
}
.pain--home .pain__content {
  max-width: 584px;
  width: 100%;
}
.pain--home .pain__title {
  font-family: "Lora", serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #223345;
}
.pain--home .pain__title span {
  color: #B18E7B;
}
.pain--home .pain__description {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #475569;
  max-width: 465px;
  margin-bottom: 32px;
}
.pain--home .pain__description strong {
  font-weight: 500;
}
.pain--home {
  /* ===============================
     CAROUSEL
  =============================== */
}
.pain--home .pain__carousel {
  cursor: pointer;
  margin-bottom: 32px;
  position: relative;
  padding-bottom: 40px;
}
.pain--home .pain__carousel .swiper-wrapper {
  align-items: stretch;
}
.pain--home .pain__carousel .swiper-slide {
  display: flex;
  justify-content: center;
  height: auto;
}
.pain--home .pain__carousel .pain__card {
  width: 100%;
  max-width: 220px;
  height: 160px;
  background-color: #FFF;
  border-radius: 8px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  transition: border-color 0.2s ease;
}
.pain--home .pain__carousel .pain__card:hover {
  border-color: #B18E7B;
}
.pain--home .pain__carousel .pain__card img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}
.pain--home .pain__carousel .pain__card p {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 400;
  color: #223345;
  margin: 0;
  max-width: 180px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pain--home .pain__carousel .pain__card--alert {
  background-color: rgba(177, 142, 123, 0.03);
  border-color: rgba(177, 142, 123, 0.45);
}
.pain--home .pain__carousel .pain__card--alert p {
  font-weight: 500;
}
.pain--home .pain__carousel .swiper-pagination {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.pain--home .pain__carousel .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: #475569;
  opacity: 0.3;
  margin: 0 !important;
}
.pain--home .pain__carousel .swiper-pagination-bullet-active {
  background-color: #B18E7B;
  opacity: 1;
}
.pain--home {
  /* ===============================
     CTA
  =============================== */
}
.pain--home .pain__cta {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #223345;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-align: center;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pain--home .pain__cta:hover {
  color: #B18E7B;
}
.pain--home {
  /* ===============================
     IMAGEM
  =============================== */
}
.pain--home .pain__image {
  flex-shrink: 0;
}
.pain--home .pain__image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.pain--home {
  /* ===============================
     RESPONSIVO
  =============================== */
}
@media (max-width: 1024px) {
  .pain--home {
    padding: 100px 0;
  }
  .pain--home .container {
    flex-direction: column;
    align-items: flex-start;
  }
  .pain--home .pain__image {
    display: none;
  }
}
@media (max-width: 640px) {
  .pain--home {
    padding: 80px 0;
  }
  .pain--home .pain__title {
    font-size: 28px;
  }
  .pain--home .pain__description {
    font-size: 15px;
  }
  .pain--home .pain__card {
    height: 145px;
  }
}

.about--home {
  background-color: #FFF;
  width: 100%;
  padding-top: 150px;
  padding-bottom: 150px;
}
.about--home .container {
  max-width: 1180px;
}
.about--home .container .about__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px; /* MEDIA */
}
.about--home .container .about__content .about__media {
  max-width: 412px;
  max-height: 464px;
}
.about--home .container .about__content .about__media img {
  width: 100%;
  height: auto;
  max-height: 464px;
  border-radius: 8px;
  display: block;
  object-fit: cover;
}
.about--home .container .about__content { /* BODY */ }
.about--home .container .about__content .about__body {
  display: flex;
  flex-direction: column;
  gap: 16px; /* EYEBROW */
}
.about--home .container .about__content .about__body .about__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}
.about--home .container .about__content .about__body .about__eyebrow .row {
  width: 30px;
  height: 2px;
  background-color: #B18E7B;
}
.about--home .container .about__content .about__body .about__eyebrow p {
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  color: #B18E7B;
}
.about--home .container .about__content .about__body { /* HEADING */ }
.about--home .container .about__content .about__body .about__heading {
  width: 100%;
  font-family: "Lora", serif;
  font-size: 36px;
  font-weight: 400;
  color: #223345;
  line-height: 1.2;
}
.about--home .container .about__content .about__body .about__heading span {
  color: #B18E7B;
}
.about--home .container .about__content .about__body { /* DESCRIPTION */ }
.about--home .container .about__content .about__body .about__description {
  max-width: 623px;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #223345;
  line-height: 24px;
}
.about--home .container .about__content .about__body { /* HIGHLIGHT */ }
.about--home .container .about__content .about__body .about__highlight {
  display: flex;
  align-items: center;
  gap: 10px;
}
.about--home .container .about__content .about__body .about__highlight .line {
  width: 2px;
  height: 42px;
  background-color: #B18E7B;
}
.about--home .container .about__content .about__body .about__highlight p {
  max-width: 623px;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #223345;
  line-height: 24px;
}
.about--home .container .about__content .about__body .about__highlight span {
  color: #B18E7B;
}
.about--home .container .about__content .about__body .about__certifications {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 32px;
  margin-top: 24px;
}
.about--home .container .about__content .about__body .about__certifications .about__certification {
  display: grid;
  grid-template-columns: 24px 1fr;
  column-gap: 12px;
  row-gap: 4px;
  align-items: start;
}
.about--home .container .about__content .about__body .about__certifications .about__certification img {
  width: 30px;
  height: 30px;
  grid-row: 1/span 2;
}
.about--home .container .about__content .about__body .about__certifications .about__certification .about__certification-title {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #B18E7B;
  line-height: 1.2;
}
.about--home .container .about__content .about__body .about__certifications .about__certification .about__certification-text, .about--home .container .about__content .about__body .about__certifications .about__certification span {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #475569;
  line-height: 1.3;
}
.about--home .container .about__content .about__body .about__certifications { /* Mobile */ }
@media (max-width: 768px) {
  .about--home .container .about__content .about__body .about__certifications {
    grid-template-columns: 1fr;
  }
}

/* ===============================
   RESPONSIVO
=============================== */
@media (max-width: 1024px) {
  .about--home {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .about--home .about__content {
    gap: 40px;
  }
  .about--home .about__media {
    max-width: 360px;
  }
}
@media (max-width: 768px) {
  .about--home {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .about--home .about__content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .about--home .about__media {
    max-width: 100%;
    max-height: none;
  }
  .about--home .about__media img {
    max-height: 360px;
  }
  .about--home .about__body {
    align-items: center;
  }
  .about--home .about__eyebrow {
    justify-content: center;
  }
  .about--home .about__description,
  .about--home .about__highlight p {
    max-width: 100%;
  }
  .about--home .about__highlight {
    justify-content: center;
  }
  .about--home .about__highlight .line {
    height: 32px;
  }
}
@media (max-width: 480px) {
  .about--home {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .about--home .about__heading {
    font-size: 28px;
  }
  .about--home .about__description,
  .about--home .about__highlight p {
    font-size: 15px;
    line-height: 1.6;
  }
}
.services--home {
  background-color: #F7F9FC;
  width: 100%;
  padding-top: 150px;
  padding-bottom: 150px;
}
.services--home .container {
  max-width: 1180px;
}
.services--home .container .services__heading {
  margin: 0 auto;
  max-width: 506px;
  text-align: center;
  margin-bottom: 45px;
}
.services--home .container .services__heading h2 {
  margin: 16px 0px;
  font-family: "Lora", serif;
  font-size: 36px;
  font-weight: 400;
  color: #223345;
  line-height: 1.1;
}
.services--home .container .services__heading h2 span {
  font-size: 36px;
  font-weight: 400;
  color: #B18E7B;
}
.services--home .container .services__heading p {
  font-family: "IBM Plex Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  vertical-align: center;
  color: #475569;
}
.services--home .container .services__cards {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 45px;
  flex-wrap: wrap;
}
.services--home .container .services__cards .services__card {
  width: 344px;
  height: 188px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 16px;
  justify-content: center;
  align-items: flex-start;
  padding: 24px;
  background-color: #FFF;
  border: 1px solid #E8E8E8;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}
.services--home .container .services__cards .services__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #B18E7B;
  border-radius: 8px 0 0 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.services--home .container .services__cards .services__card:hover {
  border-color: rgba(177, 142, 123, 0.3);
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}
.services--home .container .services__cards .services__card:hover::before {
  opacity: 1;
}
.services--home .container .services__cards .services__card:hover .services__card-icon {
  background-color: rgba(177, 142, 123, 0.1);
  transform: scale(1.05);
}
.services--home .container .services__cards .services__card:hover .services__card-icon i {
  color: #B18E7B;
}
.services--home .container .services__cards .services__card:hover .services__card-title {
  color: #B18E7B;
}
.services--home .container .services__cards .services__card .services__card-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background-color: #F7F9FC;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.services--home .container .services__cards .services__card .services__card-icon i {
  font-size: 22px;
  color: #B18E7B;
  transition: color 0.3s ease;
  line-height: 1;
}
.services--home .container .services__cards .services__card .services__card-title {
  font-family: "Lora", serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.3;
  color: #223345;
  margin: 0;
  transition: color 0.3s ease;
}
.services--home .container .services__cards .services__card .services__card-description {
  font-family: "IBM Plex Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.5;
  color: #475569;
  margin: 0;
}
.services--home .container .services__cta {
  margin-top: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.services--home .container .services__cta a {
  background-color: #223345;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #FFF;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.services--home .container .services__cta a:hover {
  background-color: rgb(20.532038835, 30.7980582524, 41.667961165);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.services--home {
  /* ===============================
     RESPONSIVO
  =============================== */
}
@media (max-width: 1024px) {
  .services--home {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .services--home .container .services__cards .services__card {
    width: 100%;
    max-width: 400px;
  }
}
@media (max-width: 640px) {
  .services--home {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .services--home .container .services__heading h2,
  .services--home .container .services__heading h2 span {
    font-size: 28px;
  }
  .services--home .container .services__cards {
    gap: 24px;
  }
  .services--home .container .services__cards .services__card {
    height: auto;
    min-height: 188px;
  }
}

.steps--home {
  background-color: #223345;
  width: 100%;
  padding-top: 75px;
  padding-bottom: 75px;
}
.steps--home .container {
  max-width: 1180px;
  padding: 0 24px;
  margin: 0 auto;
  box-sizing: border-box;
}
.steps--home {
  /* ===============================
     HEADING
  =============================== */
}
.steps--home .steps__heading {
  margin: 0 auto 45px;
  max-width: 506px;
  text-align: center;
}
.steps--home .steps__heading h2 {
  font-family: "Lora", serif;
  font-size: 36px;
  font-weight: 400;
  color: #F7F9FC;
  line-height: 1.1;
  margin: 16px 0;
}
.steps--home .steps__heading h2 span {
  color: #B18E7B;
}
.steps--home .steps__heading p {
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #bebebe;
}
.steps--home {
  /* ===============================
     SWIPER CONTAINER
  =============================== */
}
.steps--home .steps__items {
  width: 100%;
  overflow: hidden;
}
@media (min-width: 769px) {
  .steps--home .steps__items {
    overflow: visible;
  }
  .steps--home .steps__items .swiper-wrapper {
    display: flex;
    flex-wrap: nowrap;
    gap: 24px;
    transform: none !important;
    width: 100% !important;
  }
  .steps--home .steps__item {
    flex: 1;
    min-width: 0;
    width: auto !important;
  }
}
.steps--home {
  /* ===============================
     CARD
  =============================== */
}
.steps--home .steps__item {
  height: 248px;
  padding: 0 24px;
  box-sizing: border-box;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background-color: rgba(63, 99, 137, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  transition: 0.3s;
}
.steps--home .steps__item:hover {
  transform: translateY(-6px);
  background-color: rgba(63, 99, 137, 0.45);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}
.steps--home .steps__item .steps__item-number {
  font-family: "Lora", serif;
  font-size: 36px;
  color: #B18E7B;
  white-space: nowrap;
}
.steps--home .steps__item .steps__item-title {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 16px;
  color: #FFF;
}
.steps--home .steps__item .steps__item-text {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 16px;
  color: #bebebe;
}
.steps--home {
  /* ===============================
     CTA
  =============================== */
}
.steps--home .steps__cta {
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  color: #F7F9FC;
  margin-top: 45px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.steps--home .steps__cta a {
  background-color: #B18E7B;
  width: 177px;
}
.steps--home .steps__cta a:hover {
  background-color: rgb(161.8457142857, 120.0457142857, 97.3542857143);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}
.steps--home .steps__cta a:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.steps--home {
  /* Paginacao OFF no desktop */
}
.steps--home .swiper-pagination {
  display: none;
}

/* ===============================
   MOBILE
=============================== */
@media (max-width: 768px) {
  .steps--home .steps__items {
    overflow: hidden;
    padding-bottom: 40px;
    position: relative;
  }
  .steps--home .steps__item {
    width: 100% !important;
    height: auto;
    padding: 32px 24px;
    align-items: center;
    text-align: center;
  }
  .steps--home .swiper-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
  }
  .steps--home .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: #fff;
    opacity: 0.3;
    border-radius: 50%;
    margin: 0 !important;
  }
  .steps--home .swiper-pagination-bullet-active {
    opacity: 1;
    background-color: #B18E7B;
  }
}
.cta--home {
  width: 100%;
  height: 252px;
  background-image: url("../../../assets/img/bg-cta.png");
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
}
.cta--home .cta__content {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 129px;
}
.cta--home {
  /* ===============================
     TEXTO
  =============================== */
}
.cta--home .cta__text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cta--home .cta__text .cta__headline {
  font-family: "Lora", serif;
  font-size: 36px;
  font-weight: 400;
  color: #F7F9FC;
}
.cta--home .cta__text .cta__headline span {
  font-family: "Lora", serif;
  font-size: 36px;
  font-weight: 400;
  color: #B18E7B;
}
.cta--home .cta__text .cta__info {
  display: flex;
  gap: 16px;
}
.cta--home .cta__text .cta__info .cta__phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #F7F9FC;
}
.cta--home .cta__text .cta__info .cta__phone a {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 16px;
  color: #F7F9FC;
  white-space: nowrap;
}
.cta--home .cta__text .cta__info .cta__hours {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 16px;
  color: #F7F9FC;
  white-space: nowrap;
}
.cta--home {
  /* ===============================
     BOTÃO
  =============================== */
}
.cta--home .cta__action a {
  height: 59px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 16px;
  background-color: #22C35D;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.cta--home .cta__action a:hover {
  background-color: rgb(29.456768559, 168.943231441, 80.5729257642);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.cta--home .cta__action a:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* ===============================
   TABLET
=============================== */
@media (max-width: 1024px) {
  .cta--home {
    height: auto;
  }
  .cta--home .cta__content {
    padding: 32px 48px;
    gap: 32px;
  }
}
/* ===============================
   MOBILE
=============================== */
@media (max-width: 768px) {
  .cta--home {
    height: auto;
    padding: 48px 0;
  }
  .cta--home .cta__content {
    flex-direction: column;
    text-align: center;
    padding: 0 24px;
    gap: 24px;
  }
  .cta--home .cta__text {
    align-items: center;
  }
  .cta--home .cta__text .cta__headline {
    font-size: 28px;
  }
  .cta--home .cta__text .cta__headline span {
    font-size: 28px;
  }
  .cta--home .cta__text .cta__info {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }
  .cta--home .cta__action {
    width: 100%;
  }
  .cta--home .cta__action a {
    width: 100%;
    justify-content: center;
  }
}
.testimonials--home {
  background-color: #F7F9FC;
  padding: 150px 0;
}
.testimonials--home .container {
  max-width: 1180px;
}
.testimonials--home {
  /* ===============================
     HEADING
  =============================== */
}
.testimonials--home .testimonials__heading {
  text-align: center;
  margin-bottom: 56px;
}
.testimonials--home .testimonials__heading h2 {
  font-family: "Lora", serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.2;
  color: #223345;
  margin: 16px 0 0;
}
.testimonials--home .testimonials__heading h2 span {
  color: #B18E7B;
}
.testimonials--home {
  /* ===============================
     CAROUSEL
  =============================== */
}
.testimonials--home .testimonials__carousel .swiper-wrapper {
  padding-top: 40px;
  padding-bottom: 56px;
  align-items: stretch;
  cursor: pointer;
}
.testimonials--home .testimonials__carousel .swiper-slide {
  height: auto;
  display: flex;
}
.testimonials--home {
  /* ===============================
     CARD DE DEPOIMENTO
  =============================== */
}
.testimonials--home .testimonial-card {
  max-width: 623px;
  min-height: 225px;
  width: 100%;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  align-items: center;
  padding: 48px 32px 24px;
  border: 1px solid rgba(177, 142, 123, 0.2);
  background-color: #FFFFFF;
  box-shadow: 0px 4px 4px 0px rgba(190, 190, 190, 0.25);
  transition: all 0.3s ease;
  position: relative;
}
.testimonials--home .testimonial-card:hover {
  border-color: rgba(177, 142, 123, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}
.testimonials--home .testimonial-card__quote {
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 64px;
  height: 64px;
  background-color: #223345;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.testimonials--home .testimonial-card__quote i {
  color: #FFF;
}
.testimonials--home .testimonial-card__rating {
  display: flex;
  gap: 4px;
  align-items: center;
}
.testimonials--home .testimonial-card__rating i {
  color: #D4AF37;
}
.testimonials--home .testimonial-card__rating i:not(.star--filled) path {
  color: #E0E0E0;
}
.testimonials--home .testimonial-card__text {
  font-family: "IBM Plex Sans", sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
  color: #475569;
  margin: 0;
}
.testimonials--home .testimonial-card__author {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.testimonials--home .testimonial-card__name {
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  color: #223345;
  margin: 0;
}
.testimonials--home .testimonial-card__role {
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 500;
  font-size: 12px;
  text-align: center;
  color: #B18E7B;
  margin: 0;
}
.testimonials--home {
  /* ===============================
     PAGINAÇÃO
  =============================== */
}
.testimonials--home .testimonials__pagination {
  bottom: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 40px;
}
.testimonials--home .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: #475569;
  opacity: 0.3;
  border-radius: 50%;
}
.testimonials--home .swiper-pagination-bullet-active {
  background-color: #B18E7B;
  opacity: 1;
}
.testimonials--home :global(.swiper-pagination-bullet-active) {
  width: 24px;
  border-radius: 4px;
  background: #B18E7B;
}
.testimonials--home {
  /* ===============================
     RESPONSIVO
  =============================== */
}
@media (max-width: 1024px) {
  .testimonials--home {
    padding: 100px 0;
  }
  .testimonials--home .testimonials__heading h2 {
    font-size: 32px;
  }
  .testimonials--home .testimonials__carousel .swiper-wrapper {
    padding-top: 36px;
  }
  .testimonials--home .testimonial-card {
    padding: 44px 28px 24px;
  }
  .testimonials--home .testimonial-card__quote {
    width: 56px;
    height: 56px;
    top: -28px;
  }
  .testimonials--home .testimonial-card__quote svg {
    width: 24px;
    height: 24px;
  }
  .testimonials--home .testimonial-card__text {
    font-size: 15px;
  }
}
@media (max-width: 640px) {
  .testimonials--home {
    padding: 80px 0;
  }
  .testimonials--home .testimonials__heading h2 {
    font-size: 28px;
  }
  .testimonials--home .testimonials__carousel .swiper-wrapper {
    padding-top: 32px;
  }
  .testimonials--home .testimonial-card {
    min-height: auto;
    padding: 40px 24px 24px;
  }
  .testimonials--home .testimonial-card__quote {
    width: 52px;
    height: 52px;
    top: -26px;
  }
  .testimonials--home .testimonial-card__quote svg {
    width: 22px;
    height: 22px;
  }
  .testimonials--home .testimonial-card__rating .star {
    width: 18px;
    height: 18px;
  }
  .testimonials--home .testimonial-card__text {
    font-size: 14px;
  }
  .testimonials--home .testimonial-card__name {
    font-size: 15px;
  }
}

.location--home {
  background-color: #FFF;
  width: 100%;
  min-height: 520px;
}
.location--home .location__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.location--home .location__content .eyebrow {
  justify-content: flex-start !important;
}
.location--home {
  /* ===============================
     COLUNA ESQUERDA - TEXTO
  =============================== */
}
.location--home .location__infos {
  padding: 80px 133px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
}
.location--home .location__infos .location-title {
  font-family: "Lora", serif;
  font-weight: 400;
  font-size: 36px;
  color: #223345;
}
.location--home .location__infos .location-title span {
  color: #B18E7B;
}
.location--home .location__infos {
  /* BLOCO DE CONTATO */
}
.location--home .location__infos .location__contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.location--home .location__infos .location__contact a {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #475569;
  text-decoration: none;
  border-radius: 6px;
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}
.location--home .location__infos .location__contact a:hover, .location--home .location__infos .location__contact a:focus-visible {
  color: #223345;
  background-color: #F7F9FC;
  transform: translateX(2px);
}
.location--home .location__infos {
  /* HORÁRIO */
}
.location--home .location__infos .location__opening-hours {
  border-radius: 8px;
  transition: background-color 0.25s ease;
}
.location--home .location__infos .location__opening-hours p {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #475569;
  margin: 0;
}
.location--home {
  /* ===============================
     COLUNA DIREITA - MAPA
  =============================== */
}
.location--home .location__map {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.location--home .location__map iframe {
  width: 100%;
  height: 100%;
  border: none;
  transition: transform 0.4s ease;
}
.location--home .location__map {
  /* Hover MUITO sutil no mapa */
}
.location--home .location__map:hover iframe {
  transform: scale(1.01);
}
.location--home {
  /* ===============================
     RESPONSIVO
  =============================== */
}
@media (max-width: 1024px) {
  .location--home .location__content {
    grid-template-columns: 1fr;
  }
  .location--home .location__infos {
    padding: 64px 32px;
    max-width: 100%;
  }
  .location--home .location__map {
    height: 360px;
  }
}
@media (max-width: 640px) {
  .location--home .location__infos {
    padding: 48px 24px;
  }
  .location--home .location__infos .location-title {
    font-size: 28px;
  }
  .location--home .location__map {
    height: 300px;
  }
}

.faq--home {
  padding: 150px 0;
  background-color: #F7F9FC;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* ===============================
     HEADER
  =============================== */
}
.faq--home .faq__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 45px;
}
.faq--home .faq__heading .faq-title {
  font-family: "Lora", serif;
  font-weight: 400;
  font-size: 36px;
  text-align: center;
  color: #223345;
}
.faq--home .faq__heading .faq__subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.faq--home .faq__heading .faq__subtitle .btn {
  width: 177px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 14px;
  background-color: #B18E7B;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.faq--home .faq__heading .faq__subtitle .btn:hover {
  background-color: rgb(161.8457142857, 120.0457142857, 97.3542857143);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}
.faq--home .faq__heading .faq__subtitle .btn:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}
.faq--home {
  /* ===============================
     LISTA
  =============================== */
}
.faq--home .faq__list {
  width: 100%;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq--home {
  /* ===============================
     ITEM
  =============================== */
}
.faq--home .faq__item {
  background-color: #FFF;
  border-radius: 8px;
  border: 1px solid rgba(177, 142, 123, 0.08);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.faq--home .faq__item:hover {
  border-color: rgba(177, 142, 123, 0.18);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}
.faq--home {
  /* ===============================
     PERGUNTA
  =============================== */
}
.faq--home .faq__question {
  width: 100%;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  font-family: "Lora", serif;
  font-size: 16px;
  font-weight: 400;
  color: #223345;
  text-align: left;
  transition: color 0.2s ease;
}
.faq--home .faq__question .faq__icon {
  font-size: 20px;
  line-height: 1;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq--home .faq__question[aria-expanded=true] .faq__icon {
  transform: rotate(45deg);
}
.faq--home {
  /* ===============================
     RESPOSTA
  =============================== */
}
.faq--home .faq__answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
}
.faq--home .faq__answer p {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #475569;
  margin: 0;
}
.faq--home {
  /* ===============================
     ABERTO
  =============================== */
}
.faq--home .faq__item.is-open .faq__answer {
  max-height: 300px;
  opacity: 1;
  padding: 0 24px 24px;
}
.faq--home {
  /* ===============================
     TABLET
  =============================== */
}
@media (max-width: 768px) {
  .faq--home {
    padding: 120px 0;
  }
  .faq--home .faq__list {
    padding: 0 24px;
  }
}
.faq--home {
  /* ===============================
     MOBILE
  =============================== */
}
@media (max-width: 640px) {
  .faq--home {
    padding: 100px 0;
  }
  .faq--home .faq-title {
    font-size: 28px;
  }
  .faq--home .faq__question {
    padding: 16px 20px;
    font-size: 15px;
  }
  .faq--home .faq__answer {
    padding: 0 20px;
  }
  .faq--home .faq__answer p {
    font-size: 15px;
  }
  .faq--home .faq__item.is-open .faq__answer {
    padding: 0 20px 20px;
  }
}

/* =====================================================
   FOOTER
===================================================== */
.footer {
  background-color: #223345;
  color: #F7F9FC;
  padding: 72px 0 0 0;
  /* ===============================
     CONTAINER
  =============================== */
}
.footer .footer__container {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 2fr 1fr;
  gap: 48px;
  align-items: flex-start;
}
.footer {
  /* ===============================
     COLUNA 1 — BRAND
  =============================== */
}
.footer .footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer .footer__brand img {
  height: auto;
}
.footer .footer__description {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  max-width: 280px;
}
.footer .footer__back-to-top {
  margin-top: 16px;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 8px 14px;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 12px;
  color: #FFF;
  cursor: pointer;
  transition: all 0.25s ease;
}
.footer .footer__back-to-top:hover {
  background-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}
.footer {
  /* ===============================
     TÍTULOS
  =============================== */
}
.footer .footer__title {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FFF;
  margin-bottom: 16px;
}
.footer {
  /* ===============================
     NAVEGAÇÃO
  =============================== */
}
.footer .footer__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer .footer__nav a {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 14px;
  color: #cfd6dd;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer .footer__nav a:hover {
  color: #B18E7B;
}
.footer {
  /* ===============================
     CONTATO
  =============================== */
}
.footer .footer__contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer .footer__phone {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 15px;
  color: #F7F9FC;
  text-decoration: none;
}
.footer .footer__address {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  max-width: 260px;
}
.footer .footer__cta {
  margin-top: 12px;
  width: fit-content;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 10px 16px;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #FFF;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}
.footer .footer__cta:hover {
  background-color: #B18E7B;
  color: #0F172A;
}
.footer {
  /* ===============================
     LEGAL
  =============================== */
}
.footer .footer__legal {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer .footer__legal a {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 13px;
  color: #F7F9FC;
  text-decoration: none;
}
.footer .footer__legal a:hover {
  text-decoration: underline;
}
.footer {
  /* ===============================
     COPYRIGHTS
  =============================== */
}
.footer .footer__copyrights {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  margin-top: 48px;
}
.footer .footer__copyrights-container {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.footer .footer__copyrights-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer .footer__copyrights-left p {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 13px;
  margin: 0;
}
.footer .footer__meta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer .footer__meta span {
  font-size: 12px;
}
.footer .footer__meta .point {
  width: 4px;
  height: 4px;
  background-color: #B18E7B;
  border-radius: 50%;
}
.footer {
  /* CRÉDITOS */
}
.footer .footer__credits {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
}
.footer .footer__credits a {
  color: #B18E7B;
  font-weight: 500;
  margin-left: 4px;
  text-decoration: none;
}
.footer .footer__credits a:hover {
  opacity: 0.8;
  text-decoration: underline;
}
.footer {
  /* ===============================
     TABLET
  =============================== */
}
@media (max-width: 1024px) {
  .footer .footer__container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer .footer__copyrights-container {
    padding: 0 16px;
  }
}
.footer {
  /* ===============================
     MOBILE
  =============================== */
}
@media (max-width: 640px) {
  .footer {
    padding-top: 56px;
  }
  .footer .footer__container {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 24px;
  }
  .footer .footer__copyrights-container {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .footer .footer__credits {
    margin-top: 8px;
    white-space: normal;
  }
}

/* Components */
.btn {
  height: 40px;
  border-radius: 8px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  background-color: #22C35D;
  color: #FFF;
  font-family: "IBM Plex Sans", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  text-align: center;
  vertical-align: center;
  white-space: nowrap;
  color: #FFFFFF;
}

.btn--outline {
  width: 225px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
  padding: 10px 16px;
  border: 1px solid rgba(148, 146, 146, 0.71);
  box-sizing: border-box;
  background-color: rgba(27, 40, 53, 0.3);
  font-family: "IBM Plex Sans", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  text-align: center;
  vertical-align: center;
  white-space: nowrap;
  color: #FFF;
}

.eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.eyebrow__row {
  width: 30px;
  height: 2px;
  background-color: #B18E7B;
}
.eyebrow__text {
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  color: #B18E7B;
}

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