* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  color: #031135;
  box-sizing: border-box;
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  line-height: 1.4;
}
body {
  background-color: #fff;
}
img {
  border-style: none;
}
.container {
  position: relative;
  align-items: center;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
}
@media (min-width: 480px) {
  .container {
    width: calc(100% - 2rem);
    max-width: 74rem;
  }
}
p {
  margin: 0.5em 0 1em;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  text-transform: uppercase;
  line-height: 1.1;
}
a {
  color: #0094ef;
  font-weight: 500;
  text-decoration: none;
}
a:hover {
  color: #12b5f7;
  text-decoration: underline;
}
.only-desktop {
  display: none !important;
}
.only-mobile {
  display: none !important;
}
@media (max-width: 735px) {
  .only-mobile {
    display: flex !important;
  }
}
@media (min-width: 736px) {
  .only-desktop {
    display: flex !important;
  }
}
.btn-flat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  height: 2.5em;
  text-transform: uppercase;
  padding: 0 0.8em;
  border-radius: 0.35em;
  transition: all 0.2s ease-in-out;
  font-family: inherit;
  flex-shrink: 0;
  font-weight: 500;
  background-color: #031135;
  color: #fff;
  box-shadow: 0 4px 13px -5px rgba(0, 0, 0, 0.54);
  text-decoration: none;
}
.btn-flat:hover {
  background-color: #02305a;
  box-shadow: 0 0.3em 1em -0.2em rgba(0, 0, 0, 0.7);
  color: #fff;
  text-decoration: none;
}
.btn-flat.inverted {
  background-color: rgba(255, 255, 255, 0.95);
  color: #031135;
}
.btn-flat.inverted:hover {
  color: #0168b1;
  text-decoration: none;
}
.btn-outlined {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: none;
  cursor: pointer;
  height: 2.5em;
  text-transform: uppercase;
  padding: 0 0.8em;
  border-radius: 0.35em;
  transition: all 0.2s ease-in-out;
  flex-shrink: 0;
  font-weight: 500;
  color: #031135;
  text-decoration: none;
  border: 2px solid #031135;
}
.btn-outlined:hover {
  color: #023d73;
  border-color: #023d73;
  background-color: rgba(0, 0, 0, 0.05);
  text-decoration: none;
}
.btn-outlined.inverted {
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: #fff;
}
.btn-outlined.inverted:hover {
  border-color: #fff;
}
.btn-highlight {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  height: 2.5em;
  text-transform: uppercase;
  padding: 0 0.8em;
  border-radius: 0.35em;
  transition: all 0.2s ease-in-out;
  flex-shrink: 0;
  font-weight: 500;
  text-decoration: none;
  background-color: #031135;
  color: #fff;
  box-shadow: 0 4px 13px -5px rgba(0, 0, 0, 0.54);
  background-image: linear-gradient(to right top, #EC1C24, #031135);
  letter-spacing: 0.02em;
  box-shadow: 0 0.3em 1em -0.3em rgba(0, 0, 0, 0.55), inset 0 0.01em 0.1em 0.05em rgba(255, 255, 255, 0.4);
  position: relative;
  background-size: 100% 100%;
}
.btn-highlight:hover {
  background-size: 300% 300%;
  box-shadow: 0 0.4em 1.2em -0.2em rgba(0, 0, 0, 0.7), inset 0 0.01em 0.1em 0.05em rgba(255, 192, 203, 0.8);
  text-decoration: none;
  color: #fff;
}
.btn-success {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  height: 2.5em;
  text-transform: uppercase;
  padding: 0 0.8em;
  border-radius: 0.35em;
  transition: all 0.2s ease-in-out;
  flex-shrink: 0;
  font-weight: 500;
  text-decoration: none;
  background-color: #031135;
  color: #fff;
  box-shadow: 0 4px 13px -5px rgba(0, 0, 0, 0.54);
  background-image: linear-gradient(to right, rgb(6, 182, 212), rgb(16, 185, 129));
  letter-spacing: 0.02em;
  box-shadow: 0 0.3em 1em -0.3em rgba(0, 0, 0, 0.55), inset 0 0.01em 0.1em 0.05em rgba(255, 255, 255, 0.4);
  position: relative;
  background-size: 100% 100%;
}
.btn-success:hover {
  background-size: 300% 300%;
  box-shadow: 0 0.4em 1.2em -0.2em rgba(0, 0, 0, 0.7), inset 0 0.01em 0.1em 0.05em rgba(255, 192, 203, 0.8);
  text-decoration: none;
  color: #fff;
}
.row {
  display: flex;
  flex: 0 1 auto;
  flex-direction: row;
  flex-wrap: wrap;
}
.col-xs {
  flex-grow: 1;
  max-width: 100%;
}
.col-xs-6 {
  flex-basis: 50%;
  max-width: 50%;
}
.col-xs-12 {
  flex-grow: 1;
  flex-basis: 100%;
  max-width: 100%;
}
@media (min-width: 736px) and (max-width: 980px) {
  .col-md-6 {
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-md-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
}
@media (min-width: 980px) {
  .col-lg-3 {
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-lg-5 {
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-lg-6 {
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-lg-8 {
    flex-basis: 66.66666666%;
    max-width: 66.66666666%;
  }
  .col-lg {
    flex-basis: 0;
    max-width: 100%;
    flex: 0 0 auto;
    flex-grow: 1;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
}
@media (min-width: 1280px) {
  .col-xl-4 {
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
}
.center-xs {
  justify-content: center;
  text-align: center;
}
@media (max-width: 735px) {
  .center-xs a {
    width: 100%;
    font-size: 1.1em;
  }
}
.cresta-whatsapp-chat-box,
.cresta-whatsapp-chat-container {
  display: none;
}
.grecaptcha-badge {
  visibility: hidden;
}
.icn {
  height: 1.2em;
  width: 1.2em;
}
.arrow-down {
  width: 0;
  height: 0;
  border-left: 0.33em solid transparent;
  border-right: 0.33em solid transparent;
  border-top: 0.33em solid #031135;
}
.main-header {
  padding-right: .1rem;
  padding-left: .1rem;
  display: flex;
  z-index: 1000;
  position: absolute;
  height: 4.5em;
  width: 100%;
  top: 0;
  left: 0;
  align-items: center;
}
.main-header .container {
  display: flex;
  flex: 0 1 auto;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-wrap: nowrap;
}
.main-header .logo-ctn {
  display: flex;
  align-items: center;
}
.main-header .logo-ctn .menu-btn {
  display: inline-flex;
  margin-right: 0.2em;
  width: 2.5em;
  height: 2.5em;
  border-radius: 100%;
  padding: 0;
  background-color: transparent;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  border: none;
  font-size: 1.1em;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.main-header .logo-ctn .menu-btn:hover {
  background-color: rgba(0, 0, 0, 0.05);
  color: #031135;
}
.main-header .logo-ctn .menu-btn:hover .icn {
  opacity: 0.8;
}
.main-header .logo-ctn .menu-btn .icn {
  opacity: 0.3;
  transition: opacity 0.2s ease-in-out;
  height: 1.5em;
  width: 1.5em;
}
.main-header .logo-ctn .logo {
  width: 117px;
  height: 43px;
}
.main-header .links-ctn {
  display: none;
}
.links-ctn .dropdown,
.links-ctn .btn {
  display: none;
  position: relative;
}
.links-ctn .dropdown .dropdown-trigger,
.links-ctn .btn,
.cta-ctn .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: none;
  height: 2.5em;
  text-transform: uppercase;
  padding: 0 0.8em;
  font-family: inherit;
  font-size: 0.9em;
  flex-shrink: 0;
  font-weight: 700;
  color: #031135;
  text-decoration: none;
}
.dropdown .dropdown-trigger .arrow-down {
  margin-left: 0.3em;
}
.dropdown .dropdown-content {
  display: none;
}
.main-header .cta-ctn {
  display: flex;
}
.main-header .cta-ctn .dropdown .dropdown-content {
  right: 0;
}
.main-header .cta-ctn .btn-outlined.plantao {
  margin-right: 6px;
  /*color: #ec1b24;*/
}
@media (max-width: 320px) {
  .main-header .cta-ctn .btn-outlined.plantao {
    display: none;
  }
}
@media (max-width: 479px) {
  .main-header .container {
    padding-right: 8px;
  }
}
@media (max-width: 495px) {
  .main-header .cta-ctn .btn-flat,
  .main-header .cta-ctn .btn-outlined.plantao {
    font-size: .8em;
    padding: 0 0.4em;
    text-transform: none;
  }
}
@media (max-width: 979px) {
  .main-header .cta-ctn {
    flex-grow: 1;
    justify-content: flex-end;
  }
}
@media (max-width: 1100px) {
  .main-header .cta-ctn .login {
    display: none;
  }
}
.cta-ctn .btn {
  display: inline-flex;
}
@media (min-width: 736px) {
  .main-header {
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .links-ctn .dropdown .dropdown-trigger,
  .links-ctn .btn,
  .cta-ctn .btn {
    font-size: 1.1em;
  }
  .main-header .cta-ctn {
    display: flex;
  }
}
@media (max-width: 1250px) {
  .links-ctn .dropdown .dropdown-trigger,
  .links-ctn .btn,
  .cta-ctn .btn,
  .btn-outlined,
  .btn-orcamento {
    font-size: .9em;
  }
}
@media (min-width: 1100px) {
  .main-header {
    justify-content: space-between;
    align-items: center;
  }
  .main-header .links-ctn {
    display: flex;
    /*order: 1;*/
  }
  .main-header .logo-ctn .menu-btn {
    display: none;
  }
  .main-header .links-ctn .dropdown {
    display: block;
  }
  .main-header .cta-ctn .btn-outlined.plantao {
    display: none;
  }
}
@media (min-width: 1280px) {
  .main-header {
    justify-content: space-between;
    align-items: center;
  }
}
/* Buttons ********************************************************************/
.buttons-container{
  display: flex;
  padding-bottom: 1em;
}
/*@media (min-width: 1099px) {
  .buttons-container {
    display: none;
  }
}*/
.buttons-container a,
.buttons-container .dropdown-banner > .dropdown-trigger {
  flex-shrink: unset;
  height: auto;

  text-transform: none;
  display: flex;
  align-items: center;
  text-align: left;
  color: #031135;

  border-radius: 0.3em;
  padding: 0.3em 0.8em;
  transition: all .2s ease-in-out;
}
.buttons-container a svg,
.buttons-container .dropdown-banner > .dropdown-trigger svg {
  margin-right: 0.3em;
  width: 18px;
  height: 18px;
}

@media (max-width: 548px) {
  .buttons-container a,
  .buttons-container .dropdown-banner > .dropdown-trigger {
    padding: 0.3em 0.3em !important;
  }
  .buttons-container a svg,
  .buttons-container .dropdown-banner > .dropdown-trigger svg {
    display: none;
  }
}

@keyframes shake-animation {
 0% { transform:translate(0,0) }
1.78571% { transform:translate(5px,0) }
3.57143% { transform:translate(0,0) }
5.35714% { transform:translate(5px,0) }
7.14286% { transform:translate(0,0) }
8.92857% { transform:translate(5px,0) }
10.71429% { transform:translate(0,0) }
100% { transform:translate(0,0) }
}

.buttons-container a.bannerVerde,
.buttons-container .dropdown-banner > .dropdown-trigger.bannerVerde {
  background: #fff;
  background: linear-gradient(113deg, rgb(55 137 55) 0%, rgb(67 157 67) 100%);
  box-shadow: 0 4px 13px -5px rgba(0,0,0,0.54);
  border: 1px solid rgba(0,169,54,0.1);
  color: #fff;
  border-top: 4px solid #93b893;
  border-left: 4px solid #93b893;
  border-bottom: 4px solid #1d5e1d;
  border-right: 4px solid #1d5e1d;

  animation: shake-animation 2.72s ease infinite;
  transform-origin: 50% 50%;
}

.buttons-container a.bannerVemelho,
.buttons-container .dropdown-banner > .dropdown-trigger.bannerVemelho {
  background: #fff;
  /*background: linear-gradient(113deg, rgb(157 65 65) 0%, rgb(187 77 77) 100%);*/
  background: linear-gradient(113deg, rgb(203 21 30) 0%, rgb(240 76 79) 100%);
  box-shadow: 0 4px 13px -5px rgba(0,0,0,0.54);
  border: 1px solid rgba(236,28,36,0.1);
  color: #fff;
  border-top: 4px solid #cca5a5;
  border-left: 4px solid #cca5a5;
  border-bottom: 4px solid #702222;
  border-right: 4px solid #702222;

  animation: shake-animation 3.72s ease infinite;
  transform-origin: 50% 50%;
}

.buttons-container a.bannerAzul,
.buttons-container .dropdown-banner > .dropdown-trigger.bannerAzul {
  background: rgb(221,221,221);
  background-image: linear-gradient(to top,rgba(0,169,254,0.2) 0%, #fff 80%, rgb(187 77 77)100%);
  background: linear-gradient(113deg, rgb(93 146 170) 0%, rgb(111 174 202) 190%);
  box-shadow: 0 4px 13px -5px rgba(0,0,0,0.54);
  border: 1px solid rgba(0,169,254,0.1);
  color: #fff;
  border-top: 4px solid #b1c8d2;
  border-left: 4px solid #b1c8d2;
  border-bottom: 4px solid #477183;
  border-right: 4px solid #477183;

  animation: shake-animation 4.72s ease infinite;
  transform-origin: 50% 50%;
  cursor: pointer;
}

.buttons-container .dropdown.dropdown-banner {
  position: relative;
  flex-shrink: unset;
}
.buttons-container,
.buttons-container #bannerFixable {
  overflow: visible;
}
.buttons-container .dropdown-banner .dropdown-content {
  top: 100%;
  left: 0;
  z-index: 20;
  width: 19rem;
}
.buttons-container #bannerFixable.fixed .dropdown-banner .dropdown-content {
  z-index: 11;
}

.buttons-container a.bannerCartao,
.buttons-container .dropdown-banner > .dropdown-trigger.bannerCartao {
  background: rgb(221,221,221);
  background-image: linear-gradient(to right top, #f1c729, #431e00);
  box-shadow: 0 4px 13px -5px rgba(0,0,0,0.54);
  border: 1px solid rgba(236, 28, 36,0.1);
  color: #fff;
  border-top: 4px solid #e1dac3;
  border-left: 4px solid #e1dac3;
  border-bottom: 4px solid #5b4939;
  border-right: 4px solid #5b4939;

  animation: shake-animation 5.72s ease infinite;
  transform-origin: 50% 50%;
}

.buttons-container > span > a:hover {
  text-decoration: none;
  box-shadow: 0 0.3em 1em -0.2em rgba(0,0,0,0.7);
}
.buttons-container #bannerFixable {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 4px;
}

.buttons-container #bannerFixable.fixed {
  position: fixed;
  top: 51px;
  z-index: 10;
  font-size: 12px;
  box-shadow: none;
}

.buttons-container #bannerFixable.fixed .hide-on-fixed {
  display: none;
}

.buttons-container #bannerFixable.fixed a,
.buttons-container #bannerFixable.fixed .dropdown-banner > .dropdown-trigger {
  padding: 6px 6px;
  min-height: unset;
}

@media (max-width: 767px) {
  .buttons-container #bannerFixable.fixed {
    top: 43px;
  }
}

@media (max-width: 767px) {
  .buttons-container{
      flex-direction: column;
  }
  .buttons-container a,
  .buttons-container .dropdown.dropdown-banner {
      margin: 0.5em 0!important;
  }
}
/* Especifico da página *******************************************************/
.header-actions {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: start;
  align-items: center;
}
@media (max-width: 768px) {
  .header-actions {
    flex-direction: column;
    gap: 0.5rem;
  }
}
.valor-cartao-desconto {
  display: inline-block;
  background-image: linear-gradient(to right top, #431e00, #f1c729);
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  padding: 3px 5px;
  border-radius: 4px;
  filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.5));
}
.valor-cartao-desconto small {
  font-weight: normal;
}
/* Hero grid GLP-1 ************************************************************/
.glp1-hero-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
  grid-template-columns: repeat(4, 1fr);
  grid-template-areas:
    "bullets bullets pink    belly"
    "manDesk armsUp  beige   white";
}
.glp1-hero-grid > img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0.75rem;
  display: block;
}
.glp1-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}
.glp1-hero-content .list-container,
.glp1-hero-content .header-actions {
  margin: 0;
}

.glp1-hero-bullets { grid-area: bullets; }
.glp1-hero-pink    { grid-area: pink;    aspect-ratio: 326 / 288; align-self: start; }
.glp1-hero-belly   { grid-area: belly;   aspect-ratio: 326 / 250; align-self: start; }
.glp1-hero-manDesk { grid-area: manDesk; aspect-ratio: 326 / 291; align-self: end; }
.glp1-hero-armsUp  { grid-area: armsUp;  aspect-ratio: 326 / 291; align-self: end; }
.glp1-hero-beige   { grid-area: beige;   aspect-ratio: 326 / 250; align-self: end; }
.glp1-hero-white   { grid-area: white;   aspect-ratio: 326 / 288; align-self: end; }

@media (max-width: 979px) {
  .glp1-hero-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "bullets bullets"
      "pink    belly"
      "manDesk armsUp"
      "beige   white";
  }
  .glp1-hero-grid > img { align-self: stretch; }
}
@media (max-width: 735px) {
  .glp1-hero-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "bullets bullets"
      "pink    belly"
      "manDesk armsUp"
      "beige   white";
  }
}
/*Cartão **********************************************************************/
.cartao-container {
  padding-top: 3rem;
}
.cartao {
  /*background-image: linear-gradient(to right top, #ec1c24, #031135);*/
  background-image: linear-gradient(to right top, #f1c729, #431e00);
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 1px 7px -1px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}
.cartao::after {
  content: "";
  width: 20em;
  height: 20em;
  position: absolute;
  background-image: url(/wp-content/themes/telemedicinaMorsch/assets/images/watermark-morsch.svg);
  background-repeat: no-repeat;
  right: 2em;
  top: 0;
  background-size: 100% 100%;
  opacity: .6;
}
.cartao-header {
  background-color: #ffffff33;
  padding: 1.5rem;
  border-radius: 0.8rem;
  display: flex;
}
.cartao-header-content {
  flex: 1;
}
.cartao-header-content p {
  margin: 0;
  color: #fff;
}
.cartao-body {
  padding-top: 1.5rem;
}
.cartao-body h3 {
  color: #fff;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.cartao-numero {
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
  margin-top: 1.5rem;
}
.cartao-header-content p.cartao-header-title {
  font-weight: bold;
  color: rgb(101 223 136);
  font-size: 1.5rem;
  filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.5));
}
.header-stars-container {
  color: #fff;
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  justify-content: start;
  align-items: center;
  margin-top: 1rem;
}
.header-stars-container .flex {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  justify-content: start;
  align-items: center;
}
.header-stars-container .flex svg {
   color: #fff;
}
.header-stars {
  display: inline;
  position: relative;
  white-space: nowrap;
  margin-left: 1rem;
}
.header-stars svg {
  width: 20px;
  fill: rgb(251, 146, 60);
  stroke: rgb(169, 99, 42);
  stroke-width: 0.8px;
  filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.5));
}
.list-container {
  margin-top: 3rem;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: start;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .list-container {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }
}
.list-container .list-item {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
  font-weight: 500;
}

.list-container .list-item i {
  width: 1.5rem;
  height: 1.5rem;
  background-color: #269c72;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  padding: 0.2rem;
}
.list-container .list-item svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #fff;
}
.text-center {
  text-align: center;
}
.main-header .cta-ctn .btn-teste-gratis {
  display: none;
}
@media (min-width: 1280px) {
  .main-header .cta-ctn .btn-teste-gratis {
      display: inline-flex;
  }
}
.page-main {
  /*background-image: linear-gradient(to right,#e8fcfc,#fff);*/
  background-image: linear-gradient(to bottom, #94f1ff, #ccfeff, #fff);
  background-repeat: no-repeat;
  background-size: 100% 12em;
}
.page-title {
  /*background-image: linear-gradient(to right, #e8fcfc, #fff);*/
  background-image: linear-gradient(to right bottom, rgb(248, 250, 252), rgba(236, 254, 255, 0.3), rgba(236, 253, 245, 0.3));
  padding-top: 7em;
  padding-bottom: 3em;
  padding-right: 1rem;
  padding-left: 1rem;
}
.page-title .container {
  width: 100%;
  position: relative;
  z-index: 1;
}

.page-title .btn-flat {
  text-transform: none;
}

@media (max-width: 968px) {
  .page-title .container:before {
    /*opacity: .2;*/
    /*background-size: 300px;*/
    display: none;
  }
}
.page-title .headline-1 {
  font-size: 1.3rem;
  line-height: 1.2;
  color: #0094ef;
  font-weight: 700;
  text-transform: uppercase;
}
.page-title .headline-2 {
  font-size: 3rem;
  margin-top: 0.2em;
}
/* Para quem é ****************************************************************/
.para-quem-ctn {
  background-color: rgb(242, 242, 242);
  padding-top: 3.5em;
  padding-bottom: 3.5em;
  padding-right: 1rem;
  padding-left: 1rem;
}
.para-quem-ctn .headline-1 {
  text-align: center;
  text-transform: none;
  font-weight: 700;
  margin-bottom: 0.5em;
  font-size: 2.7rem;
}
.para-quem-item {
  margin: 1em;
  border: 1px solid #ddd;
  border-radius: 0.4em;
  padding: 20px;
  transition-duration: .3s;
  border: 2px solid #ddd;
}
.para-quem-item.antes {
  background-color: #fff;
}
.para-quem-item.depois {
  background-image: linear-gradient(to right, rgb(236, 254, 255), rgb(236, 253, 245));
  border-color: #059669;
}
.para-quem-item:hover {
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / .1), 0 8px 10px -6px rgb(0 0 0 / .1);
}
.para-quem-item h3 {
  position: relative;
  font-size: 1.2em;
  line-height: 1.4em;
  font-weight: 700;
  margin-bottom: 0.5em;
  text-transform: none;
  margin-bottom: 0.4em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 2rem;
  padding-right: 1rem;
  border-radius: 0.6em;
}
.para-quem-item.antes h3 {
  background-color: #fef2f3;
  color: #dc2626;
}
.para-quem-item.depois h3 {
  background-color: rgb(209, 250, 229);
  color: #059669;
}
.para-quem-item h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-size: 16px 16px;
  background-position: center;
  background-repeat: no-repeat;
  display: inline-block;
  flex-shrink: 0;
}
.para-quem-item.antes h3::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23dc2626' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 6L6 18M6 6l12 12'%3E%3C/path%3E%3C/svg%3E");
}
.para-quem-item.depois h3::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23059669' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'%3E%3C/path%3E%3C/svg%3E");
}
.para-quem-item ul {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
  margin-top: 2em;
  margin-bottom: 2em;
}
.para-quem-item ul li,
.para-quem-item p {
  font-size: 1em;
  line-height: 1.2em;
  color: #666;
  position: relative;
}
.para-quem-item li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1em;
}

.para-quem-item ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-size: 16px 16px;
  background-position: center;
  background-repeat: no-repeat;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}
.para-quem-item.antes ul li::before {
  background-color: #fef2f3;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23dc2626' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 6L6 18M6 6l12 12'%3E%3C/path%3E%3C/svg%3E");
}
.para-quem-item.depois ul li::before {
  background-color: rgb(209, 250, 229);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23059669' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'%3E%3C/path%3E%3C/svg%3E");
}
/* Como funciona*********************************************************************/
.como-funciona-ctn {
  padding-top: 3.5em;
  padding-bottom: 3.5em;
  padding-right: 1rem;
  padding-left: 1rem;
  /*background-image: linear-gradient(to right bottom, rgb(248, 250, 252), rgba(236, 254, 255, 0.3));*/
  /*background-image: linear-gradient(to right, #e8fcfc, #fff);*/
}
.como-funciona-ctn .headline-1 {
  text-align: center;
  text-transform: none;
  font-weight: 700;
  margin-bottom: 2.5em;
  font-size: 2.7rem;
}
/*.como-funciona-ctn .container > p {
  text-align: center;
  font-size: 1.2em;
  margin-bottom: 3.5em;
}*/
/*Linha por baixo dos itens*/
.como-funciona-ctn .row {
  position: relative;
}
.line {
  width: 90%;
  margin: 0 auto;
  height: 2px;
  background-color: #a5f3fc;
  margin-bottom: 1em;
  position: absolute;
  top: 225px;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media (max-width: 979px) {
  .line {
    display: none;
  }
}
.como-funciona-item {
  position: relative;
  margin: 1em;
  border: 2px solid #ddd;
  border-radius: 0.4em;
  padding: 20px;
  transition-duration: .3s;
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / .1), 0 8px 10px -6px rgb(0 0 0 / .1);
  z-index: 0;
  background-color: #fff;
}
.como-funciona-item:hover {
  border-color: rgb(165 243 252);
}
.como-funciona-item .step {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.2em;
  line-height: 1.4em;
  font-weight: 700;
  margin-bottom: 0.5em;
  text-transform: none;
  color: #fff;
  background-image: linear-gradient(to right, rgb(6, 182, 212), rgb(16, 185, 129));
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.como-funciona-item .avatar {
  width: 48px;
  height: 48px;
  padding: 8px;
  color: #fff;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition-duration: .3s;
  background-color: #ecfdf5;
}
.como-funciona-item .avatar svg {
  color: rgb(8 145 178);
  width: 100%;
  height: 100%;
}
.como-funciona-item h3 {
  font-size: 1.2em;
  line-height: 1.4em;
  font-weight: 700;
  margin-bottom: 0.5em;
  text-transform: none;
  margin-top: 1em;
  margin-bottom: 0.2em;
}
.como-funciona-item p {
  font-size: 1em;
  line-height: 1.2em;
  min-height: 4.8em;
  text-align: left;
  color: #666;
}
.como-funciona-item p:last-of-type {
  margin-bottom: 0;
}
.como-funciona-banner {
  margin: 0 auto;
  text-align: center;
  margin-top: 2em;
}
.como-funciona-banner p {
  display: inline-block;
  font-size: 1em;
  line-height: 1.2em;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / .1), 0 2px 4px -2px rgb(0 0 0 / .1);
  padding: 0.8em;
  border-radius: 1.6em;
  background-color: #fff;
  border: 1.6px solid rgb(241, 245, 249);
}
/* Por que *********************************************************************/
.como-funciona-glp1-ctn {
  padding-top: 3.5em;
  padding-bottom: 3.5em;
  padding-right: 1rem;
  padding-left: 1rem;
  background-image: linear-gradient(to right, #e8fcfc, #fff);
}
.como-funciona-glp1-ctn .headline-1 {
  text-align: center;
  text-transform: none;
  font-weight: 700;
  margin-bottom: 0.5em;
  font-size: 2.7rem;
}
.como-funciona-glp1-ctn .container > p {
  text-align: center;
  font-size: 1.2em;
  margin-bottom: 2.5em;
}

.como-funciona-glp1-ctn .steps-ctn {
  -webkit-margin-before: 0;
  -webkit-margin-after: 0;
  -webkit-margin-start: 0;
  -webkit-margin-end: 0;
  -webkit-padding-start: 0;
  list-style: none;
}
.como-funciona-glp1-ctn .steps-ctn > li {
  margin-left: calc(1em + 1px);
  padding-left: 2em;
  padding-bottom: 2em;
  position: relative;
}
.como-funciona-glp1-ctn .steps-ctn > li .numeral {
  position: absolute;
  text-align: center;
  left: calc(-0.75em - 1px);
  top: 0;
  background-color: #031135;
  font-weight: 500;
  font-size: 1.5em;
  border-radius: 100%;
  width: 1.5em;
  height: 1.5em;
  color: #fff;
}
.como-funciona-glp1-ctn .steps-ctn >li:not(:last-child) {
  border-left: 2px dotted #031135;
}
.como-funciona-glp1-ctn .steps-ctn > li ul {
  margin-left: 2em;
  margin-top: 1em;
  margin-bottom: 1em;
}
.como-funciona-glp1-ctn-actions {
  text-align: center;
  margin-top: 2em;
}
/* Avaliações *****************************************************************/
.avaliacoes-ctn {
  background-color: rgb(242, 242, 242);
  padding-top: 3.5em;
  padding-bottom: 4em;
  padding-right: 1rem;
  padding-left: 1rem;
}
.avaliacoes-ctn .headline-1 {
  text-align: center;
  text-transform: none;
  font-weight: 700;
  margin-bottom: 1em;
  font-size: 2.7rem;
}
/* Lista de avaliações */
.avaliacoes-lista {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5em;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .avaliacoes-lista {
    grid-template-columns: 1fr;
  }
}
.avaliacao {
  position: relative;
  background-color: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 1.25em;
  padding-left: 4em;
}
.avaliacao .avatar {
  position: absolute;
  left: 1em;
  top: 1.25em;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  border: 2px solid #007bff;
  background-color: #e9ecef;
  color: #007bff;
  font-weight: bold;
  font-size: 1.1em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}
.avaliacao .avaliacao-content {
  min-height: 80px;
}
.avaliacao p {
  margin: 0;
  text-align: left;
}
.avaliacao p.medico {
  font-size: 0.9em;
  color: #007bff;
  margin-bottom: 0.1em;
}
.avaliacao p.paciente {
  font-size: 1.1em;
  font-weight: 800;
  color: #333;
  margin-bottom: 0.25em;
}
.avaliacao p.avaliacao-rating {
  display: flex;
  align-items: center;
  gap: 0.5em;
  margin-bottom: 0.5em;
}
.avaliacao .stars-rating {
  display: inline-flex;
}
.avaliacao .stars-rating .star {
  color: #ddd;
  font-size: 1em;
}
.avaliacao .stars-rating .star.full {
  color: rgb(251, 146, 60);
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
}
.avaliacao .local {
  color: #666;
  font-size: 0.85em;
}
.avaliacao p.descricao {
  color: #555;
  font-size: 0.95em;
  line-height: 1.5;
}
/* Botão Mostrar mais */
.avaliacoes-footer {
  text-align: center;
  margin-top: 2em;
}
.btn-carregar-mais {
  height: 3em;
  text-transform: none;
  font-size: 16px;
}
/* Apresentacao ***************************************************************/
.apresentacao-ctn {
  background-image: linear-gradient(to right top, #ec1c24, #031135);
  text-align: center;
  padding-top: 3.5em;
  padding-bottom: 3.5em;
  padding-right: 1rem;
  padding-left: 1rem;
}
.apresentacao-ctn .headline-1 {
  color: #f47c79;
  margin: 0.2em 0 0.8em;
  font-size: 1.5em;
  line-height: 1.2;
  font-weight: 500;
}
.apresentacao-ctn .headline-2 {
  color: #fff;

  font-size: 2em;
  line-height: 1.1;
  font-weight: 700;
}
.apresentacao-ctn a {
  text-transform: none;
}
@media (max-width: 700px) {
  .apresentacao-ctn a {
    margin-bottom: 1em;
  }
}
/* FAQ ************************************************************************/
.faq-ctn {
  padding-top: 3.5em;
  padding-bottom: 3em;
  padding-right: 1rem;
  padding-left: 1rem;
}
.faq-ctn .headline-1 {
  text-align: center;
  text-transform: none;
  font-weight: 700;
  margin-bottom: 2em;
  font-size: 2.7rem;
}
.faq-ctn h3 {
  color: #023D73;
  text-transform: none;
  font-size: 21px;
}
.faq-ctn p {
  padding-left: 24px;
}
.faq-ctn ul {
  margin-left: 4em;
  margin-top: 1em;
  margin-bottom: 1em;
}
/* Último CTA *****************************************************************/
.last-cta-ctn {
  background-image: linear-gradient(to right, rgb(8, 145, 178), rgb(5, 150, 105));
  padding-top: 3.5em;
  padding-bottom: 3.5em;
  padding-right: 1rem;
  padding-left: 1rem;
}
.last-cta-ctn .headline-1 {
  text-align: center;
  text-transform: none;
  font-weight: 700;
  font-size: 2.7rem;
  color: #fff;
}
.last-cta-ctn .headline-2 {
  text-align: center;
  text-transform: none;
  font-weight: normal;
  margin-bottom: 2em;
  font-size: 1.4em;
  color: #fff;
}
/*.last-cta-items {
  text-align: center;
  max-width: 100%;
  margin: 0 auto;
}
@media (min-width: 736px) {
  .last-cta-items {
    max-width: calc(100% - 4em);
  }
}
.last-cta-items .banner-item {
  display: inline-flex;
  align-items: center;
  margin: 0 1em;
  vertical-align: middle;
}
@media (max-width: 735px) {
  .last-cta-items .banner-item {
    display: block;
    margin: 0.5em 0;
    text-align: left;
  }
}
.last-cta-ctn .banner-item {
  position: relative;
  font-size: 1.2em;
  color: #fff;
  padding-left: 2rem;
}
.last-cta-ctn .banner-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'%3E%3C/path%3E%3C/svg%3E");
  background-size: 16px 16px;
  background-position: center;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}*/
.actions {
  text-align: center;
  padding-top: 3em;
  padding-bottom: 1.5em;
}
.actions a {
  padding: 1.8em 2em;
  text-transform: none;
  font-weight: 700;
  font-size: 1.4em;
}
/*.last-cta-ctn p {
  text-align: center;
  color: #fff;
}*/
.last-cta-ctn .btn-success {
  margin: 0 auto;
}
/*Footer **********************************************************************/
footer {
  margin-top: 0 !important;
}
/* Artigos relacionados *******************************************************/
/*.related-posts {
  background-color: #f2f2f2;
  padding-top: 2.5em;
  padding-bottom: 0.5em;
  padding-right: 1rem;
  padding-left: 1rem;
  margin-bottom: 5.5em;
}
.related-posts h2 {
  font-size: 1.4em;
  margin-bottom: 2em;
  text-transform: none;
  text-align: center;
}
.related-posts .related-post-card {
  position: relative;
  padding-left: 7em;
  padding-right: 2em;
  min-height: 5em;
  margin-bottom: 1.5em;
  color: #0094ef;
  font-size: 0.9em;
}
.related-posts .related-post-card .related-post-img {
  width: 6em;
  height: 4em;
  object-fit: cover;
  position: absolute;
  left: 0;
  border-radius: 0.2em;
}
@media (min-width: 736px) {
  .related-posts .related-post-card {
    font-size: 1.1em;
  }
}
@media (min-width: 980px) {
  .related-posts .related-post-card {
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
}*/
/** Header  ------------------------------------------------------------------*/
.page-title h1,
.page-title h2 {
  text-transform: none !important;
}

@media (max-width: 968px) {
  h1 {
    font-size: 2em;
  }

  .banner-container {
    display: flex;
    flex-wrap: wrap;
  }
}
/******************************************************************************/

footer {
  margin-top: 4em;
}
