/* ================= NAVBAR PERSONALIZADA ================= */

  .navbar-fixed-top.opaque {
      border-bottom: none !important;
      /* Remove a borda */
      box-shadow: none !important;
      /* Remove a sombra */
  }

  /* ===== Scrollbar personalizada refinada ===== */
  ::-webkit-scrollbar {
      width: 11px;
  }

  ::-webkit-scrollbar-track {
      background: transparent;
  }

  ::-webkit-scrollbar-thumb {
      background-color: #6FC0A4;
      border-radius: 8px;
      border: 1px solid #BCA6E5;
      box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
      transition: background-color 0.3s ease;
  }

  ::-webkit-scrollbar-thumb:hover {
      background-color: #57b396;
  }

  /* Whatsapp */
  .div_fixer {
      position: fixed;
      bottom: 20px;
      right: 20px;
      /* ← aqui está o segredo */
      z-index: 5000;
      animation: pulse 2s infinite;
  }

  .div_fixer img {
      width: 54px;
      height: auto;
  }

  @keyframes pulse {
      0% {
          transform: scale(1);
          opacity: 1;
      }

      50% {
          transform: scale(1.1);
          opacity: 0.85;
      }

      100% {
          transform: scale(1);
          opacity: 1;
      }
  }


  /* Resultados */
  .section-results {
      padding: 70px 0;
  }

  .section-results .carousel-inner .item img {
      margin: 0 auto;
      max-height: 450px;
      border-radius: 15px;
      box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.15);
  }

  .carousel-control.left,
  .carousel-control.right {
      background-image: none;
      color: #6FC0A4;
  }

  .carousel-indicators li {
      background-color: #BCA6E5;
  }

  .carousel-indicators .active {
      background-color: #6FC0A4;
  }

  /* Location */
  .map-container {
      overflow: hidden;
      padding-bottom: 90%;
      position: relative;
      height: 0;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      margin-top: 30px;
  }

  .map-container iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
  }
  /* Marca (logo) */

  .navbar-brand {
      font-family: 'Cabin', sans-serif;
      font-size: 28px;
      font-weight: 700;
      color: #6FC0A4 !important;
      /* Verde logo */
  }

  /* Logo responsiva */
  .logo-img {
      height: 65px;
    width: auto;
      margin-top: -23px;
  }

  /* Barra de navegação (transparente) */
  .navbar-fixed-top {
      position: absolute !important;
      background-color: transparent !important;
      border-bottom: none;
      transition: 0.6s ease 0s;
      padding-top: 20px;
      padding-bottom: 20px;
  }


  /* Barra de navegação (scroll ativo) */
  .navbar-fixed-top.opaque {
      position: fixed !important;
      background-color: #fff !important;
      padding: 20px 0;
      transition: all 0.25s ease-in-out 0s;
  }

  /* Estilo dos links do menu */
  .navbar-fixed-top .navbar-nav>li>a {
      color: #6FC0A4 !important;
      /* Verde da logo */
      font-size: 14px !important;
      line-height: 30px !important;
      text-transform: uppercase;
      padding: 10px 20px !important;
      font-family: 'Cabin', sans-serif;
      font-weight: 700;
      transition: color 0.3s ease-in-out;
  }

  /* Hover nos links */
  .navbar-fixed-top .navbar-nav>li>a:hover {
      color: #BCA6E5 !important;
      /* Lilás da logo (uva) */
  }

  /* Links quando navbar está scrollada (modo .opaque) */
  .navbar-fixed-top.opaque .navbar-nav>li>a {
      color: #6FC0A4 !important;
  }

  .navbar-fixed-top.opaque .navbar-nav>li>a:hover {
      color: #BCA6E5 !important;
  }

  /* Estilo do item atual (ativa) */
  .navbar-fixed-top #navbar-collapse-02 .current a {
      color: #BCA6E5 !important;
      transition: all 0.5s ease;
  }

  /* Botão especial do menu (caso exista) */
  .navbar-fixed-top .navbar-nav>li>a.discover-btn {
      background: transparent;
      border: 1px solid #6FC0A4;
      border-radius: 8px;
      padding: 8px 24px !important;
      margin-left: 10px;
      margin-right: 15px;
      color: #6FC0A4 !important;
  }

  .navbar-fixed-top .navbar-nav>li>a.discover-btn:hover {
      background: #6FC0A4;
      color: #fff !important;
      border: 1px solid #6FC0A4;
  }

  /* Quando scrolla, botão também muda */
  .navbar-fixed-top.opaque .navbar-nav>li>a.discover-btn {
      background: #6FC0A4;
      color: #fff !important;
      border: 1px solid #6FC0A4;
  }

  .navbar-fixed-top.opaque .navbar-nav>li>a.discover-btn:hover {
      background: #BCA6E5;
      color: #fff !important;
      border: 1px solid #BCA6E5;
  }

  h2.section-title {
      color: #6FC0A4;
      margin-bottom: 15px;
      font-weight: bold;
  }

  h2.section-title.grey {
      color: #ddd;
  }

  h2.section-title.white {
      color: #ffffff;
  }

  p.section-subtitle {
      font-size: 18px;
  }

  p.section-subtitle.grey {
      color: #bbb;
  }

  p.section-subtitle.white {
      color: #ffffff;
  }

  h3.medium-title {
      font-size: 32px;
      margin-top: 10px;
  }

  ul {
      padding: 0;
  }

  ul li {
      list-style-type: none;
  }

  a:hover, a:focus, a:active, a:visited {
      text-decoration: none;
  }

  iframe {
      max-width: 100%;
      border: none;
  }

  .white-text {
      color: #fff;
  }

  .blue {
      color: #3498db;
  }

  .lyla {
      color: #6B02FF;
  }

  .section-white {
      background: #fff;
      padding: 90px 0 100px 0;
  }

  .section-grey {
      background: #f7f8fa;
      padding: 40px 0 40px 0;
  }

  .section-white.no-padding, .section-grey.no-padding {
      padding: 0;
  }

  .section-white.small-paddings, .section-grey.small-paddings {
      padding: 30px 0;
  }

  .section-white.small-padding-top, .section-grey.small-padding-top {
      padding: 30px 0 90px 0;
  }

  .section-white.small-padding-bottom, .section-grey.small-padding-bottom {
      padding: 90px 0 70px 0;
  }

  .section-white.no-padding-bottom, .section-grey.no-padding-bottom {
      padding: 90px 0 0 0;
  }

  .top-shape-wrapper {
      overflow: hidden;
      padding-top: 70px;
  }

  .top-shape {
      position: relative;
      display: block;
      padding: 90px 0;
  }

  .top-shape:before {
      -webkit-transform: rotate(-172deg);
      background-color: #f7f7fa;
      border-radius: 750px;
      content: "";
      height: 1250px;
      left: -250px;
      position: absolute;
      top: 0;
      transform: rotate(-186deg);
      width: 2050px;
  }

  .bottom-shape {
      position: relative;
      z-index: 999;
      overflow: hidden;
  }

  .bottom-shape:after {
      -webkit-transform: rotate(-172deg);
      background-color: #f7f7fa;
      border-radius: 750px;
      content: "";
      height: 1250px;
      left: -400px;
      position: absolute;
      top: -370px;
      transform: rotate(-170deg);
      width: 2250px;
      z-index: -100;
  }

  .section-lyla {
      background: #7566e3;
      background: -webkit-linear-gradient(left top, #7566e3, #ce4d86);
      background: -o-linear-gradient(bottom right, #7566e3, #ce4d86);
      background: -moz-linear-gradient(bottom right, #7566e3, #ce4d86);
      background: linear-gradient(to bottom right, #7566e3, #ce4d86);
      padding: 90px 0 70px 0;
  }

  .section-dark {
      background-color: #272834;
      padding: 90px 0;
  }

  .width-100 {
      width: 100%;
  }

  /* margin and padding classes */

  .margin-right-25 {
      margin-right: 25px !important;
  }

  .margin-top-110 {
      margin-top: 110px !important;
  }

  .margin-top-100 {
      margin-top: 100px !important;
  }

  .margin-top-90 {
      margin-top: 90px !important;
  }

  .margin-top-80 {
      margin-top: 80px !important;
  }

  .margin-top-60 {
      margin-top: 60px !important;
  }

  .margin-top-50 {
      margin-top: 50px !important;
  }

  .margin-top-40 {
      margin-top: 40px !important;
  }

  .margin-top-35 {
      margin-top: 35px !important;
  }

  .margin-top-30 {
      margin-top: 30px !important;
  }

  .margin-top-20 {
      margin-top: 20px !important;
  }

  .margin-top-10 {
      margin-top: 10px !important;
  }

  .margin-top-5 {
      margin-top: 5px !important;
  }

  .margin-bottom-0 {
      margin-bottom: 0px !important;
  }

  .margin-bottom-10 {
      margin-bottom: 10px !important;
  }

  .margin-bottom-20 {
      margin-bottom: 20px !important;
  }

  .margin-bottom-30 {
      margin-bottom: 30px !important;
  }

  .margin-bottom-40 {
      margin-bottom: 40px !important;
  }

  .margin-bottom-50 {
      margin-bottom: 50px !important;
  }

  .margin-bottom-60 {
      margin-bottom: 60px !important;
  }

  .margin-bottom-70 {
      margin-bottom: 70px !important;
  }

  .margin-bottom-80 {
      margin-bottom: 80px !important;
  }

  .margin-bottom-100 {
      margin-bottom: 100px !important;
  }

  .margin-bottom-120 {
      margin-bottom: 120px !important;
  }

  .margin-bottom-130 {
      margin-bottom: 120px !important;
  }

  .margin-bottom-140 {
      margin-bottom: 140px !important;
  }

  .padding-top-0 {
      padding-top: 0px !important;
  }

  .padding-top-10 {
      padding-top: 10px !important;
  }

  .padding-top-20 {
      padding-top: 20px !important;
  }

  .padding-top-25 {
      padding-top: 25px !important;
  }

  .padding-top-30 {
      padding-top: 30px !important;
  }

  .padding-top-40 {
      padding-top: 40px !important;
  }

  .padding-top-45 {
      padding-top: 45px !important;
  }

  .padding-top-50 {
      padding-top: 50px !important;
  }

  .padding-top-60 {
      padding-top: 60px !important;
  }

  .padding-top-70 {
      padding-top: 70px !important;
  }

  .padding-top-80 {
      padding-top: 80px !important;
  }

  .padding-top-100 {
      padding-top: 100px !important;
  }

  .padding-top-120 {
      padding-top: 120px !important;
  }

  .padding-bottom-70 {
      padding-bottom: 70px !important;
  }

  .padding-bottom-60 {
      padding-bottom: 60px !important;
  }

  .padding-bottom-50 {
      padding-bottom: 50px !important;
  }

  .padding-bottom-40 {
      padding-bottom: 40px !important;
  }

  .padding-bottom-30 {
      padding-bottom: 30px !important;
  }

  .padding-bottom-20 {
      padding-bottom: 20px !important;
  }

  .padding-bottom-10 {
      padding-bottom: 10px !important;
  }

  .padding-bottom-0 {
      padding-bottom: 0px !important;
  }

  .margin-top-0 {
      margin-top: 0px !important;
  }

  .z-a1 {
      z-index: -1;
  }

  .z-1 {
      z-index: 1;
  }

  .z-10 {
      z-index: 10;
  }

  .z-100 {
      z-index: 100;
  }

  .z-999 {
      z-index: 999;
  }

  .z-9999 {
      z-index: 9999;
  }

  /* ========================================================== */
  /* 			               02. MENU-NAV                       */
  /* ========================================================== */

  .navbar-brand {
      font-family: 'Cabin', sans-serif;
      font-size: 28px;
      font-weight: 700;
      color: #fff !important;
  }

  .navbar-fixed-top.opaque .navbar-brand {
      font-family: 'Cabin', sans-serif;
      font-size: 28px;
      font-weight: 700;
      color: #353535 !important;
  }

  .navbar-fixed-top #navbar-collapse-02 .current a {
      color: #008aff;
      -webkit-transition: all 0.5s ease;
      -moz-transition: all 0.5s ease;
      -o-transition: all 0.5s ease;
      transition: all 0.5s ease;
  }

  .navbar-fixed-top.opaque #navbar-collapse-02 .current a {
      color: #BCA6E5 !important;
      -webkit-transition: all 0.5s ease;
      -moz-transition: all 0.5s ease;
      -o-transition: all 0.5s ease;
      transition: all 0.5s ease;
  }

  .navbar {
      padding-top: 20px;
      padding-bottom: 20px;
  }

  .navbar-fixed-top {
      position: fixed !important;
      background-color: #ffffff !important;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
      /* Sombra suave (opcional) */
      width: 100%;
      z-index: 9999;
  }

  .navbar-fixed-top.opaque {
      position: fixed !important;
      border-bottom: 1px solid #eee;
      background-color: #fff !important;
      padding: 20px 0;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08) !important;
      transition: all 0.25s ease-in-out 0s;
      z-index: 9999;
  }


  .navbar-fixed-top .navbar-nav>li>a, .navbar-fixed-top .navbar-nav>li>a:hover {
      -webkit-transition: all 0.5s ease;
      -moz-transition: all 0.5s ease;
      -o-transition: all 0.5s ease;
      transition: all 0.5s ease;
  }

  .navbar-fixed-top .navbar-nav>li>a {
      color: #73C6A2 !important;
      font-size: 14px !important;
      line-height: 30px !important;
      text-transform: uppercase;
      padding: 10px 20px !important;
      font-family: 'Cabin', sans-serif;
      font-weight: 700;
  }

  .navbar-nav>li>a:hover {
      color: #BCA6E5 !important;
  }

  .navbar-nav>li>a {
      transition: color 0.3s ease-in-out;
  }

  .navbar-fixed-top.opaque .navbar-nav>li>a {
      color: #73C6A2 !important;
  }

  .navbar-fixed-top .navbar-nav>li>a.discover-btn {
      background: transparent;
      border: 1px solid #fff;
      border-radius: 8px 8px;
      padding: 8px 24px !important;
      margin-left: 10px;
      margin-right: 15px;
      font-family: 'Cabin', sans-serif;
  }

  .navbar-fixed-top.opaque .navbar-nav>li>a.discover-btn {
      color: #fff !important;
      background: #88ad45;
      -webkit-transition: all 0.5s ease;
      -moz-transition: all 0.5s ease;
      -o-transition: all 0.5s ease;
      transition: all 0.5s ease;
  }

  .navbar-fixed-top .navbar-nav>li>a.discover-btn:hover {
      border: 1px solid #ffffff;
      color: #7566e3 !important;
      background: #ffffff;
  }

  .navbar-fixed-top.opaque .navbar-nav>li>a.discover-btn:hover {
      color: #fff !important;
      background: #71992e;
  }

  .navbar-fixed-top.opaque #navbar-collapse-02 .current a.discover-btn {
      color: #fff !important;
  }

  /* ========================================================== */
  /* 			                03. FOOTER                        */
  /* ========================================================== */

  .footer-section {
      background-color: #6FC0A4;
      color: #fff;
      padding: 22px 0 0;
      border-top: 2px solid #BCA6E5;
  }

  .footer-section h4 {
      color: #fff;
      margin-bottom: 20px;
      font-weight: bold;
  }

  .footer-box {
      margin-bottom: 30px;
  }

  .footer-contact i {
      margin-right: 10px;
      vertical-align: middle;
  }

  .footer-box p,
  .footer-box a {
      color: #f8f8f8;
  }

  .footer-box ul {
      padding-left: 0;
      list-style: none;
  }

  .footer-box ul li {
      margin-bottom: 10px;
  }

  .footer-box ul li a:hover {
      color: #BCA6E5;
      text-decoration: none;
      transition: 0.3s;
  }

  .social-icons a {
      display: inline-block;
      width: 35px;
      height: 35px;
      background-color: #BCA6E5;
      color: white;
      text-align: center;
      line-height: 35px;
      margin-right: 10px;
      border-radius: 5px;
      font-size: 16px;
  }

  .social-icons a:hover {
      background-color: #a78fe2;
      color: #fff;
      transition: 0.3s;
  }

  .footer-bottom {
      background-color: #BCA6E5;
      padding: 25px 15px;
      text-align: center;
      margin-top: 40px;
  }

  .footer-bottom .copyright {
      margin: 0;
      color: #fff;
      font-size: 14px;
  }


  /* location */

  .section-white {
      background: #fff;
      padding: 50px 0;
  }

  .section-title {
      font-size: 28px;
      color: #333;
      margin-bottom: 10px;
  }

  .section-subtitle {
      font-size: 16px;
      color: #777;
      margin-bottom: 30px;
  }

  .clinic-box {
      background: #f8f4fb;
      border: 2px solid #d9cbe8;
      border-radius: 10px;
      padding: 20px;
      margin-bottom: 30px;
      text-align: left;
      color: #5e5e5e;
      font-size: 15px;
      min-height: 460px;
  }

  .clinic-box i.fa {
      color: #bca6e5;
      margin-right: 8px;
  }

  .clinic-tag {
      display: inline-block;
      background: #e3d5f4;
      color: #744c9e;
      font-weight: bold;
      padding: 6px 12px;
      border-radius: 5px;
      margin-top: 10px;
      font-size: 13px;
  }

  .clinic-tag.particular {
      background: #e3d5f4;
  }

  .map-container iframe {
      border-radius: 10px;
      width: 100%;
  }



  /* ========================================================== */
  /* 			               04. HOME                           */
  /* ========================================================== */

  /* LOGO RESPONSIVA */
  /* Ajuste para a logo */
  .logo-img {
      height: 65px;
      /* ajuste proporcional ao tamanho dos botões */
      margin-top: -23px;
      /* sobe um pouco */
  }

  .home-section {
      padding: 150px 0 100px;
      width: 100%;
      position: relative;
  }


  .img-responsive {
      max-width: 300px;
  }

  .hex-container {
      width: 100%;
      max-width: 440px;
      aspect-ratio: 1;
      clip-path: polygon(25% 5%, 75% 5%, 100% 50%,
              75% 95%, 25% 95%, 0% 50%);
      background-color: #6FC0A4;
      /* borda verde */
      padding: 8px;
      /* espessura da borda */
      box-sizing: border-box;
      margin: 0 auto;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .hex-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
      clip-path: polygon(25% 5%, 75% 5%, 100% 50%,
              75% 95%, 25% 95%, 0% 50%);
  }

  .hex-container:hover {
      background-color: #BCA6E5;
      /* muda para o lilás ao passar o mouse */
      transform: scale(1.04);
      transition: 0.5s ease;
  }

  .home-section h5 {
      color: #7e7e7e;
      text-transform: uppercase;
      font-weight: 600;
  }

  .home-section p {
      font-size: 16px;
      color: #555;
      margin: 20px 0;
  }

  .sobre-section {
      padding: 100px 0;
      background-color: #fffdf7;
  }

  .about-img {
      max-width: 75%;
      /* ajuste conforme necessário */
      display: block;
      margin: 0 auto;
      border-radius: 14px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .about-icons {
      font-size: 18px;
      color: #6FC0A4;
      text-align: center;
      margin-top: -80px;
  }

  .about-icon-item {
      display: inline-block;
      margin: 8px 10px;
      color: #6FC0A4;
      font-size: 14px;
  }

  .about-icon-item i {
      font-weight: 700;
  }

  .sobre-text h2 {
      text-align: center;
      font-weight: bold;
      color: #6FC0A4;
      margin-bottom: 20px;
  }

  .sobre-text p {
      text-align: center;
      font-size: 16px;
      line-height: 1.7;
      color: #555;
  }

  @media (max-width: 767px) {
      .sobre-text {
          margin-top: 30px;
          text-align: center;
      }
  }

  @-webkit-keyframes Gradient {
      0% {
          background-position: 0% 50%
      }

      50% {
          background-position: 100% 50%
      }

      100% {
          background-position: 0% 50%
      }
  }

  @-moz-keyframes Gradient {
      0% {
          background-position: 0% 50%
      }

      50% {
          background-position: 100% 50%
      }

      100% {
          background-position: 0% 50%
      }
  }

  @keyframes Gradient {
      0% {
          background-position: 0% 50%
      }

      50% {
          background-position: 100% 50%
      }

      100% {
          background-position: 0% 50%
      }
  }

  .home-section h1 {
      font-size: 36px;
      font-weight: 800;
      color: #6FC0A4;
      line-height: 1.4;
      text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.05);
  }

  .home-section h1 span {
      color: #BCA6E5;
  }

  .home-section p {
      font-size: 18px;
      color: #333;
      line-height: 1.6;
      margin-bottom: 15px;
  }

  .btn-profissional {
      background-color: #BCA6E5;
      /* lilás */
      color: white;
      padding: 14px 30px;
      font-size: 18px;
      font-weight: 600;
      border: none;
      border-radius: 10px;
      box-shadow: 0 3px 8px rgba(188, 166, 229, 0.3);
      transition: all 0.3s ease;
      text-decoration: none;
      /* Remove sublinhado */
      outline: none;
      /* Remove contorno azul no clique */
  }

  .btn-profissional:hover,
  .btn-profissional:focus,
  .btn-profissional:active {
      background-color: #a48ccf;
      box-shadow: 0 5px 15px rgba(188, 166, 229, 0.45);
      transform: translateY(-2px);
      color: white;
      outline: none;
      text-decoration: none;
  }


  ul.home-benefits li {
      font-size: 20px;
      line-height: 30px;
      font-weight: 500;
      margin-bottom: 10px;
      letter-spacing: 1px;
      color: #fff;
      font-family: 'Cabin', sans-serif;
      text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.37);
  }

  ul.home-benefits li i {
      background-color: #fccd05;
      padding: 5px 5px;
      font-size: 16px;
      line-height: 16px;
      margin-right: 8px;
      color: #fff;
      border-radius: 50%;
  }

  p.home-yellow-cta-text {
      font-weight: 700;
      text-decoration: underline;
      letter-spacing: 1px;
      color: yellow;
  }

  span.arrow {
      display: block;
      position: absolute;
      bottom: 55px;
      right: 45px;
      bottom: -15px;
  }

  /* -----  iFrame ----- */
  .frame-border {
      margin-top: 30px;
      border: 9px solid rgba(255, 255, 255, 0.90);
      webkit-border-radius: 5px 5px 5px 5px;
      -moz-border-radius: 5px 5px 5px 5px;
      border-radius: 5px 5px 5px 5px;
  }

  /* -----  Register ----- */
  .register-form-wrapper {
      background-color: #fff;
      box-shadow: 0 6px 10px -1px rgba(0, 0, 0, 0.25);
      border-radius: 8px 8px;
      padding: 30px 45px 50px 45px;
      text-align: center;
  }

  input.register-input, select.register-input {
      width: 100% !important;
      height: 52px !important;
      padding-left: 4% !important;
      padding-right: 4% !important;
      margin-top: 4px !important;
      margin-bottom: 15px !important;
      color: #545454 !important;
      border: 1px solid #ededed !important;
      background-color: #f7f8f9 !important;
      font-size: 16px !important;
      border-radius: 5px 5px 5px 5px !important;
  }

  input.register-submit-top, input.register-submit {
      color: #fff;
      border: 1px solid orange;
      background-color: orange;
      cursor: pointer;
      display: inline-block;
      font-size: 14px;
      font-weight: 700;
      width: 100%;
      max-width: 535px;
      padding: 16px 0;
      text-transform: uppercase;
      text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.34);
      -webkit-border-radius: 3px 3px;
      -moz-border-radius: 3px 3px;
      border-radius: 3px 3px;
      transition: all .50s ease-in-out;
      -moz-transition: all .50s ease-in-out;
      -webkit-transition: all .50s ease-in-out;
  }

  input.register-submit-top {
      width: 100%;
      max-width: 540px;
  }

  input.register-submit:hover {
      color: #fff;
      background-color: transparent;
      border: 1px solid #fff;
      transition: all .50s ease-in-out;
      -moz-transition: all .50s ease-in-out;
      -webkit-transition: all .50s ease-in-out;
  }

  input.white-input::-webkit-input-placeholder,
  select.white-input::-webkit-input-placeholder {
      /* WebKit browsers */
      color: #757575 !important;
  }

  input.white-input:-moz-placeholder,
  select.white-input:-moz-placeholder {
      /* Mozilla Firefox 4 to 18 */
      color: #757575 !important;
  }

  input.white-input::-moz-placeholder,
  select.white-input::-moz-placeholder {
      /* Mozilla Firefox 19+ */
      color: #757575 !important;
  }

  input.white-input:-ms-input-placeholder,
  select.white-input:-ms-input-placeholder {
      /* Internet Explorer 10+ */
      color: #757575;
  }

  #register-form input.register-input:focus, #register-form select.register-input:focus {
      border-color: #757575 !important;
      outline: none;
  }

  p.register_success_box {
      display: inline-block;
      color: #454545;
      font-size: 16px;
      font-style: italic;
      margin: 20px 0 30px 0;
      padding: 20px 20px;
      border: 1px solid #fff;
      webkit-border-radius: 5px 5px 5px 5px;
      -moz-border-radius: 5px 5px 5px 5px;
      border-radius: 5px 5px 5px 5px;
  }

  /* ========================================================== */
  /* 			               06. TEAM                           */
  /* ========================================================== */

  .team-item {
      text-align: center;
      margin-top: 40px;
      padding: 0 20px;
      border-radius: 8px 8px;
      -webkit-transition: all 0.25s ease-in-out;
      -moz-transition: all 0.25s ease-in-out;
      -ms-transition: all 0.25s ease-in-out;
      -o-transition: all 0.25s ease-in-out;
      transition: all 0.25s ease-in-out;
  }

  .team-item h3 {
      margin: 20px 0 1px 0 !important;
      color: #454545;
      font-size: 18px;
      font-weight: 700;
      text-transform: uppercase;
      transition: all .25s ease-in-out;
      -moz-transition: all .25s ease-in-out;
      -webkit-transition: all .25s ease-in-out;
  }

  .team-info {
      display: block;
      margin-bottom: 0;
  }

  .team-info p {
      color: #acacac;
      font-style: italic;
  }

  .team-info::after {
      background: #ed4e38;
      display: inline-block;
      vertical-align: middle;
      content: "";
      width: 50px;
      height: 3px;
      margin-top: -20px;
  }

  .team-img {
      max-width: 140px;
      padding: 6px 6px;
      background-color: #dedede;
      -webkit-border-radius: 50%;
      -moz-border-radius: 50%;
      border-radius: 50%;
  }

  ul.team-icon {
      margin: 25px 0 0 0;
  }

  ul.team-icon li {
      display: inline-block;
      margin: 0 3px;
      -webkit-transition: all 0.25s ease-in-out;
      -moz-transition: all 0.25s ease-in-out;
      -ms-transition: all 0.25s ease-in-out;
      -o-transition: all 0.25s ease-in-out;
      transition: all 0.25s ease-in-out;
  }

  ul.team-icon li a {
      margin: 0;
      display: inline-block;
      padding: 8px 8px;
      width: 34px;
      height: 34px;
      font-size: 18px;
      line-height: 18px;
      background-color: #fff;
      border-radius: 50%;
      color: #fff;
  }

  ul.team-icon li a.twitter {
      background-color: #4099ff;
  }

  ul.team-icon li a.pinterest {
      background-color: #C92228;
  }

  ul.team-icon li a.facebook {
      background-color: #3b5998;
  }

  ul.team-icon li a.dribble {
      background-color: #ea4c89;
  }

  .team-icon li a:hover {
      color: #dedede;
      -webkit-transition: all 0.25s ease-in-out;
      -moz-transition: all 0.25s ease-in-out;
      -ms-transition: all 0.25s ease-in-out;
      -o-transition: all 0.25s ease-in-out;
      transition: all 0.25s ease-in-out;
  }

  /* ========================================================== */
  /* 						   06. PORTFOLIO                      */
  /* ========================================================== */

  .portfolio-item-wrapper {
      margin-top: 20px;
      margin-bottom: 20px;
      -webkit-border-radius: 5px 5px 5px 5px;
      -moz-border-radius: 5px 5px 5px 5px;
      border-radius: 5px 5px 5px 5px;
      box-shadow: rgba(33, 33, 33, .06) 0 4px 24px 5px;
  }

  .portfolio-box,
  .portfolio-box-grey {
      text-align: center;
      background-color: #fff;
      border-bottom: 3px solid #e0e0e0;
      padding: 1px 20px 12px 20px;
      -webkit-border-radius: 0 0 5px 5px;
      -moz-border-radius: 0 0 5px 5px;
      border-radius: 0 0 5px 5px;
  }


  .portfolio-box-grey {
      margin-bottom: 30px;
      background-color: #f6f7f8;
      border-bottom: 2px solid #e0e0e0;
  }

  .portfolio-box h3, .portfolio-box-grey h3 {
      margin: 10px 0 1px 0 !important;
      line-height: 20px;
  }

  .portfolio-box h3 a, .portfolio-box-grey h3 a {
      color: #454545;
      font-size: 18px;
      transition: all .25s ease-in-out;
      -moz-transition: all .25s ease-in-out;
      -webkit-transition: all .25s ease-in-out;
  }

  .portfolio-item-wrapper h3 a:hover {
      color: #3498db;
  }

  .portfolio-box p.portfolio-info {
      font-size: 15px;
      font-style: italic;
      margin-bottom: 5px;
  }

  .portfolio-item-wrapper img {
      -webkit-border-radius: 5px 5px 0 0;
      -moz-border-radius: 5px 5px 0 0;
      border-radius: 5px 5px 0 0;
  }

  /* ========================================================== */
  /* 			               07. SERVICES/FEATURES              */
  /* ========================================================== */

  .main-services {
      margin-top: 40px;
      padding: 50px 30px 30px 30px;
      background-color: #fff;
      box-shadow: rgba(33, 33, 33, .06) 0 4px 24px 5px;
      border-radius: 8px;
      text-align: center;
      transition: all 1s;
  }

  .main-services:hover {
      margin-top: 25px;
      transition: all 1s;
  }

  .main-services img {
      max-width: 230px;
      margin-bottom: 25px;
  }

  .main-services h3 {
      font-size: 22px;
      color: #292929;
      margin-bottom: 15px;
  }

  .main-services p {
      padding: 0 10px;
  }

  blockquote {
      font-size: 16px;
      color: #4285f4;
      border-left: 2px solid #4285f4;
  }

  a.btn-download {
      color: #ffffff;
      font-family: 'Cabin', sans-serif;
      font-size: 16px;
      background: #4285f4;
      border: 2px solid #4285f4;
      border-radius: 5px 5px;
      padding: 15px 25px;
      display: inline-block;
      margin-top: 30px;
      margin-bottom: 60px;
      transition: all 0.4s ease-in-out;
      -webkit-transition: all 0.4s ease-in-out;
  }

  a.btn-download i {
      font-size: 16px;
      margin-right: 10px;
  }

  a.btn-download:hover {
      color: #4285f4;
      background: transparent;
      border: 2px solid #4285f4;
  }

  ul.features-responsive {
      margin-bottom: 40px;
  }

  ul.features-responsive li {
      font-size: 15px;
      line-height: 20px;
      font-weight: 400;
      color: #8f8f8f;
      display: block;
      margin-bottom: 10px;
  }

  ul.features-responsive li i {
      font-size: 18px;
      vertical-align: bottom;
      color: #4285f4;
      margin-right: 10px;
  }

  /* Features */
  .feature-box {
      overflow: hidden;
      margin: 40px 0 0 0;
  }

  .feature-box i {
      float: left;
      width: 75px;
      height: 75px;
      font-size: 40px;
      line-height: 75px;
      /* mesmo valor da altura */
      text-align: center;
      color: #fff;
      border-radius: 20px;
      background: #6FC0A4;
  }




  .feature-box.light-blue i {
      background: #50a0d2;
  }

  .feature-box.dark-blue i {
      background: #3473b8;
  }

  .feature-box.light-green i {
      background: #a9d129;
  }

  .feature-box.dark-green i {
      background: #87ac34;
  }

  .feature-box.orange i {
      background: #fe9c24;
  }

  .feature-box.light-red i {
      background: #fc6a3f;
  }

  .feature-box.pink i {
      background: #ea4c89;
  }

  .feature-box-text {
      float: left;
      width: 70%;
      margin-left: 30px;
  }

  .feature-box h4 {
      font-size: 20px;
      margin-bottom: 10px;
  }

  .feature-box p {
      color: #7c8595;
  }

  .feature-inner {
      float: left;
      width: 70%;
      margin-left: 30px;
  }

  .feature-inner h4, .feature-inner-left h4, .feature-inner-right h4 {
      font-size: 18px;
      color: #282828;
      margin-top: 0;
      margin-bottom: 10px;
  }

  .feature-wrapper {
      overflow: hidden;
      margin: 30px 0;
  }

  .feature-wrapper i.lefts {
      float: right;
      margin-top: 10px;
      margin-right: 3px;
  }

  .feature-wrapper i.rights {
      float: left;
      margin-top: 10px;
      margin-left: 3px;
  }

  .feature-inner-left {
      float: right;
      width: 70%;
      text-align: right;
      padding-right: 30px;
  }

  .feature-inner-right {
      float: left;
      width: 70%;
      text-align: left;
      padding-left: 30px;
  }

  /* ========================================================== */
  /* 			               08. PRICING                        */
  /* ========================================================== */

  .price-box-white {
      text-align: center;
      background-color: #fff;
      box-shadow: rgba(33, 33, 33, .06) 0 4px 24px 5px;
      padding: 50px 0;
      width: 90%;
      margin-top: 40;
      margin-bottom: 20px;
      margin-left: 20px;
      border-radius: 8px 8px;
      transition: all 0.3s ease-in-out;
      -webkit-transition: all 0.3s ease-in-out;
      -webkit-backface-visibility: hidden;
      -moz-osx-font-smoothing: grayscale;
  }

  .price-box-grey {
      text-align: center;
      background: #f4f5f6;
      box-shadow: rgba(33, 33, 33, .06) 0 4px 24px 5px;
      padding: 50px 0;
      width: 90%;
      margin-top: 30;
      margin-bottom: 20px;
      margin-left: 20px;
      border-radius: 8px 8px;
      transition: all 0.3s ease-in-out;
      -webkit-transition: all 0.3s ease-in-out;
      -webkit-backface-visibility: hidden;
      -moz-osx-font-smoothing: grayscale;
  }

  .price-box-blue {
      text-align: center;
      background: #7566e3;
      background: -webkit-linear-gradient(left top, #7566e3, #ce4d86);
      background: -o-linear-gradient(bottom right, #7566e3, #ce4d86);
      background: -moz-linear-gradient(bottom right, #7566e3, #ce4d86);
      background: linear-gradient(to bottom right, #7566e3, #ce4d86);
      box-shadow: rgba(33, 33, 33, .06) 0 4px 24px 5px;
      padding: 50px 0 40px 0;
      color: #fff;
      width: 90%;
      margin-top: 30;
      margin-bottom: 20px;
      margin-left: 20px;
      border-radius: 8px 8px;
      transition: all 0.3s ease-in-out;
      -webkit-transition: all 0.3s ease-in-out;
      -webkit-backface-visibility: hidden;
      -moz-osx-font-smoothing: grayscale;
  }

  .price-box-blue:hover, .price-box-grey:hover, .price-box-white:hover {
      transform: scale(1.03, 1.03);
      -ms-transform: scale(1.03, 1.03);
      /* IE 9 */
      -webkit-transform: scale(1.03, 1.03);
      /* Safari */

      -webkit-backface-visibility: hidden;
      -moz-backface-visibility: hidden;
  }

  .price-box-white .price-title, .price-box-white ul.pricing-list li.price-value,
  .price-box-grey .price-title, .price-box-grey ul.pricing-list li.price-value {
      color: #292929;
  }

  .price-box-white .price-subtitle, .price-box-white .price-text,
  .price-box-grey .price-subtitle, .price-box-grey .price-text {
      color: #6a6a6a;
  }

  ul.pricing-list li.price-title {
      font-family: 'Cabin', sans-serif;
      font-size: 18px;
      line-height: 24px;
      font-weight: 700;
      letter-spacing: 1px;
  }

  ul.pricing-list li.price-value {
      font-family: 'Cabin', sans-serif;
      font-size: 70px;
      line-height: 70px;
      display: block;
      margin-top: 20px;
      margin-bottom: 10px;
  }

  ul.pricing-list li.price-subtitle {
      font-family: 'Open Sans', sans-serif;
      font-size: 16px;
      line-height: 24px;
      font-weight: 400;
  }

  ul.pricing-list li.price-text {
      font-family: 'Open Sans', sans-serif;
      font-size: 16px;
      line-height: 28px;
      font-weight: 400;
      margin-bottom: 5px;
  }

  ul.pricing-list li.price-tag a {
      color: #fff;
      background: #008aff;
      background: -webkit-linear-gradient(135deg, #6B02FF 0%, #985BEF 100%);
      background: -o-linear-gradient(bottom right, #6B02FF, #985BEF);
      background: -moz-linear-gradient(bottom right, #008aff, #1ad2fd);
      background: linear-gradient(135deg, #6B02FF 0%, #985BEF 100%);
      border-radius: 5px 5px;
      padding: 15px 30px;
      display: inline-block;
      font-size: 14px;
      line-height: 24px;
      font-weight: 600;
      margin: 40px 0 30px 0;
      transition: all 0.3s ease-in-out;
      -webkit-transition: all 0.3s ease-in-out;
  }

  ul.pricing-list li.price-tag a:hover {
      background: #008aff;
      background: -webkit-linear-gradient(135deg, #985BEF 0%, #6B02FF 100%);
      background: -o-linear-gradient(bottom right, #985BEF, #6B02FF);
      background: -moz-linear-gradient(bottom right, #985BEF, #6B02FF);
      background: linear-gradient(135deg, #6B02FF 0%, #6B02FF 100%);
  }

  .price-box-blue ul.pricing-list li.price-tag a {
      color: #fff;
      background: transparent;
      border: 2px solid #fff;
      border-radius: 5px 5px;
      padding: 15px 30px;
      display: inline-block;
      font-size: 14px;
      line-height: 24px;
      font-weight: 600;
      margin: 40px 0 30px 0;
  }

  .price-box-blue ul.pricing-list li.price-tag a:hover {
      color: #4285f4;
      border: 2px solid #fff;
      background: #fff;
  }

  /* ========================================================== */
  /* 			                   09. BLOG                       */
  /* ========================================================== */

  .blog-item {
      margin-top: 40px;
      background-color: #fff;
      -webkit-border-radius: 5px 5px 5px 5px;
      -moz-border-radius: 5px 5px 5px 5px;
      border-radius: 5px 5px 5px 5px;
      box-shadow: rgba(33, 33, 33, .06) 0 4px 24px 5px;
      transition: all .50s ease-in-out;
      -moz-transition: all .50s ease-in-out;
      -webkit-transition: all .50s ease-in-out;
  }

  .blog-item img {
      -webkit-border-radius: 5px 5px 0 0;
      -moz-border-radius: 5px 5px 0 0;
      border-radius: 5px 5px 0 0;
  }

  .blog-item-inner {
      padding: 5px 25px 30px 25px;
  }

  .blog-item-inner p {
      margin: 12px 0 15px 0;
  }

  h3.blog-title {
      margin-top: 15px;
      margin-bottom: 10px;
  }

  h3.blog-title a {
      font-size: 21px;
      color: #454545;
      transition: all .25s ease-in-out;
      -moz-transition: all .25s ease-in-out;
      -webkit-transition: all .25s ease-in-out;
  }

  h3.blog-title a:hover {
      color: #87ac34;
      transition: all .25s ease-in-out;
      -moz-transition: all .25s ease-in-out;
      -webkit-transition: all .25s ease-in-out;
  }

  a.blog-icons {
      color: #858585;
      font-size: 14px;
      font-style: italic;
      margin-right: 10px;
      padding-right: 10px;
      border-right: 1px solid #aaa;
      transition: all .25s ease-in-out;
      -moz-transition: all .25s ease-in-out;
      -webkit-transition: all .25s ease-in-out;
  }

  a.blog-icons i {
      padding-right: 4px;
      color: #656565;
      font-size: 17px;
      line-height: 18px;
      vertical-align: text-bottom;
  }

  a.blog-icons.last {
      border-right: none;
  }

  a.blog-icons:hover {
      color: #228798;
      transition: all .25s ease-in-out;
      -moz-transition: all .25s ease-in-out;
      -webkit-transition: all .25s ease-in-out;
  }

  a.button-blog {
      background-color: #34b1c4;
      border: 1px solid #34b1c4;
      color: #fff;
      display: inline-block;
      font-weight: 400;
      font-size: 13px;
      padding: 10px 20px;
      margin: 0 0 20px 0;
      -webkit-border-radius: 3px 3px;
      -moz-border-radius: 3px 3px;
      border-radius: 3px 3px;
      transition: all .50s ease-in-out;
      -moz-transition: all .50s ease-in-out;
      -webkit-transition: all .50s ease-in-out;
  }

  a.button-blog:hover {
      background-color: transparent;
      border: 1px solid #34b1c4;
      color: #34b1c4;
      transition: all .50s ease-in-out;
      -moz-transition: all .50s ease-in-out;
      -webkit-transition: all .50s ease-in-out;
  }

  /* ========================================================== */
  /* 						    10. CONTACT                       */
  /* ========================================================== */
  input:focus,
  textarea:focus {
      border: 1px solid #6FC0A4 !important;
      outline: none;
      background-color: #fff !important;
      box-shadow: 0 0 5px rgba(111, 192, 164, 0.3);
  }



  #map {
      width: 100%;
      height: 400px;
      -webkit-filter: grayscale(100%);
      /* Safari 6.0 - 9.0 */
      filter: grayscale(100%);
  }

  .contact-submit {
      background-color: #6FC0A4 !important;
      /* verde do projeto */
      color: #fff;
      border: none;
      padding: 15px 30px;
      font-weight: bold;
      border-radius: 8px;
      transition: 0.3s ease;
  }

  .contact-submit:hover {
      background-color: #BCA6E5 !important;
      /* lilás no hover */
      color: #fff;
  }


  #contact-form {
      margin: 0 auto;
      width: 100%;
      max-width: 960px;
      text-align: center;
      margin-bottom: 10px;
  }

  input.contact-input {
      width: 100%;
      height: 55px;
      padding-left: 2%;
      padding-right: 2%;
      margin-bottom: 20px;
      color: #aaa;
      border: 1px solid #757575;
      background-color: transparent;
      font-size: 14px;
      -webkit-border-radius: 5px 5px 5px 5px;
      -moz-border-radius: 5px 5px 5px 5px;
      border-radius: 5px 5px 5px 5px;
  }

  textarea {
      height: 205px;
      margin-bottom: 20px;
      width: 100%;
      padding-left: 2%;
      padding-right: 2%;
      padding-top: 10px;
      padding-bottom: 10px;
      color: #aaa;
      border: 1px solid #757575;
      background-color: transparent;
      font-size: 14px;
      -webkit-border-radius: 5px 5px 5px 5px;
      -moz-border-radius: 5px 5px 5px 5px;
      border-radius: 5px 5px 5px 5px;
  }

  input.contact-submit {
      color: #fff;
      background: #88ad45;
      border: none;
      cursor: pointer;
      display: inline-block;
      font-size: 14px;
      font-weight: 600;
      margin-top: 10px;
      padding: 18px 32px;
      position: relative;
      text-transform: uppercase;
      -webkit-border-radius: 5px 5px;
      -moz-border-radius: 5px 5px;
      border-radius: 10px;
      transition: all .3s ease-in-out;
      -moz-transition: all .3s ease-in-out;
      -webkit-transition: all .3s ease-in-out;
  }

  input.contact-submit:hover {
      color: #fff;
      background: #71992e;
  }

  input.white-input::-webkit-input-placeholder,
  textarea.white-input::-webkit-input-placeholder {
      /* WebKit browsers */
      color: #aaa;
  }

  input.white-input:-moz-placeholder,
  textarea.white-input:-moz-placeholder {
      /* Mozilla Firefox 4 to 18 */
      color: #aaa;
  }

  input.white-input::-moz-placeholder,
  textarea.white-input::-moz-placeholder {
      /* Mozilla Firefox 19+ */
      color: #aaa;
  }

  input.white-input:-ms-input-placeholder,
  textarea.white-input:-ms-input-placeholder {
      /* Internet Explorer 10+ */
      color: #aaa;
  }

  #contact-form input.contact-input:focus, #contact-form textarea.contact-commnent:focus {
      border-color: #fff;
      outline: none;
  }

  p.contact_success_box {
      display: inline-block;
      color: #fff;
      font-size: 20px;
      font-style: italic;
      padding: 20px 20px;
      border: 1px solid #fff;
      webkit-border-radius: 5px 5px 5px 5px;
      -moz-border-radius: 5px 5px 5px 5px;
      border-radius: 5px 5px 5px 5px;
  }

  /* ========================================================== */
  /* 			               11. OTHER ELEMENTS                 */
  /* ========================================================== */

  /* -----  a) Newsletter ----- */

  .newsletter_form_wrapper {
      width: 100%;
      text-align: center;
      margin-bottom: 30px;
  }

  .newsletter_form_box {
      margin: 0 auto;
      max-width: 730px;
  }

  #newsletter-form #email_newsletter {
      width: 100%;
      max-width: 450px;
      height: 65px;
      padding: 0 20px;
      border: 2px solid #fff;
      background-color: transparent;
      -moz-border-radius: 5px 0 0 5px;
      -webkit-border-radius: 5px 0 0 5px;
      border-radius: 5px 0 0 5px;
      color: #fff;
      font-size: 16px;
      margin: 0;
  }

  #newsletter-form #submit-button-newsletter {
      width: 165px;
      height: 65px;
      background: #fff;
      border: none;
      color: #ce4d86;
      display: inline;
      margin: 0 0 0 -5px;
      -moz-border-radius: 0 5px 5px 0;
      -webkit-border-radius: 0 5px 5px 0;
      border-radius: 0 5px 5px 0;
      font-size: 16px;
      font-weight: 700;
      vertical-align: top;
      transition: background-color .25s ease-in-out;
      -moz-transition: background-color .25s ease-in-out;
      -webkit-transition: background-color .25s ease-in-out;
  }

  #newsletter-form #submit-button-newsletter:hover {
      color: #454545;
      background-color: #fff;
      transition: background-color .25s ease-in-out;
      -moz-transition: background-color .25s ease-in-out;
      -webkit-transition: background-color .25s ease-in-out;
  }

  input#email_newsletter::-webkit-input-placeholder {
      /* WebKit browsers */
      color: #fff;
  }

  input#email_newsletter:-moz-placeholder {
      /* Mozilla Firefox 4 to 18 */
      color: #fff;
  }

  input#email_newsletter::-moz-placeholder {
      /* Mozilla Firefox 19+ */
      color: #fff;
  }

  input#email_newsletter:-ms-input-placeholder {
      /* Internet Explorer 10+ */
      color: #fff;
  }

  .newsletter_success_box {
      font-size: 18px;
      font-style: italic;
      color: #fff;
      margin: 5px 0;
  }

  /* b) Buttons */

  .btn-blue {
      color: #fff !important;
      background: #3498db;
      -webkit-transition: all 0.5s ease;
      -moz-transition: all 0.5s ease;
      -o-transition: all 0.5s ease;
      transition: all 0.5s ease;
      font-family: 'Cabin', sans-serif;
      font-size: 16px;
      line-height: 22px;
      font-weight: 700;
      border-radius: 6px 6px;
      margin: 10px 0;
      padding: 16px 30px;
      display: inline-block;
  }

  .btn-blue.small {
      padding: 14px 26px;
  }

  .btn-blue:hover {
      color: #fff;
      background: #3498db;
  }

  .btn-orange {
      color: #fff !important;
      background-color: orange;
      -webkit-transition: all 0.5s ease;
      -moz-transition: all 0.5s ease;
      -o-transition: all 0.5s ease;
      transition: all 0.5s ease;
      font-family: 'Cabin', sans-serif;
      font-size: 17px;
      line-height: 22px;
      font-weight: 700;
      border-radius: 6px 6px;
      margin: 10px 0;
      padding: 16px 30px;
      display: inline-block;
  }

  .btn-orange.small {
      padding: 14px 26px;
  }

  .btn-orange:hover {
      color: #fff;
      background: #faa203;
  }

  .btn-white {
      color: #6B02FF;
      background-color: #ffffff;
      font-family: 'Cabin', sans-serif;
      font-size: 16px;
      line-height: 22px;
      font-weight: 700;
      border: 1px solid #fff;
      border-radius: 5px 5px;
      margin: 10px 10px 0 10px 0;
      padding: 15px 30px;
      display: inline-block;
      transition: all 0.4s ease-in-out;
      -webkit-transition: all 0.4s ease-in-out;
  }

  .btn-white:hover {
      color: #fff;
      background: transparent;
      border: 1px solid #fff;
  }

  .btn-white-border {
      color: #fff;
      background: transparent;
      font-family: 'Cabin', sans-serif;
      font-size: 16px;
      line-height: 22px;
      font-weight: 700;
      border: 1px solid #fff;
      border-radius: 5px 5px;
      margin: 10px 10px;
      padding: 15px 30px;
      display: inline-block;
      transition: all 0.4s ease-in-out;
      -webkit-transition: all 0.4s ease-in-out;
  }

  .btn-white-border:hover {
      color: #008aff;
      background: #fff;
      border: 1px solid #fff;
  }

  .btn-white i, .btn-white-border i {
      font-size: 22px;
      line-height: 22px;
      margin-right: 10px;
      vertical-align: text-top;
  }

  .btn-lyla {
      color: #fff !important;
      background: #7566e3;
      background: -webkit-linear-gradient(left top, #7566e3, #ce4d86);
      background: -o-linear-gradient(bottom right, #7566e3, #ce4d86);
      background: -moz-linear-gradient(bottom right, #7566e3, #ce4d86);
      background: linear-gradient(to bottom right, #7566e3, #ce4d86);
      -webkit-transition: all 0.5s ease;
      -moz-transition: all 0.5s ease;
      -o-transition: all 0.5s ease;
      transition: all 0.5s ease;
      font-family: 'Cabin', sans-serif;
      font-size: 16px;
      line-height: 22px;
      font-weight: 700;
      border-radius: 6px 6px;
      margin: 10px 0;
      padding: 16px 30px;
      display: inline-block;
  }

  .btn-lyla.small {
      padding: 14px 26px;
  }

  .btn-blue-lyla {
      color: #fff !important;
      background: #7566e3;
      -webkit-transition: all 0.5s ease;
      -moz-transition: all 0.5s ease;
      -o-transition: all 0.5s ease;
      transition: all 0.5s ease;
      font-family: 'Cabin', sans-serif;
      font-size: 16px;
      line-height: 22px;
      font-weight: 700;
      border-radius: 6px 6px;
      margin: 10px 0;
      padding: 16px 30px;
      display: inline-block;
  }

  .btn-blue-lyla.small {
      padding: 14px 26px;
  }

  .btn-blue-lyla:hover {
      color: #fff;
      background: #6252cd;
  }

  /* -----  c) Gallery Images Animations ----- */

  .popup-wrapper {
      display: block;
      position: relative;
      overflow: hidden;
  }

  .popup-gallery {
      display: inline-block;
      position: relative;
  }

  .first-gallery {
      margin-bottom: 15px;
  }

  .popup-gallery img {
      position: relative;
      z-index: 10;
      width: 100%;
      height: auto;
  }

  .popup-gallery:hover img {
      opacity: 0.25;
  }

  .popup-gallery a span.eye-wrapper,
  .popup-gallery a span.eye-wrapper2 {
      background-color: #000;
      position: absolute;
      display: block;
      overflow: hidden;
      z-index: 2;
      height: 100% !important;
      top: 0%;
      margin-top: 0px;
      left: 0%;
      right: 0%;
      font-size: 22px;
      color: #fff;
      text-align: center;
      font-weight: 300;
      opacity: 0;
      -webkit-border-radius: 5px 5px 0 0;
      -moz-border-radius: 5px 5px 0 0;
      border-radius: 5px 5px 0 0;
  }

  .popup-gallery-rounded a span.eye-wrapper,
  .popup-gallery-rounded a span.eye-wrapper2 {
      -webkit-border-radius: 5px 5px 5px 5px;
      -moz-border-radius: 5px 5px 5px 5px;
      border-radius: 5px 5px 5px 5px;
  }

  .popup-gallery a span.eye-wrapper i.eye-icon, .popup-gallery a span.eye-wrapper2 i.eye-icon {
      position: absolute;
      display: inline-block;
      font-size: 52px;
      z-index: 3;
      top: 50% !important;
      margin-top: -26px !important;
      left: 0%;
      right: 0%;
  }

  .popup-gallery a:hover span {
      opacity: 1;
  }

  .popup-gallery img,
  .popup-gallery a span {
      -webkit-transition: all 0.25s ease-in-out;
      -moz-transition: all 0.25s ease-in-out;
      -ms-transition: all 0.25s ease-in-out;
      -o-transition: all 0.25s ease-in-out;
      transition: all 0.25s ease-in-out;
  }

  .gallery-show {
      box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.3);
      border: 8px solid rgba(255, 255, 255, 0.8);
      margin: 20px 10px 40px 10px;
  }

  .gallery-item-wrapper {
      float: left;
      width: 100%;
  }

  /* d) Testimonials */
  .testim-inner {
      margin-top: 10px;
      text-align: center;
  }

  .testim-inner img {
      max-width: 130px;
      border: 1px solid #fff;
      border-radius: 50% 50%;
      padding: 6px 6px;
      background-color: #fcfcfc;
      display: inline-block !important;
  }

  .testim-inner h6 {
      margin-bottom: 5px;
      font-family: 'Cabin', sans-serif;
      font-size: 20px;
      line-height: 26px;
      color: #ffff00;
      font-weight: 700;
      text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.50);
  }

  .testim-inner span.job-text {
      font-size: 19px;
      font-weight: 400;
  }

  .testim-inner p {
      font-size: 20px;
      line-height: 32px;
      font-style: italic;
      color: #fff;
      margin-top: 20px;
      text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.50);
  }

  /* e) Accordion Tabs */

  .panel-wrapper {
      margin-bottom: 25px;
  }

  .panel-icon {
      margin-right: 5px;
      font-size: 20px;
      vertical-align: middle;
  }

  .panel-title {
      margin-top: 0;
      margin-bottom: 0;
      font-size: 17px;
      font-weight: 700;
      color: #454545;
      font-family: 'Cabin', sans-serif;
  }

  .panel-title>a, .panel-title>small, .panel-title>.small, .panel-title>small>a, .panel-title>.small>a {
      color: #656565;
  }

  .panel-group {
      margin: 10px 0;
  }

  .panel-group .panel {
      margin-bottom: 0;
      background: transparent;
  }

  .panel-body {
      padding: 20px 10px 10px 10px;
  }

  .panel-heading {
      padding: 8px 10px 16px 10px;
      border-top-left-radius: 0;
      border-top-right-radius: 0;
  }

  .panel-default {
      border-color: transparent;
  }

  .panel-default>.panel-heading {
      color: #959595;
      background-color: transparent;
      border: none;
  }

  .panel-group .panel-heading+.panel-collapse>.panel-body, .panel-group .panel-heading+.panel-collapse>.list-group {
      border-top: 3px solid #88ad45;
  }

  /* f) Partners */

  .section-white.sponsors-padding, .section-grey.sponsors-padding {
      padding: 30px 0 30px 0;
  }

  .sponsors {
      text-align: center;
  }

  .sponsors img.sponsor {
      opacity: 0.4;
      margin: 10px 25px;
      max-height: 28px;
      -webkit-transition: all 0.25s ease-in-out;
      -moz-transition: all 0.25s ease-in-out;
      -ms-transition: all 0.25s ease-in-out;
      -o-transition: all 0.25s ease-in-out;
      transition: all 0.25s ease-in-out;
  }

  .sponsors img.sponsor:hover {
      opacity: 0.8;
  }

  .partners-title {
      display: inline-block;
      font-size: 18px;
      line-height: 26px;
      margin-right: 30px;
      color: #7c8595;
  }

  /* g) PopUp Video */

  .youtube-video-wrapper {
      background: url(../images/popup-video.jpg) top center no-repeat;
      background-size: initial;
      padding: 185px 0;
      position: relative;
      text-align: center;
  }

  .youtube-video-icon {
      width: 100px;
      height: 100px;
      border: 2px solid #fff;
      border-radius: 50% 50%;
      display: inline-block;
      background: #fff;
      transition: all 0.4s ease-in-out;
      -webkit-transition: all 0.4s ease-in-out;
  }

  .youtube-video-icon:hover {
      background: #6B02FF;
      border: 2px solid #6B02FF;
  }

  .youtube-video-icon:hover i {
      color: #fff;
  }

  .youtube-video-icon i {
      font-size: 60px;
      line-height: 100px;
      color: #6B02FF;
      margin-left: 10px;
      transition: all 0.4s ease-in-out;
      -webkit-transition: all 0.4s ease-in-out;
  }

  /* h) Features List */

  .no-padding-bottom {
      padding-bottom: 0;
  }

  ul.features-list-hero {
      display: inline-block;
      margin-bottom: 25px;
  }

  ul.features-list-hero li {
      float: left;
      margin: 8px 0;
      font-size: 17px;
      line-height: 26px;
  }

  ul.features-list-hero li i {
      float: left;
      padding-right: 20px;
      color: #ffffff;
      font-size: 42px;
      line-height: 46px;
      vertical-align: text-top;
  }

  ul.features-list-hero li i.blue {
      color: #3473b8;
  }

  ul.features-list-hero li i.green {
      color: #87ac34;
  }

  ul.features-list-hero li i.red {
      color: #fc6a3f;
  }

  ul.features-list-hero li i.lyla {
      color: #ce4d86;
  }

  /* ========================================================== */
  /* 			             12. MEDIA QUERIES                    */
  /* ========================================================== */

  /* ============================
     BOTÃO HAMBÚRGUER (mobile)
  ============================ */
  /* ============================
       AJUSTES GERAIS (mobile e tablet)
    ============================ */
  @media (min-width: 992px) {
      .about-icons {
          display: none;
      }
  }

  @media (max-width: 991px) {

      .social-icons {
          text-align: center;
          margin-top: 40px;
      }

      .footer-box {
          text-align: center;
      }

      .about-img {
          max-width: 67%;
          /* ajuste conforme necessário */
          margin-top: -30px;
      }

      .home-section h1 {
          font-size: 27px;
      }

      .about-icons {
          text-align: center;
          margin: 0 auto;
      }

      .about-icon-item {
          font-size: 20px;
          font-weight: 700;
      }

      .section-results .carousel-inner .item .row>div {
          display: none !important;
      }

      .section-results .carousel-inner .item .row>div:nth-child(-n+2) {
          display: inline-block !important;
          width: 50% !important;
          float: left !important;
          text-align: center;
      }

      .section-results .carousel-inner .item .row>div:nth-child(-n+2) img {
          margin: 0 auto !important;
      }

      .sobre-text h2 {
          text-align: center;
          font-weight: bold;
          color: #6FC0A4;
          margin-bottom: 20px;
      }

      .sobre-text p {
          text-align: center;
          font-size: 16px;
          line-height: 1.7;
          color: #555;
      }

      .navbar-toggle {
          position: relative;
          float: right;
          padding: 9px 10px;
          margin: 6px -26px 8px 0;
          background-color: transparent;
          border: none;
          z-index: 9999;
      }

      .navbar-toggle .icon-bar {
          display: block;
          width: 28px;
          height: 3px;
          background-color: #BCA6E5 !important;
          /* Verde escuro */
          transition: all 0.4s ease-in-out;
          border-radius: 2px;
          transform-origin: center;
      }

      /* Transição suave no menu colapsado */
      .navbar-collapse.collapse {
          transition: 0.4s ease-in-out !important;
          overflow: hidden !important;
      }

      .navbar-collapse.in {
          max-height: 500px !important;
          /* altura suficiente para exibir os links */
      }

      .navbar-toggle.active .icon-bar {
          background-color: #6FC0A4 !important;
          transition: all 0.4s ease-in-out;
      }

      .navbar-toggle.active .top-bar {
          transform: rotate(45deg) translate(5px, 5px);
      }

      .navbar-toggle.active .middle-bar {
          opacity: 0;
      }

      .navbar-toggle.active .bottom-bar {
          transform: rotate(-45deg) translate(5px, -5px);
      }

      .logo-img {
          height: 63px;
          margin-top: -20px;
          margin-left: -3px;
      }

      .navbar-fixed-top.opaque {
          box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
      }

      .home-section {
          padding-top: 120px;
          text-align: center;
      }

      .hex-image {
          margin-bottom: 30px;
      }

      .home-section .hex-image {
          display: block;
          margin: 0 auto;
      }

      .home-section p,
      ul.home-benefits {
          margin-bottom: 25px !important;
      }

      .register-form-wrapper {
          margin-top: 30px;
          padding: 30px 20px 50px 20px;
      }

      .section-grey {
          padding: 70px 0 30px 0;
      }

  }

  /* DESKTOP - a partir de 1100px */
  @media (min-width: 1200px) {
      .about-icons {
          display: inline;
          text-align: center;
          margin-top: 25px;
          margin-bottom: 10px;
          white-space: nowrap;
      }

      .about-icon-item {
          display: inline-block;
          margin: 10px;
          font-size: 16px;
          color: #6fc0a4;
          font-weight: bold;
          white-space: nowrap;
      }

      .about-icon-item i {
          margin-right: 6px;
      }

  }

  /* ============================
       TABLET
    ============================ */
  @media (max-width: 767px) {

      /* === MOSTRA 1 IMAGEM NO CARROSSEL DE RESULTADOS === */
      #results-carousel .item .row>div {
          display: none !important;
      }

      #results-carousel .item .row>div:first-child {
          display: block !important;
          width: 100% !important;
          float: none !important;
          text-align: center;
      }

      #results-carousel .item .row>div:first-child img {
          margin: 0 auto !important;
      }

      /* === MOSTRA 1 IMAGEM NO CARROSSEL DE FEEDBACKS === */
      #testimonials-carousel .item .row>div {
          display: none !important;
      }

      #testimonials-carousel .item .row>div:first-child {
          display: block !important;
          width: 100% !important;
          float: none !important;
          text-align: center;
      }

      #testimonials-carousel .item .row>div:first-child img {
          margin: 0 auto !important;
      }

      /* === SEU CSS GERAL DO MOBILE === */
      .about-img {
          max-width: 67%;
          margin-top: -30px;
      }

      .home-section h1 {
          font-size: 27px;
      }

      .about-icon-item {
          color: #6FC0A4;
          font-weight: 700;
          font-size: 20px;
      }

      .about-icons {
          margin: 20px auto;
      }

      .about-icon-item i {
          color: #6FC0A4;
          font-weight: 600;
          font-size: 18px;
      }

      .sobre-text h2 {
          font-size: 26px;
          font-weight: 700;
      }

      .navbar-collapse {
          text-align: center;
      }

      .navbar-nav {
          float: none !important;
          display: inline-block;
      }

      .navbar-nav>li {
          float: none;
          display: block;
          margin: 10px 0;
      }

      .navbar-nav>li>a {
          display: inline-block;
          font-weight: bold;
      }

      .logo-img {
          height: 60px;
          margin-left: 54px;
      }

      .navbar-header {
          width: 100%;
          text-align: center;
      }

      .navbar-brand {
          float: none;
          display: inline-block;
      }

      .section-grey {
          padding: 70px 0 30px 0;
      }
  }


  /* ============================
       SMARTPHONES PEQUENOS
    ============================ */
  @media (max-width: 375px) {
      .about-img {
          max-width: 100%;
          /* ajuste conforme necessário */
      }

      .sobre-text h2 {
          font-size: 26px;
          font-weight: 700;
      }

      .about-icons {
          margin: 20px auto;
      }

      .about-icon-item i {
          color: #6FC0A4;
          font-weight: 700;
          font-size: 20px;
      }

      .navbar-toggle {
          margin-bottom: 0;
      }

      .owl-carousel .owl-item img {
          width: 80% !important;
          margin: 0 10%;
      }

      #newsletter-form #email_newsletter,
      #newsletter-form #submit-button-newsletter {
          border-radius: 5px !important;
      }

      #newsletter-form #submit-button-newsletter {
          display: inline-block;
          margin-top: 10px !important;
      }

      .home-section h1 {
          font-size: 20px;
          color: #6FC0A4;
          line-height: 1.3;
      }

      .section-grey {
          padding: 40px 0 20px 0;
      }

      .sponsors img.sponsor {
          display: block;
      }

      .feature-box {
          text-align: center;
      }

      .feature-box i {
          float: none;
          display: inline-block;
          margin-bottom: 25px;
      }

      .feature-box-text {
          width: 100%;
          margin-left: 0;
      }
  }

  /* ============================
       EXTRA PEQUENOS (320px)
    ============================ */
  @media (min-width: 320px) {
      .carousel-indicators {
          bottom: -45px!important;
      }

      .sobre-text h2 {
          font-size: 22px;
          font-weight: 700;
      }

      .newsletter-input {
          width: 60%;
      }

      .btn-newsletter {
          width: 38%;
          margin-top: 12px;
      }
  }

  #form-message {
      font-size: 1rem;
      padding: 15px 10px;
      margin-top: 12px;
      word-break: break-word;
      max-width: 100%;
  }

  @media (max-width: 480px) {
      #form-message {
          font-size: 1.1rem;
          padding: 18px 12px;
          margin-top: 18px;
          border-radius: 10px;
      }
  }

  .clinic-box.no-map {
      min-height: auto !important;
      height: auto !important;
      padding-bottom: 15px;
  }

  /* CORES DO TÍTULO PRINCIPAL */
  .marketing-title {
      color: #6fc0a4;
      font-weight: bold;
  }

  .marketing-title span {
      color: #BCA6E5; 
  }

  /* ===== FAQ COM BORDA VERDE ===== */
  .panel-group .panel-heading + .panel-collapse > .panel-body {
      border-top: 1px solid #6FC0A4 !important;
  }

  .panel-group .panel {
      border: 1px solid #6FC0A4 !important;
  }

  .panel-default > .panel-heading {
      background-color: #f8fffb !important;
      border-color: #6FC0A4 !important;
  }