@import url("https://fonts.googleapis.com/css2?family=Merriweather:wght@400;900&family=Montserrat:wght@400;700&display=swap");

:root {
  --background-primary: #18191b;
  --background-section: #2c2c2e;
  --background-card: #c7a75a;
  --background-pure-black: #000000;
  --text-on-card: #2f2f2f;
  --text-on-dark: #f0f0f0;
  --text-primary: #f0f0f0;
  --text-secondary: #cbc9c9;
  --text-muted: #999999;
  --accent-gold-primary: #daa520;
  --accent-gold-secondary: #d8af49;
  --accent-gold-tertiary: #daa529;
  --button-background-gradient: linear-gradient(45deg, #a47c1b, #daa520, #8b6b17);
  --placeholder-bg: #222222;
  --placeholder-bg-darker: #2c2c2c;
  --placeholder-border: #444444;
  --placeholder-border-darker: #555555;
  --font-title: "Montserrat", serif;
  --font-body: "Montserrat", sans-serif;
  --font-headings: "Montserrat", sans-serif;
  --divider-color: rgb(96 93 93 / 90%);
  --icon-circle-bg: #ffffff4d;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

body {
  background-color: var(--background-primary);
  font-family: var(--font-body);
}

.hero-background {
  position: absolute;
  top: 56px;
  left: 0;
  width: 100%;
  height: 1100px;
  z-index: 1;
  overflow: hidden;
  background-color: rgb(24, 25, 27);
}

.hero-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(24, 25, 27, 0.5), rgba(24, 25, 27, 0.8));
  z-index: 3;
}

.hero-background__top,
.hero-background__bottom {
  position: absolute;
  left: 0;
  width: 100%;
  object-fit: cover;
}

.hero-background__top {
  top: 0;
  height: 600px; 
  z-index: 2;
  -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
}

.hero-background__bottom {
  top: 570px;
  height: 520px;
  z-index: 1;
  -webkit-mask-image: linear-gradient(to top, black 85%, transparent 100%);
  mask-image: linear-gradient(to top, black 85%, transparent 100%);
}

@media (max-width: 768px) {
  .bloco-anuncio__conteudo{
    width: 100% !important;
  }

  .hero-background {
    height: 830px;
  }

  .hero-background__top {
    top: 0;
    height: 500px;
  }

  .hero-background__bottom{
    top: 480px;
    height: 520px;
  }
}

.bloco-anuncio {
  background-color: transparent;
  position: relative;
}

.page-wrapper{
  width: 100%;
  display: flex;
  align-items: center;
  gap: 5rem;
  flex-flow: column;
  overflow-x: hidden;
}

html {
  scrollbar-width: 20px;
  scrollbar-color: var(--accent-gold-primary) var(--background-section);
}

h1, h2, h3 {
  line-height: 1.4;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--background-section);
}

::-webkit-scrollbar-thumb {
  background-color: var(--accent-gold-primary);
  border-radius: 10px;
  background-clip: content-box;
  border: 2px solid transparent;
}

::-webkit-scrollbar-button {
  display: none;
  height: 0;
  width: 0;
}

.form-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(24, 25, 27, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.form-popup--is-visible {
  opacity: 1;
  visibility: visible;
}

.form-popup__modal {
  background-color: var(--background-section);
  padding: 2.5rem 3rem;
  border-radius: 16px;
  border: 1px solid var(--placeholder-border-darker);
  max-width: 500px;
  width: 90%;
  position: relative;
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.form-popup--is-visible .form-popup__modal {
  transform: scale(1);
}

.form-popup__close-button {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.3s, transform 0.3s;
}

.form-popup__close-button:hover {
  color: var(--accent-gold-primary);
  transform: rotate(90deg);
}

.form-popup__title {
  font-family: var(--font-headings);
  color: var(--accent-gold-primary);
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.4;
}

.form-popup__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-popup__input-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-popup__label {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
}

.form-popup__input {
  background-color: var(--background-primary);
  border: 1px solid var(--placeholder-border-darker);
  color: var(--text-primary);
  padding: 0.9rem 1rem;
  border-radius: 8px;
  font-size: 1rem;
  font-family: var(--font-body);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-popup__input:focus {
  outline: none;
  border-color: var(--accent-gold-primary);
  box-shadow: 0 0 0 3px var(--placeholder-border-darker);
}

.form-popup__submit-button {
  display: inline-block;
  background-color: var(--accent-gold-primary);
  color: var(--background-primary);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  margin-top: 1rem;
  width: 100%;
}

/* Header */

.header {
  width: 100%;
  max-width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 2rem;
  border-bottom: 1px solid #d8af49;
}


.header__logo {
  max-width: 130px;
  height: auto;
  display: block;
  margin-left: 20px;
}

/* Bloco de anúncio (primeiro da página) */

.bloco-anuncio {
  display: flex;
  max-width: 1140px;
  width: 100%;
  background-color: var(--background-primary);
  color: var(--text-primary);
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 4rem 2rem;
}

.bloco-anuncio__conteudo {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 55%;
  position: relative;
  z-index: 1; 
}

.bloco-anuncio__imagem-container {
  position: absolute;
  inset: 0; 
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: .4;
}

.bloco-anuncio__imagem {
  width: 240px;
}

.bloco-anuncio__background-top,
.bloco-anuncio__background-bottom {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bloco-anuncio__background-top {
  top: 0;
  height: 70%; 
  -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
  z-index: 2;
}

.bloco-anuncio__background-bottom {
  bottom: 0;
  height: 65%;
  z-index: 1;
}

.bloco-anuncio__logo {
  max-width: 180px;
  height: 60px;
  background-color: var(--placeholder-bg-darker);
  border: 2px dashed var(--placeholder-border-darker);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  border-radius: 4px;
}

.bloco-anuncio__logo::before {
  content: "LOGOMARCA REVISTA SALTO";
}

.bloco-anuncio__titulo {
  font-family: var(--font-title);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.2;
  color: var(--accent-gold-primary);
}

.bloco-anuncio__subtitulo {
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 700;
  color: var(--text-primary);
}

.bloco-anuncio__descricao {
  font-size: 1.05rem;
  line-height: 1.5;
  max-width: 60ch;
}

.bloco-anuncio__botao {
  display: inline-block;
  background: var(--button-background-gradient);
  background-size: 200% 200%;
  color: var(--background-primary);
  padding: 1rem 2.2rem;
  text-decoration: none;
  border-radius: 40px;
  font-weight: 700;
  text-align: center;
  transition: 0.5s;
  width: 100%;
  font-size: 1rem;
  align-self: flex-start;
  white-space: nowrap;
}

.bloco-anuncio__botao-texto {
  display: inline-block;
  transition: transform 0.7s ease;
  transform-origin: center;
}

.bloco-anuncio__botao:hover {
  filter: brightness(1.1);
  background-position: right center;
}

.bloco-anuncio__botao:hover .bloco-anuncio__botao-texto {
  transform: scale(1.04);
}

.how-it-works {
  padding: 7rem 0;
  background-color: var(--background-primary);
  max-width: 1140px;
  display: flex;
  flex-flow: column;
  align-items: center;
}

.how-it-works__title {
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent-gold-primary);
  text-align: center;
  line-height: 1.2;
}

.how-it-works__subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 3rem;
}

.how-it-works__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 2rem;
}

.how-it-works__item {
  position: relative;
  padding: 0.5rem;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.how-it-works__item:hover {
  background-color: #ffffff09;
}

.how-it-works__step-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.how-it-works__step-title span {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-gold-primary);
  border: 2px solid var(--accent-gold-primary);
  border-radius: 50%;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.how-it-works__item:hover .how-it-works__step-title span {
  background-color: var(--accent-gold-primary);
  color: var(--background-primary);
}

.how-it-works__step-description {
  color: var(--text-secondary);
  line-height: 1.6;
  padding-left: calc(36px + 1rem);
}

.how-it-works__item::after {
  content: "";
  position: absolute;
  top: 18px;
  left: calc(100% - 1rem);
  width: calc(2rem + 2px);
  height: 2px;
  background-image: linear-gradient(
    to right,
    var(--divider-color) 50%,
    transparent 50%
  );
  background-size: 12px 2px;
  z-index: -1;
}

.how-it-works__item:nth-child(3n)::after {
  display: none;
}

.how-it-works__button {
  display: inline-block;
  background: var(--button-background-gradient);
  background-size: 200% 200%;
  color: var(--background-primary);
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 40px;
  margin-top: 2rem;
  font-weight: 700;
  text-align: center;
  transition: 0.5s;
  white-space: nowrap;
}

.how-it-works__button-text {
  display: inline-block;
  transition: transform 0.7s ease;
  transform-origin: center;
}

.how-it-works__button:hover {
  filter: brightness(1.1);
  background-position: right center;
}

.how-it-works__button:hover .how-it-works__button-text {
  transform: scale(1.04);
}

@media (max-width: 900px) {
  .how-it-works__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .how-it-works__item:nth-child(3n)::after {
    display: block;
  }
  .how-it-works__item:nth-child(2n)::after {
    display: none;
  }
}

@media (max-width: 600px) {
  .how-it-works__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .how-it-works__item::after {
    display: none;
  }
  .how-it-works__step-description {
    padding-left: 0;
  }
}

.experts {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  width: 100%;
  position: relative;
}

.experts__title {
  font-size: 3.2rem;
  font-family: var(--font-title);
  font-weight: 900;
  color: var(--accent-gold-primary);
  text-align: center;
  margin-bottom: 0.8rem;
}

.experts__description {
  font-size: 1.1rem;
  color: var(--text-primary);
  width: 53%;
  text-align: center;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.experts__galery-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  margin-top: 1.5rem;
  margin-bottom: .6rem;
}

.experts__viewport {
  position: relative;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.carousel-container{
  position: relative;
  width: 100%;
}

.experts__galery {
  display: flex;
  gap: 0.6rem;
  margin-top: 5px;
  overflow: visible;
  scroll-snap-type: none;
  will-change: transform;
  transition: transform 300ms cubic-bezier(.22,.61,.36,1);
}

.experts__galery::-webkit-scrollbar {
  display: none;
}

.expert {
  flex: 0 0 195px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.expert__image {
  width: 100%;
  object-fit: cover;
  height: 275px;
}

.expert__content-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 275px;
  background: linear-gradient(
    to bottom,
    transparent 25%,
    var(--background-pure-black) 100%
  );
  color: var(--text-primary);
  padding: 0.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  line-height: 1.4;
}

.expert__name {
  font-weight: 700;
  margin-bottom: 0.2rem;
  font-size: 1.1rem;
  font-family: var(--font-title);
}

.expert__name::after {
  content: "";
  display: block;
  margin-top: 3px;
  margin-bottom: 4px;
  width: 100%;
  height: 4px;
  background-color: var(--accent-gold-primary);
  opacity: 0.9;
}

.expert__role {
  font-size: 0.7rem;
  color: var(--text-secondary);
  margin-bottom: 0.7rem;
  height: 34px;
  opacity: 0.9;
}

.expert__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 275px;
  transition: 0.5s;
  overflow: hidden;
}

.expert__overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    transparent 5%,
    var(--background-pure-black) 100%
  );
  opacity: 0;
  transition: opacity 0.5s;
}

.expert__overlay:hover::before {
  opacity: 1;
}

.experts__button {
  display: inline-block;
  background: var(--button-background-gradient);
  background-size: 200% 200%;
  color: var(--background-primary);
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 40px;
  font-weight: 700;
  text-align: center;
  font-size: 1.1rem;
  transition: 0.5s;
  margin-top: 1rem;
  white-space: nowrap;
}

.experts__button-text {
  display: inline-block;
  transition: transform 0.7s ease;
  transform-origin: center;
}

.experts__button:hover {
  filter: brightness(1.1);
  background-position: right center;
}

.experts__button:hover .experts__button-text {
  transform: scale(1.04);
}

.carousel-button--prev,
.carousel-button--next {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  background-color: var(--accent-gold-tertiary);
  border: 0;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-size: 15px;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  transition: background-color .3s, transform .3s;
}

.carousel-button--prev {
  background-image: url('images/arrow-left.svg');
  left: 0;
}

.carousel-button--next {
  background-image: url('images/arrow-right.svg');
  right: 0;
}

.experts__cta-section{
  color: #fff;
  text-align: center;
  line-height: 1.4;
  margin-top: 20px;
}

/* Seção Benefits */

.benefits {
  background-color: var(--background-section);
  color: var(--text-on-card);
  max-width: 1140px;
  width: 100%;
  border-radius: 20px;
  padding: 3rem 10rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.benefits__title {
  font-family: var(--font-title);
  color: var(--accent-gold-primary);
  font-size: 2rem;
  font-weight: 900;
  text-align: center;
}

.benefits__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 3rem;
}

.benefits__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-on-dark);
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--divider-color);
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
}

.benefits__item:last-child {
  grid-column: 1 / -1;
  justify-self: center;
  border-bottom: 0;
  padding: 0;
}

.benefits__item::before {
  content: "";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background-color: var(--accent-gold-primary);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232f2f2f' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 60%;
  background-position: center;
  background-repeat: no-repeat;
}

.benefits__button {
  display: inline-block;
  background: var(--button-background-gradient);
  background-size: 200% 200%;
  color: var(--background-primary);
  padding: 1rem 2.2rem;
  text-decoration: none;
  border-radius: 40px;
  font-weight: 700;
  text-align: center;
  transition: 0.5s;
  align-self: center;
}

.benefits__button-text {
  display: inline-block;
  transition: transform 0.7s ease;
  transform-origin: center;
}

.benefits__button:hover {
  filter: brightness(1.1);
  background-position: right center;
}

.benefits__button:hover .benefits__button-text {
  transform: scale(1.04);
}

@media (max-width: 768px) {
  .benefits {
    padding: 2.5rem 1.5rem;
  }
  .benefits__list {
    grid-template-columns: 1fr;
  }
  .benefits__item {
    border-bottom: 1px solid var(--divider-color) !important;
    padding-bottom: 1rem !important;
  }
  .benefits__item:last-child {
    border-bottom: none !important;
    padding-bottom: 0 !important;
  }
}

.faq {
  width: 100%;
  max-width: 1140px;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.faq__title {
  font-family: var(--font-title);
  color: var(--text-primary);
  font-size: 2.2rem;
  text-align: center;
  font-weight: 400;
}

.faq__title span {
  font-weight: 900;
  color: var(--accent-gold-primary);
}

.faq__container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq__item {
  background-color: transparent;
  border-radius: 50px;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}


.faq__header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  cursor: pointer;
  list-style: none;
  width: 100%;
  border: 1px solid #daa5206b;
  padding: 10px;
  padding-left: 20px;
  border-radius: 50px;
}

.faq__header::-webkit-details-marker {
  display: none;
}

.faq__icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--accent-gold-primary);
  transition: transform 0.3s ease;
}

.faq__item[open] .faq__icon {
  transform: rotate(45deg);
}

.faq__question {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-primary);
  transition: color 0.3s ease;
}

.faq__item[open] .faq__question {
  color: var(--accent-gold-primary);
}

.faq__content {
  padding: 1rem 0 0.5rem 3.25rem;
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 1rem;
}

.faq__cta {
  display: inline-block;
  background: var(--button-background-gradient);
  background-size: 200% 200%;
  color: var(--background-primary);
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 40px;
  font-weight: 700;
  text-align: center;
  font-size: 1rem;
  transition: 0.5s;
  margin-top: 1rem;
}

.faq__cta-text {
  display: inline-block;
  transition: transform 0.7s ease;
  transform-origin: center;
}

.faq__cta:hover {
  filter: brightness(1.1);
  background-position: right center;
}

.faq__cta:hover .faq__cta-text {
  transform: scale(1.04);
}

/* Seção final de convite */

.final-cta {
  padding: var(--section-padding);
  background-color: var(--background-primary);
}

.final-cta .container {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.final-cta__title {
  font-size: clamp(2.2rem, 6vw, 3rem);
  color: var(--accent-gold-primary);
}

.final-cta__subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 650px; 
  margin-bottom: 1.5rem;
}

.final-cta__button{
  display: inline-block;
  background: var(--button-background-gradient);
  background-size: 200% 200%;
  color: var(--background-primary);
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 40px;
  font-weight: 700;
  text-align: center;
  font-size: 1rem;
  transition: 0.5s;
}

.final-cta__button-text {
  display: inline-block;
  transition: transform 0.7s ease;
  transform-origin: center;
}

.final-cta__button:hover {
  filter: brightness(1.1);
  background-position: right center;
}

.final-cta__button:hover .final-cta__button-text {
  transform: scale(1.04);
}

@media (max-width: 600px) {
  .final-cta__title{
    font-size: 2rem;
  }

  .final-cta__subtitle {
    font-size: .95rem;
  }
}


/* Seção do rodapé */

.footer {
  width: 100%;
  padding: 0.8rem 0;
  text-align: center;
  color: var(--text-on-dark);
  font-size: 0.9rem;
  border-top: 1px solid var(--accent-gold-secondary);
}

.text--gold {
  color: var(--accent-gold-primary);
  font-weight: 700;
}

.text--white {
  color: var(--text-primary);
  font-weight: 700;
}

@media (max-width: 900px) {
  body {
    line-height: 1.4;
    overflow-x: hidden;
  }

  .bloco-anuncio, .how-it-works, .experts, .faq, .final-cta {
    padding: 0 20px;
  }

  .bloco-anuncio {
    flex-direction: column;
    gap: 2.5rem;
    text-align: center;
  }

  .bloco-anuncio__titulo {
    font-size: 2.2rem;
  }

  .bloco-anuncio__conteudo {
    order: 2;
    align-items: center;
  }
  .bloco-anuncio__imagem-container {
    order: 1;
    max-width: 400px;
    width: 100%;
  }

  .bloco-anuncio__descricao, .experts__description {
    text-align: center;
    font-size: 0.93rem;
  }

  .bloco-anuncio__botao {
    font-size: .85rem;
    white-space: normal;
  }

  .bloco-anuncio__botao, .how-it-works__button, .experts__button, .benefits__button {
    align-self: center;
    width: 100%;
    height: auto;
  }

  .bloco-anuncio__imagem {
    margin-left: 20px;
    width: 200px;
  }

  .bloco-anuncio__subtitulo {
    font-size: 1.05rem;
  }

  .how-it-works__title {
    font-size: 2rem;
  }

  .how-it-works__subtitle {
    line-height: 1.4;
    margin-top: .4rem;
  }

  .experts__title {
    font-size: 1.8rem;
    line-height: 1;
    margin-bottom: 1rem;
  }

  .experts__description {
    width: 100%;
  }

  .experts__galery-title {
    font-size: 1.2rem;
    margin-bottom: .4rem;
  }

  .experts__viewport {
    padding: 0;
  }

  .expert {
    flex: 0 0 calc(50% - 0.3rem);
  }

  .experts__button {
    font-size: 1rem;
  }

  .benefits {
    width: 90%;
  }

  .benefits__title {
    font-size: 1.6rem;
  }

  .benefits__button {
    font-size: .9rem;
  }

  .faq__title {
    font-size: 1.8rem;
  }

  .faq__header {
    padding: 10px;
  }

  .faq__question {
    font-size: .95rem;
  }

  .faq__cta{
    font-size: .95rem;
  }

  .form-popup__modal {
    padding: 2rem;
    width: 90%;
    max-width: 400px;
  }

  .form-popup__title {
    margin-top: 1rem;
    font-size: 1.8rem;
  }
}