@font-face {
  font-family: 'hello_roti';
  src: url('../fonts/hello_roti.woff');
}

.custom-arrow {
  width: 60px;
  height: 60px;
  background: #008B9A;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1 !important;
  display: flex !important;
  justify-content: center;
  align-items: center;
  border: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);

  z-index: 20 !important;        /* 🔥 garante que fica sobre o iframe */
  pointer-events: auto !important; /* 🔥 ativa o clique */
}

.kaltura-frame {
  position: relative;
  z-index: 1;
  pointer-events: none;  /* iframe não bloqueia setas */
}

.kaltura-frame iframe {
  pointer-events: auto;  /* só o iframe pode clicar play */
}

.custom-arrow {
  z-index: 10 !important; 
  pointer-events: auto !important;
}

.custom-arrow .arrow-icon {
  color: white;
  font-size: 32px;
  font-weight: bold;
}

.carousel-control-prev {
  left: -30px;
}

.carousel-control-next {
  right: -30px;
}

/* ===== FAQ ===== */

.faq {
  padding: 80px 0;
}

.formulario {

  padding: 80px 0;

}

.table-responsive .tabela>:not(caption)>*>* {
  padding: .5rem .5rem;
  border-color: var(--corLinhaTabela);
  border-right-width: 1px;
}

/* ===== Form ===== */

#form{
  width: 100%;
  height: 1565px;
}

.form-iframe{
  width: 100%;
  height: 100%;
}

/* ===== Accordion ===== */

.accordion {
  padding: 30px 25px;
  box-shadow: 0px 1531px 429px 0px rgba(92, 92, 92, 0.00), 0px 245px 245px 0px rgba(92, 92, 92, 0.09), 0px 61px 135px 0px rgba(92, 92, 92, 0.10);
  background: var(--white);
  border-radius: 40px;
}

.card {
  border: 0;
  border-bottom: 1px solid var(--gray_2);
  padding: 35px 45px;
  border-radius: 0;
}

.card.last {
  border: 0;
}

.card-header {
  padding: 0 32px 0 0;
  position: relative;
}

.card-header a:before {
  color: var(--white);
  background-color: var(--blue);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: block;
  content: '-';
  text-align: center;
  line-height: 34px;
  position: absolute;
  right: -34px;
  top: 50%;
  transform: translateY(-50%);
  transition: ease all 0.4s;
}

.card-header a.collapsed:before {
  background: var(--gray_3);
  content: '+';
  color: var(--blue);
}

.card-header a,
.card-header a:hover {
  color: var(--blue);
}

.card-header a.collapsed {
  color: var(--black_1);
}

/* ===== SEÇÃO DE FATORES CLÍNICOS ===== */

.fatores {
  padding: 0 0 80px 0;
}

.fatores-section {
  background: var(--white);
    border-radius: 32px;
    box-shadow: 0px 136px 136px 0px rgba(0, 0, 0, 0.09), 0px 34px 75px 0px rgba(0, 0, 0, 0.1);
}

.fatores-row {
  border-color: #f4d03f !important; /* linha amarela */
}

.fatores-section ul {
  padding-left: 1.2rem;
}

.fatores-section li {
  margin-bottom: 4px;
}






/* ===== Lista Exames ===== */
.listaExames {
  list-style: none;           /* remove o marcador padrão */
  padding: 0;
  margin: 0;
}

.listaExames li {
  display: flex;              /* alinha imagem e texto na horizontal */

  gap: 12px;                  /* espaçamento entre o ícone e o texto */
  margin-bottom: 10px;
  
}

.listaExames img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* ===== CARD AMARELO ===== */
.cardAmarelo {
  background: var(--yellow);
  border-radius: 30px;
  box-shadow: 0px 60px 80px rgba(0, 0, 0, 0.1);
  overflow: visible;
  max-width: 1024px;
  width: 100%;
}

/* ===== IMAGEM FLUTUANTE ===== */
.ebookIlustraWrapper {
  position: relative;
}

.ebookIlustra {
  position: absolute;
  bottom: -150px;      /* o quanto "sai" do box */
  left: 50%;
  transform: translateX(-50%);
  width: 300px;       /* limite de tamanho */
  height: auto;
}

/* ===== BOTÃO ===== */
.ebook .btn_acesse {
  background: #a50555;
  border-bottom: 6px solid #3F0024;
  border-radius: 20px;
  font-size: 1.5rem;
  color: #FFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 420px;
}

.ebook .btn_acesse:hover {
  background: #830437;
}

.ebook .btn_acesse img {
  transition: transform 0.3s ease;
}

.ebook .btn_acesse:hover img {
  transform: translateX(4px);
}

.medico {
    background: #424647;
}


.medicoIlustra {position: relative;}

.medicoIlustra img {position: absolute; bottom: 0px;}

.medico .btn_acesse{
  background: #a50555;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 605px;
  width: 100%;
  text-decoration: none;
  border-bottom: 6px solid #3F0024;
  border-radius: 20px;
  font-size: 32px;
  color: #FFF;
  padding-top: 2px;
  transition: .3s;
}
.medico .btn_acesse img{
  top: -2px;
  position: relative;
}

.medico .btn_acesse:hover img{
  animation: frenteEVoltar .7s infinite ease-in-out;
}

.medico .btn_acesse:hover{
  background: #830437;
}

.videoGeral  {border-radius: 16px; filter: drop-shadow(0px 4px 12px #00000026)}

.yellow-box h1{
  font-family: 'hello_roti';
  font-size: 68px;
  line-height: 1em;
  background: linear-gradient(to right, #811553, #44387B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.banner .row{
  display: flex;
  justify-content: space-between;
  width: 100% !important;
  flex-wrap: inherit;
  margin: 0 !important;
  padding: 0 !important;
}

.banner {
  overflow: hidden;
}

.banner .col-md-6{
  max-width: 520px;
}

.banner .right{
  max-width: 720px;
  width: 100%;
  position: relative;
  z-index: 10;

}

.banner .right figure {
  border-radius: 0 0 20px 20px;
  overflow: hidden;
  display: flex;
}

.banner .right figure img{
  width: 100%;
}



.explore{
  background: #FFF;
  border-radius: 20px;
  margin-top: 10px;
  padding: 30px 45px 30px 45px;
}

.explore p{
  font-size: 28px;
  font-weight: 200;
  line-height: 1.2em;
  margin-bottom: 25px;
}

.explore .btn_acesse{
  background: #a50555;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 605px;
  width: 100%;
  text-decoration: none;
  border-bottom: 6px solid #3F0024;
  border-radius: 20px;
  font-size: 32px;
  color: #FFF;
  padding-top: 2px;
  transition: .3s;
}

.explore .btn_acesse img{
  top: -2px;
  position: relative;
}

.explore .btn_acesse:hover img{
  animation: frenteEVoltar .7s infinite ease-in-out;
}

.explore .btn_acesse:hover{
  background: #830437;
}


@media (max-width: 1300px) {
  .banner .right{
    max-width: 620px;
  }

  .banner .col-md-6{
    max-width: 505px;
  }
}

@media (max-width: 1200px) {
  .banner .right{
    max-width: 520px;
  }

  .banner .col-md-6{
    max-width: 425px;
  }

  .banner .right figure{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 292px;
    overflow: hidden;
    border-radius: 0 0 20px 20px;
  }

  .banner .right figure img{
    width: 115%;
  }

  .explore .btn_acesse{
    height: 54px;
    /*max-width: 280px;*/
    border-bottom: 5px solid #3F0024;
    font-size: 24px;
    padding-top: 4px;
  }

  .explore .btn_acesse img{
    width: 22px;
  }
}

@media (max-width: 990px) {
  .banner .row{
    flex-direction: column;
  }

  .banner .col-md-6{
    max-width: 100%;
    width: 100%;
    margin-bottom: 40px;
  }

  .banner .right{
    max-width: 100%;
  }

  .banner .right figure{
   height: auto;
   border-radius: 20px;
  }

  .banner .right figure img{
    width: 100%;
  }

  .yellow-box{
    padding-right: 0 !important;
  }

  .menu-landing li a{
    width: 100% !important;
  }

}

@media (max-width: 767px) {

.card {padding: 20px 0px;}

  .explore{
    border-radius: 20px;
    margin-top: 10px;
    padding: 30px 20px 30px 20px;
  }
    
  .explore .btn_acesse, .medico .btn_acesse, .ebook  .btn_acesse {
    height: 54px;
    /*max-width: 280px;*/
    border-bottom: 5px solid #3F0024;
    font-size: 17px;
    
  }
  
  .explore p{
    font-size: 22px;
    margin-bottom: 25px;
  }

  .explore .btn_acesse img, .medico .btn_acesse img, .ebook .btn_acesse img{
    padding-left: 5px;
    top: -1px;
    width: 22px;
    animation: frenteEVoltar .7s infinite ease-in-out;
  }
    
    .medicoIlustra img {width: 65%;
    height: auto;
    margin: 0 auto;
    display: block;
    position: relative;}
    
}



.baixe_agora h2{
  text-align: center;
  color: #FFF;
  margin-bottom: 70px;
}

.container_n{
  background: #A50555;
  padding: 80px 20px 100px 20px;
  border-radius: 50px;
}

.container_box{
  display: flex;
  justify-content: space-between;
  padding-top: 150px;
  max-width: 1040px;
  margin: 0 auto;
}

.container_box .box{
  max-width: 325px;
  width: 100%;
  background: #F7EAD0;
  text-align: center;
  position: relative;
  border-radius: 30px;
  padding: 70px 20px 0 20px;
  margin: 0 10px;
}

.container_box .box p{
  font-size: 18px;
  font-weight: 300;
}

.img_ebook{
  position: absolute;
  width: 180px;
  left: 0;
  right: 0;
  top: -150px;
  margin: auto;
}

.img_ebook img{
  width: 100%;
}

.btn_ebook{
  display: flex;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
}

.btn_ebook figure{
  width: 32px;
  height: 32px;
  background: #A50555;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-left: 10px;
}

.btn_ebook figure img{
  width: 12px;
  position: relative;
}

.btn_ebook:hover{
  color: #A50555;
}

.btn_ebook:hover img{
  animation: frenteEVoltar2 .7s infinite ease-in-out;
}

@media (max-width: 990px ) {
  .container_box{
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    padding-top: 20px;
  }

  .container_box .box{
    margin-bottom: 100px;
    margin: 0 0 70px 0;
  }

  .container_box .box:last-child{
    margin-bottom: 50px;
  }

  .img_ebook{
    max-width: 100px;
    top: -50px;
  }

  .container_box .box p{
   max-width: 200px;
   margin: 0 auto 20px auto;
  }

  .container_n{
    border-radius: 0;
    padding-top: 50px;
    padding-bottom: 0;
  }
}


@keyframes frenteEVoltar {
  0%, 100% {
    left: 0;
  }
  50% {
    left: 5px;
  }
}

@keyframes frenteEVoltar2 {
  0%, 100% {
    left: 0;
  }
  50% {
    left: 2px;
  }
}


@media (min-width: 1300px) {
  .container {
    max-width: 1270px;
  }
}

:root {
  --white: #ffffff;
  --white_2: #f7f7f7;
  --black: #000000;
  --black_1: #111111;
  --gray: rgba(60, 60, 67, 0.85);
  --gray_2: #d9dbe9;
  --gray_3: #f5f5f5;
  --gray_4: #f4f4f4;
  --gray_5: #e4e4e4;
  --yellow: #ffad00;
  --fuchsia: #701A75;
  --corLinhaTabela: #E2E8F0;
  --pink: #a50555;
  --blue: #008caa;
  --beige: #f7ead0;
  --teal: #d0e5e9;
  --gradiente: linear-gradient(90deg, rgba(165, 5, 85, 1) 0%, rgba(0, 140, 170, 1) 100%);
  --light: 300;
  --regular: 400;
  --medium: 500;
  --semibold: 600;
  --bold: 700;
  --extrabold: 800;
  --heavy: 900;
  --paralucent: "paralucent", sans-serif;
}

.fw-100 {
  font-weight: 100;
}

.fw-200 {
  font-weight: 200;
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

.fw-900 {
  font-weight: 900;
}

.c_white {
  color: var(--white);
}

.c_black {
  color: var(--black);
}

.c_fuchsia {
  color: var(--fuchsia);
}

.c_black_1 {
  color: var(--black_1);
}

.c_yellow {
  color: var(--yellow);
}

.c_pink {
  color: var(--pink);
}

.c_blue {
  color: var(--blue);
}

.c_beige {
  color: var(--beige);
}

.c_teal {
  color: var(--teal);
}

.c_gray {
  color: var(--gray);
}

.c_gradiente {
  color: var(--gradiente);
}

.ff_pl {
  font-family: var(--paralucent);
}

body {
  background: var(--white_2);
}

html,
body {
  height: 100%;
}

h1 a {
  text-decoration: none;
}

h1 a:hover {
  color: #fff;
}

.fs-48 {
  font-size: 48px;
  line-height: 110%;
}

.fs-40 {
  font-size: 40px;
  line-height: 120%;
}

.fs-24 {
  font-size: 24px;
  line-height: 120%;
}

.fs-32 {
  font-size: 32px;
  line-height: 120%;
}

.fs-20 {
  font-size: 20px;
  line-height: 130%;
}

.fs-16 {
  font-size: 16px;
  line-height: 130%;
}

.fs-14 {
  font-size: 14px;
  line-height: 130%;
}

.fs-12 {
  font-size: 12px;
  line-height: 130%;
}

.hyphen-title {
  position: relative;
  padding-left: 64px;
}

.hyphen-title:before {
  content: "";
  position: absolute;
  top: 18px;
  width: 32px;
  height: 10px;
  background: var(--pink);
  left: 0px;
  z-index: 1;
  transform: translateY(-50%);
  border-radius: 8px;
}

.yellow-box {
  position: relative;
  min-height: 14vw;
}

.banner {
  position: relative;
}

.banner:before {
  border-radius: 0 0 0 40px;
  width: 53%;
  right: 0;
  height: 100%;
  /* background: url(../images/banner.png) left top no-repeat;
  background-size: cover; */
  content: "";
  display: block;
  position: absolute;
}

.banner:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 14vw;
  transform: translateX(-50%);
  background: url('https://www.azmed.com.br/content/dam/multibrand/br/pt/azmed-2025/landing-pages/hpp/images/faixa.webp') center center / cover no-repeat;
  z-index: -1;
}

.menu-landing {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-landing li {
  margin-bottom: 20px;
}

.menu-landing li:last-child {
  margin-bottom: 0;
}

.menu-landing li a {
  display: flex;
  align-items: center;
  position: relative;
  padding: 0 40px 0 24px;
  height: 40px;
  background: #8D8D8D;
  border-radius: 0 100px 100px 0;
  width: 100%;
  text-decoration: none;
  border: 1px solid #8D8D8D;
  transition: ease all 0.4s;
}

.menu-landing li a:after {
  position: absolute;
  background: url(../images/arrow_back_ios.png) right center no-repeat;
  content: "";
  display: block;
  width: 15px;
  height: 17px;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  background-size: contain;
}

.menu-landing li a:hover {
  color: #8D8D8D;
  background: #FFF;
}

.find-hpp {
  padding: 60px 0 0 0;
}

.about-hpp {
  padding: 60px 0 60px;
}

.yellow-box2 {
  background: var(--beige);
  border-radius: 40px;
  box-shadow: 0px 136px 136px 0px rgba(0, 0, 0, 0.09), 0px 34px 75px 0px rgba(0, 0, 0, 0.1);
  padding-top: 60px;
  padding-bottom: 60px;
}

.yellow-box2 .first-box {
  padding-right: 100px;
  position: relative;
}

.yellow-box2 .first-box:before {
  width: 106px;
  height: 106px;
  content: "";
  right: -24px;
  background: url(../images/dna-yellow-icon.png) no-repeat;
  background-size: contain;
  display: block;
  position: absolute;
}

.what-is-hpp .container {
  background-color: var(--beige);
  border-radius: 40px;
  padding-top: 60px;
  padding-bottom: 60px;
}

.what-is-hpp .container div {
  position: relative;
}

.types-hpp {
  padding: 0 0 80px;
}

.manifestations-hpp {
  padding: 60px 0;
  background: var(--gray_5);
}

.diagnotic-hpp {
  padding: 40px 0 80px 0;
}

.white-box {
  background: var(--white);
  padding: 40px 85px 40px 128px;
  position: relative;
  border-radius: 32px;
  box-shadow: 0px 107px 107px 0px rgba(0, 0, 0, 0.09), 0px 27px 59px 0px rgba(0, 0, 0, 0.1);
  width: calc(100% - 60px);
  margin-left: auto;
}

.box-icon {
  position: absolute;
  left: -61px;
  top: 40px;
  background: var(--pink);
  display: flex;
  border-radius: 32px;
  width: 122px;
  height: 122px;
  justify-content: center;
  align-items: center;
}

.signals-hpp {
  background: rgba(0, 140, 170, 0.08);
  padding: 60px 0;
}

.bordered-line {
  position: relative;
  padding: 9px 0 0;
  list-style: none;
}

.bordered-line:before {
  width: 3px;
  background: var(--blue);
  content: "";
  display: block;
  position: absolute;
  left: 8px;
  height: 100%;
  top: 0;
}

.bordered-line li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 16px;
}

.bordered-line li:last-child {
  margin: 0;
}

.bordered-line li:before {
  border: 3px solid var(--blue);
  background: #e4eff1;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  top: 4px;
}

.criteria.children {
  background: rgba(0, 140, 170, 0.16);
  padding: 60px 0;
}

.criteria.children img {
  position: relative;
}

.criteria.adult {
  background: rgba(0, 140, 170, 0.24);
  padding: 60px 0 120px;
}

.criteria.adult img {
  bottom: 0px;
  position: relative;
}

.blue-box .container {
  background: var(--blue);
  padding-top: 45px;
  padding-bottom: 40px;
  border-radius: 40px;
  margin-top: -96px;
}

.life-expectancy {
  padding: 0px 0 80px;
}

.gray-box {
  background: var(--gray_5);
  padding-top: 40px;
  padding-bottom: 40px;
  border-radius: 40px;
}

.quality-of-live {
  padding: 80px 0 60px;
  background: rgba(165, 5, 85, 0.08);
}

.quality-of-live .box {
  background: var(--white);
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  gap: 30px;
  padding-right: 40px;
}

.quality-of-live .box .img {
  width: 124px;
  display: flex;
  height: 124px;
  background: var(--pink);
  border-radius: 32px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.quality-of-live .box .text {
  flex-grow: 1;
  padding-top: 24px;
}

.card-living {
  background: var(--white);
  border-radius: 32px;
  padding: 32px;
}

.card-living.blue {
  background: var(--blue);
}

.btn-default {
  background: var(--white);
  border-radius: 100px;
  color: var(--black);
  padding: 12.5px 24px;
  display: inline-block;
  text-decoration: none;
  transition: ease all 0.4s;
}

.btn-default img {
  margin-left: 10px;
  position: relative;
  top: -1px;
}

.btn-default:hover {
  background: var(--white_2);
  color: var(--black_1);
}

.living-hpp {
  padding: 60px 0;
  background: rgba(165, 5, 85, 0.16);
}

.references {
  padding: 60px 0 60px;
}

.references hr {
  border-top: 2px solid var(--gray_2);
  margin: 0 0 60px;
  opacity: 1;
}

.references ol {
  padding-left: 18px;
}

.floating_btn {
  position: fixed;
  bottom: 15px;
  right: 55px;
  z-index: 999;
  width: 20px;
  height: 20px;
}

footer {
  padding: 30px 0;
  background: var(--white);
}

.fixed-button {
  position: fixed;
  bottom: 75px;
  right: 40px;
}

@media (max-width: 1299px) {
  .criteria.adult {
    padding-bottom: 150px;
  }

  .menu-landing li {
    margin-bottom: 10px;
  }

  .criteria.adult img {
    position: relative;
  }

  .quality-of-live .box {
    gap: 20px;
    padding-right: 15px;
  }
}

@media (max-width: 1199px) {
  .fs-md-16 {
    font-size: 16px;
  }

  .fs-md-20 {
    font-size: 20px;
  }

  .fs-md-32 {
    font-size: 32px;
  }

  .banner .fs-md-20{
    margin-bottom: 10px !important;
    line-height: 1.2em;
  }

  .banner .fs-md-20 br{
    display: none;
  }

  .menu-landing li a {
    width: calc(100% - 60px);
  }

  .yellow-box {
    padding-right: 64px;
  }

  .banner:before {
    background-position: -117px top;
  }

  .manifestations-hpp img.img-fluid {
    width: 74px;
  }

  .quality-of-live .box {
    border-radius: 20px 32px 32px 20px;
  }

  .quality-of-live .box .img {
    width: 73px;
    border-radius: 20px;
  }

  .quality-of-live .box.first .img,
  .quality-of-live .box.second .img {
    height: 145px;
  }

  .quality-of-live .box.third .img,
  .quality-of-live .box.img {
    height: 124px;
  }

  .quality-of-live .box.first .img img {
    max-width: 30px;
  }

  .quality-of-live .box.second .img img,
  .quality-of-live .box.third .img img {
    max-width: 37px;
  }

  .quality-of-live .box.fourth .img img {
    max-width: 53px;
  }

  .fixed-button {
    width: 60px;
  }
}

@media (max-width: 991px) {
  .banner:before {
    background-position: -228px top;
  }
}

@media (max-width: 767px) {

   .carousel-control-prev {
    left: -23px;
  }
  .carousel-control-next {
    right: -23px;
  }

  .custom-arrow {
    width: 48px;
    height: 48px;
  }
    
 .ebookIlustra {
    position: static;
    transform: none;
    width: 70%;
    margin-bottom: 20px;
  }

  .cardAmarelo {
    text-align: center;
    padding: 40px 30px;
  }


  .fs-mb-16 {
    font-size: 16px;
  }

  .fs-mb-20 {
    font-size: 20px;
  }

  .fs-mb-24 {
    font-size: 24px;
  }

  .hyphen-title {
    padding-left: 45px;
  }

  .banner .fs-md-20{
    margin-bottom: 30px !important;
  }

  .hyphen-title:before {
    width: 25px;
    height: 8px;
    top: 14px;
  }

  .banner {
    overflow: hidden;
  }

  .yellow-box {
    left: 12px;
    padding-top: 40px;
    padding-bottom: 35px;
    margin-bottom: 30px;
  }

  .banner:before {
    height: 290px;
    width: 100%;
    top: 130px;
    background-size: 1000px auto;
    background-position: -100px -40px;
  }

  .menu-landing li a {
    width: 100%;
  }

  .find-hpp {
    padding-top: 40px;
  }

  .about-hpp,
  .manifestations-hpp,
  .diagnotic-hpp,
  .signals-hpp,
  .criteria.children,
  .life-expectancy,
  .quality-of-live,
  .living-hpp,
  .references,
  .fatores,
  .faq,
  .formulario {
    padding: 40px 0;
  }

  .yellow-box2 {
    max-width: calc(100% - 20px);
    padding: 40px 32px;
    border-radius: 16px;
  }

  .yellow-box2 .first-box {
    padding-right: 0;
  }

  .yellow-box2 .first-box h3 {
    width: calc(100% - 65px - 22px);
  }

  .yellow-box2 .first-box:before {
    width: 48px;
    height: 48px;
    right: 32px;
  }

  .types-hpp {
    padding-bottom: 40px;
  }

  .box-icon {
    width: 81px;
    height: 81px;
    border-radius: 16px;
    top: -30px;
    left: 32px;
  }

  .box-icon .img-fluid {
    height: 45px;
    width: auto;
  }

  .white-box {
    padding: 64px 32px 40px;
    width: 100%;
  }

  .adult_b{
    top: -30px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .criteria.criteria.children img.img-fluid,
  .criteria.criteria.adult img.img-fluid {
    max-width: 180px;
    margin: 10px auto;
    bottom: initial;
    display: block;
    top: initial;
    left: -20px;
  }

  .criteria.adult {
    padding: 40px 0 165px;
  }

  .blue-box .container {
    max-width: calc(100% - 20px);
    padding: 40px 32px;
    margin-top: -120px;
    border-radius: 16px;
  }

  .gray-box.container {
    max-width: calc(100% - 20px);
    padding: 40px 32px;
    border-radius: 16px;
  }

  .quality-of-live .box .img {
    width: 81px;
    height: 93px !important;
  }

  .quality-of-live .box .text {
    padding-top: 0;
  }

  .quality-of-live .box {
    align-items: center;
  }

  .references hr {
    margin-bottom: 40px;
  }

  .bordered-line li {
    padding-left: 25px;
  }

  .bordered-line:before {
    left: 6px;
  }

  .bordered-line li:before {
    width: 14px;
    height: 14px;
    top: 3px;
  }
}