/* Variáveis de Cores */
:root {
  --primaria: #6EC1E4;
  --secundaria: #54595F;
  --texto-principal: #000000;
  --texto-destaque: #61CE70;
  --destaque: #F6DE51;
  --destaque-escuro: #3B6DAB;
  --destaque-contraste: #3B6DAB;
  --branco: #FFFFFF;
  --neve: #F1F1F1;
}

/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  position: relative;
  background: #FFF;
  font-smooth: always;
  font-family: 'Outfit', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  font-size: 14px;
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  max-height: 100%;
}

img.foto {
  border-radius: 10px;
}

/* Títulos */
h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  color: var(--texto-principal);
}

/* Títulos */
h1 {
  font-size: clamp(26px, 4vw, 30px);
  line-height: 36px;
  margin-bottom: 26px;
}

h1 strong {
  color: var(--texto-principal);
  font-weight: 400;
}

h2 {
  font-size: clamp(24px, 3vw, 28px);
  margin-bottom: 10px;
}

h3 {
  font-size: clamp(22px, 2.5vw, 26px);
  margin-bottom: 10px;
}

h4 {
  margin: 35px 0 15px;
  font-size: clamp(20px, 2vw, 24px);
}

h5 {
  margin: 30px 0 12px;
  font-size: clamp(18px, 1.8vw, 20px);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

h6 {
  margin: 25px 0 10px;
  font-size: clamp(16px, 1.5vw, 18px);
}

/* Textos */
p, ul, ol, li, span {
  font-weight: 300;
}

p, li, span {
  color: var(--texto-principal);
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: clamp(26px, 1.5vw, 30px);
}

/* Links */
a {
  font-family: 'Outfit', system-ui, sans-serif;
  text-decoration: none !important;
  transition: .3s;
  font-weight: 400;
}

a:hover {
  filter: brightness(1.2);
}

strong {
  font-weight: 500;
}

/* Botões */
.btn {
  padding: clamp(12px, 2vw, 20px) clamp(20px, 4vw, 50px);

  border-radius: 60px;
  background: var(--destaque) !important;
  color: var(--texto-principal);
  text-align: center;
  font-weight: 500;
  border: none;
  cursor: pointer;

  font-size: clamp(14px, 1.2vw, 16px);

  transition: 0.3s ease;

  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}

.btn:hover, button:hover {
  filter: brightness(1.2);
}

.btn:hover, button:hover {
  color: var(--texto-principal);
  background: #eaca2c !important;
}

.btn.btn-simples {
  background: transparent !important;
  color: var(--destaque-escuro);
  font-weight: 700;
  transition: all 0.3s;
}

/* Ícones */
.btn svg, button svg, .icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  fill: currentColor;
  flex-shrink: 0;
}

.btn.openDoctorz {
  background-color: var(--amarelo-doctorz);
  color: var(--destaque-escuro);
}

.btn.openDoctorz:hover {
  color: var(--destaque-escuro);
  filter: brightness(1.1);
}

@media (max-width: 768px) {
  h2 {
  font-size: 1.6em;
  }

  .btn, button {
  padding: clamp(25px, 2vh, 30px) clamp(30px, 4vw, 60px);
  font-size: clamp(16px, 1.2vw, 18px);
  }
}

.grecaptcha-badge {
  transform: scale(0);
  box-shadow: none;
}

/* ------------------------------------------
   Páginas internas (não front page)
-------------------------------------------*/

.page-body section {
  padding-top: clamp(50px, 5vh, 80px);
}

.page-body section {
  padding-bottom: clamp(50px, 5vh, 80px);
}

.page-body > h2,
.page-body > h3,
.page-body section > h2,
.page-body section > h3,
.page-body .container > h2,
.page-body .container > h3 {
  text-align: center;
  margin-bottom: 40px;
}

.page-body section > h3:not(:first-child) {
  margin-top: 60px;
}

.page-body p:not(:last-child) {
  margin-bottom: clamp(26px, 1.5vw, 30px);
}

@media (min-width: 1000px) {
  .page-body section {
    padding-top: clamp(80px, 10vh, 100px);
  }

  .page-body section {
    padding-bottom: clamp(80px, 10vh, 100px);
  }
}

/*---------------------------------------------------------*/
/* FAQ */
/*---------------------------------------------------------*/

.faq {
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-question {
  background-color: transparent;
  font-weight: 500;
  font-size: 18px;
  color: var(--texto-principal);
  cursor: pointer;
  padding: 20px 60px 20px 0;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  position: relative;
  transition: 0.3s ease;
  border-radius: 0;
  border-bottom: 1px solid #bfbfbf;
}

.faq-question:hover {
  background: transparent !important;
  color: var(--destaque-contraste);
}

.faq-question::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 22px;
  height: 12px;
  transform: translateY(-50%) rotate(0deg);
  transform-origin: center;
  transition: transform 0.3s ease;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='22' height='12' viewBox='0 0 22 12' fill='none'><path d='M21.7071 1.70757L11.7071 11.7076C11.6142 11.8005 11.5039 11.8743 11.3825 11.9246C11.2611 11.975 11.131 12.0009 10.9996 12.0009C10.8682 12.0009 10.738 11.975 10.6166 11.9246C10.4952 11.8743 10.385 11.8005 10.2921 11.7076L0.292079 1.70757C0.104439 1.51993 -0.000976562 1.26543 -0.000976562 1.00007C-0.000976562 0.734704 0.104439 0.480208 0.292079 0.292567C0.47972 0.104927 0.734215 -0.000488281 0.999579 -0.000488281C1.26494 -0.000488281 1.51944 0.104927 1.70708 0.292567L10.9996 9.58632L20.2921 0.292567C20.385 0.199657 20.4953 0.125957 20.6167 0.0756741C20.7381 0.0253914 20.8682 -0.000488281 20.9996 -0.000488281C21.131 -0.000488281 21.2611 0.0253914 21.3825 0.0756741C21.5039 0.125957 21.6142 0.199657 21.7071 0.292567C21.8 0.385477 21.8737 0.495778 21.924 0.617171C21.9743 0.738564 22.0001 0.868673 22.0001 1.00007C22.0001 1.13146 21.9743 1.26157 21.924 1.38296C21.8737 1.50436 21.8 1.61466 21.7071 1.70757Z' fill='%23002554'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
}

.faq-item.active .faq-question::after {
  transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
  max-height: 0;
  padding: 0 20px;
  color: var(--destaque-escuro);
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.4s ease;
}

.faq-item.active .faq-answer {
  padding: 2vw 10px;
  max-height: fit-content;
}

/*---------------------------------------------------------*/
/* Vídeo placeholder */
/*---------------------------------------------------------*/

.video-placeholder {
  position: relative;
  width: 100%;
  max-width: 850px;
  min-width: 280px;
  background: transparent;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  cursor: pointer;
}

.video-placeholder .video-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.video-placeholder .play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: none;
  padding: 0.6rem;
  cursor: pointer;
  border-radius: 50%;
  background: none;
  box-shadow: none;
  z-index: 2;
}

.video-placeholder .play-button img {
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.25));
  width: clamp(50px, 5vw, 80px);
  height: clamp(50px, 5vw, 80px);
  object-fit: contain;
  transition: 0.5s;
}

.video-placeholder:hover .play-button img,
.video-placeholder:focus .play-button imgs {
  transform: scale(1.15);
}

/* Vídeo embed */
.video-embed-wrap {
  position: relative;
  width: 100%;
  max-width: 850px;
  min-width: 280px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
}

.video-embed-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 10px;
}

@media (max-width: 999px) {
  .video-placeholder, .video-embed-wrap {
  min-width: 100%;
  }
}

/*---------------------------------------------------------*/
/* Botões de navegação do Swiper */
/*---------------------------------------------------------*/

/* .swiper {
  position: relative;
  max-width: 100%;
  margin: 2rem auto;
  padding: 1rem;
}

.swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper .swiper-button-next,
.swiper .swiper-button-prev {
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.5s;
  z-index: 10;
  background: none;
}

.swiper .swiper-button-prev { left: -10px; }
.swiper .swiper-button-next { right: -10px; }

.swiper .swiper-button-next::after,
.swiper .swiper-button-prev::after {
  content: none !important;
}

.swiper .swiper-button-next svg,
.swiper .swiper-button-prev svg {
  width: 50px;
  height: 50px;
  fill: var(--destaque-contraste);
  transition: fill 0.3s;
}

.swiper .swiper-button-next:hover svg,
.swiper .swiper-button-prev:hover svg {
  fill: var(--texto-destaque);
}

.swiper .swiper-pagination {
  margin-top: 1.5rem;
}

@media (max-width: 768px) {
  .swiper .swiper-slide {
  justify-content: center;
  align-items: center;
  }
} */

/* Swiper - Remove setas padrão */
.swiper-button-next::after,
.swiper-button-prev::after {
  content: none !important;
  display: none !important;
}

/* Container do swiper */
.carrossel {
  width: 95%;
  max-width: 1350px;
  margin: 50px auto auto auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Container do swiper */
.carrossel .swiper {
  flex: 1;
  max-width: 100%;
  padding: 2px;
}

.swiper-wrapper {
  display: flex;
  align-items: center;
  flex: 1;
  max-width: 100%;
}

/* Botões customizados fora do swiper */
.swiper-button-prev,
.swiper-button-next {
  position: static;
  margin: 0;
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--destaque-contraste);
}

.swiper-button-prev svg,
.swiper-button-next svg {
  width: 30px;
  height: 30px;
  fill: var(--destaque-contraste);
}

/* Custom pagination */
.custom-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.custom-pagination .bullet {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
  transition: background-color 0.3s;
}

.custom-pagination .bullet.active {
  background-color: var(--texto-principal);
  transform: scale(1.05);
}

/* Responsivo */
@media (max-width: 1200px) {
  .swiper-controles {
  max-width: 90%;
  }
}

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

@media (max-width: 480px) {
  .swiper-button-prev svg,
  .swiper-button-next svg {
  width: 24px;
  height: 24px;
  }
  .custom-pagination .bullet {
  width: 10px;
  height: 10px;
  }
}

/*---------------------------------------------------------*/
/* Card depoimentos */
/*---------------------------------------------------------*/

.card-depoimento {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
  margin-bottom: 2rem;
  width: 100%;
  max-width: 1450px;
  box-sizing: border-box;
}

.card-depoimento h3 {
  font-size: 16px;
  margin-top: 5px;
  font-weight: 500;
}

.card-depoimento .video {
  flex: 1 1 50%;
  width: 100%;
  max-width: 830px;
  min-width: 280px;
  margin: 0;
}

.info-depoimento {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0px 0px 5px rgba(0,0,0,0.29);
  flex: 0 0 500px;
  max-width: 500px;
  width: 100%;
  position: relative;
  right: -30px;
  z-index: 2;
  box-sizing: border-box;
}

.sobre-entrevistado {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}

.estrelas { display:flex; gap:6px; align-items:center; }
.estrelas .estrela { width:18px; height:18px; }
.estrelas .estrela path { fill: var(--destaque-contraste); }


.info-depoimento .sobre-entrevistado img.foto-depoimento {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--destaque-contraste);
}

/* Avaliação e texto fluem */
.info-depoimento .avaliacao {
  flex: 1 1 auto;
}

/* ----------------- Media queries ----------------- */
@media (max-width: 1100px) {
  .card-depoimento {
  flex-direction: column-reverse;
  }

  .card-depoimento .video {
  order: 2;
  max-width: 100%;
  min-width: 0;
  }

  .info-depoimento {
  right: 0;
  top: -20px;
  margin: 0 auto;
  width: 100%;
  max-width: 95%;
  max-height: fit-content;
  }

  .sobre-entrevistado {
  padding: 16px;
  width: 100%;
  }

  section.depoimentos-destaque .container {
  padding-right: 10px;
  padding-left: 10px;
  }

  .carrossel {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1350px;
  margin: auto;
  gap: 5px;
  }

  .info-depoimento h3 {
  font-size: 1rem;
  margin-top: 5px;
  font-weight: 700;
  }

  .info-depoimento .avaliacao p {
  font-size: 14px;
  }

  .info-depoimento .sobre-entrevistado img.foto-depoimento {
  width: 100%;
  height: 100%;
  }

  .carrossel {
   gap: 5px;
  }

  .carrossel .custom-pagination {
  margin-top: 0;
  }

  .info-depoimento {
   padding: 20px 10px;
   flex: 100%;
   width: 100%;
   gap: 0;
  }

  .section-header {
    padding: 50px 0 !important;
  }
}

@media (max-width:999px) {
  section .section-header {
  text-align: center;
  width: 100%;
  margin-bottom: 20px;
  justify-content: center !important;
  padding: 0 !important;
  }
}

/* ------------------------------------------
   Page Header
-------------------------------------------*/

.header-page {
  padding: 5vh 0;
}

.header-page,
.header-page a {
  color: #D4D4D4;
  font-size: clamp(14px, 2vw, 18px);
}

.header-page a:hover {
  color: var(--texto-destaque);
}

.header-page strong, .header-page .breadcrumb_last {
  color: var(--destaque-escuro);
  font-weight: 500;
  cursor: default;
}

/* ------------------------------------------
   CTA
-------------------------------------------*/

section.cta {
  background-color: var(--destaque-escuro);
  border-bottom: 1px solid var(--branco);
  padding-top: 0 !important;
  padding-bottom: 0;
}

.cta .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25%;
    padding: 50px 0;
    min-height: 35vh;
}

.cta .section-header {
  flex: 1;
}

.cta h2,
.cta p {
  color: var(--branco);
}

.cta p {
  font-size: clamp(18px, 2vw, 24px);
  line-height: clamp(22px, 2vw, 28px);
  margin-bottom: 0;
}

.cta .btn {
  background-color: var(--branco);
  color: var(--texto-principal);
  flex-shrink: 0;
}

.cta .btn:hover {
  filter: brightness(1.1);
}

@media (max-width: 768px) {
  .cta .container {
  flex-wrap: wrap;
  padding-left: 8vw;
  padding-right: 8vw;
  justify-content: center;
  text-align: center;
  }

  .cta .section-header {
  flex: 100%;
  text-align: center;
  }

  .cta p {
  margin-bottom: 20px;
  }
}

/* ---------------------------------------------------------
   Conteúdo do Post - Container Text
--------------------------------------------------------- */
.container-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #454379;
}

.container-text ul,
.container-text ol {
  margin: 1.2em 0 1.5em 1.5em;
  padding-left: 1em;
  color: #454379;
}

.container-text li {
  margin-bottom: 0.6em;
}

.container-text a {
  color: var(--destaque-contraste);
  text-decoration: underline;
  transition: color 0.3s;
}

.container-text a:hover {
  color: var(--destaque-escuro);
}

.container-text p span[style*="background"] {
  display: inline-block;
  border-radius: 5px;
  padding: 5px 10px;
  margin-bottom: 15px;
}

.container-text h2 {
  margin: 2.5em 0 1em 0;
}

.container-text h3:not(li h3) {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--destaque-escuro);
  margin: 2em 0 0.8em 0;
  line-height: 1.3;
  border-left: 4px solid var(--destaque-contraste);
  padding-left: 0.6em;
}

.container-text h3:not(li h3):first-child {
  margin: 0 0 0.8em 0;
}

.container-text h4,
.container-text h5,
.container-text h6 {
  font-weight: 700;
  color: var(--destaque-escuro);
  margin: 1.5em 0 0.6em 0;
}

.container-text img {
  max-width: 100%;
  height: auto;
  margin: 1.5em 0;
  border-radius: 8px;
}

.container-text .wp-block-embed,
.container-text iframe {
  margin: 2em 0;
  border-radius: 8px;
  overflow: hidden;
}

.container-text p a {
  color: var(--destaque-contraste);
  font-weight: 700;
}

.container-text img,
.wp-block-image img,
.wp-block-gallery img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 1.25em 0;
  border-radius: 8px;
  box-shadow: none;
}

.container-text figure {
  margin: 0 0 1.25em;
}
.container-text figcaption {
  font-size: .85rem;
  color: #6b6b7a;
  margin-top: .4rem;
  text-align: center;
}

.container-text .aligncenter { margin-left: auto; margin-right: auto; }
.container-text .alignleft { float: left; margin: 0 1rem 1rem 0; }
.container-text .alignright { float: right; margin: 0 0 1rem 1rem; }

.container-text .alignleft img,
.container-text .alignright img {
  width: clamp(120px, 28%, 40%);
  height: auto;
}

.container-text .alignwide,
.container-text .alignfull {
  width: calc(100% + 60px);
  max-width: 100vw;
  margin-left: calc(-1 * var(--container-padding, 30px));
  margin-right: calc(-1 * var(--container-padding, 30px));
}

.container-text .wp-block-gallery {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.container-text .fixed-thumb {
  width: 100%;
  height: 280px;
  overflow: hidden;
  border-radius: 8px;
}
.container-text .fixed-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .container-text .alignleft,
  .container-text .alignright {
  float: none;
  margin: 1rem auto 1rem;
  display: block;
  width: 100%;
  }
  .container-text .wp-block-gallery { grid-template-columns: repeat(2, 1fr); }
}


/* Desktop: só mostra o botão dentro do header */
.btnMobile {
  display: none;
}

/* Mobile: esconde o botão do header e mostra o botão extra */
@media (max-width: 768px) {
  .section-header .btn {
  display: none;
  }

  .btnMobile {
  display: block;
  text-align: center;
  margin-top: 20px;
  }
}

/* ---------------------------------------------------------
   Info Convênios
--------------------------------------------------------- */
.info-tooltip {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  margin-left: 8px;
}

.info-tooltip svg {
  display: inline-block;
  width: 30px;
  height: 30px;
  vertical-align: middle;
}

/* Tooltip permanece igual */
.tooltip-text {
  visibility: hidden;
  width: 300px;
  max-width: calc(100vw - 20px);
  background-color: var(--destaque-escuro);
  color: var(--branco);
  text-align: left;
  border-radius: 8px;
  padding: 12px 15px;
  position: absolute;
  z-index: 10;
  top: 120%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 16px;
  line-height: 1.5;
  opacity: 0;
  transition: opacity 0.3s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  box-sizing: border-box;
}

.tooltip-text::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent var(--destaque-escuro) transparent;
}

/* Estilo para links dentro do tooltip */
.tooltip-text a {
  color: var(--destaque-contraste);
  text-decoration: underline;
}

.tooltip-text a:hover {
  color: var(--destaque);
}

/* Hover no desktop */
@media (min-width: 481px) {
  .info-tooltip:hover .tooltip-text,
  .info-tooltip:focus .tooltip-text {
  visibility: visible;
  opacity: 1;
  }
}

/* Mobile / responsivo */
@media (max-width: 480px) {
  .tooltip-text {
  left: auto;
  right: 0;
  transform: none;
  }

  .tooltip-text::after {
  right: 10px;
  left: auto;
  transform: none;
  }
}

/* ---------------------------------------------------------
  Passo a passo
--------------------------------------------------------- */

/* Container geral */
.passo-a-passo {
  padding: 60px 20px;
  background-color: #f5f5f5;
  text-align: center;
}

.passo-a-passo h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #333;
}

/* Wrapper dos passos */
.passo-a-passo .passos-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Cada passo */
.passo-a-passo .passo {
  background: #f5f5f5;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  flex: 1 1 220px;
  max-width: 250px;
  transition: transform 0.3s;
}

.passo-a-passo .passo:hover {
  transform: translateY(-5px);
}

/* Ícone do passo */
.passo-a-passo .passo img {
  width: auto;
  height: 60px;
  object-fit: contain;
  margin-bottom: 15px;
}

/* Seta entre os passos */
.passo-a-passo .seta {
  display: flex;
  align-items: center;
  justify-content: center;
}

.passo-a-passo .seta svg {
  width: 20px;
  height: 20px;
  fill: var(--destaque-escuro);
}

/* Botão */
.passo-a-passo .btn-wrapper {
  margin-top: 30px;
  text-align: center;
}

/* Responsivo */
@media (max-width: 768px) {
  .passo-a-passo .passos-wrapper {
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .passo-a-passo .passo {
    flex: 0 0 80%;
    max-width: none;
  }
  .passo-a-passo p {
    margin-bottom: 0;
  }
}

@media (max-width: 480px) {
  .passo-a-passo h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .passo-a-passo .passo {
    flex: 0 0 90%;
  }

  .passo-a-passo .seta svg {
    transform: rotate(90deg);
  }
}

.form-message {
  color: #a2fffc;
}