.container_lazy h1, h2, h3, h4, h5, h6, .roboto {  font-family: 'Roboto', sans-serif !important; }
.container_lazy { font-family: 'Roboto Slab', sans-serif !important; color: #404040; }
.container_lazy img {
    width: 100%;
    max-width: 100%;
}

.container_lazy .material-symbols-outlined {
    font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 48
}

.container_lazy .asdasdas .h1, .container_lazy .asdasdas h2, .container_lazy .asdasdas h3, .container_lazy .asdasdas h4 {  font-family: 'Roboto', sans-serif !important; }

 .container_lazy .asdasdas h2,.container_lazy .asdasdas h4, h5,  .container_lazy .asdasdas h6 { 
    position: relative;
    padding-left: 16px;
}



.container_lazy .color-cyan { color: #33A88F; }
.container_lazy .bg-orange { background-color: #33A88F; }

.container_lazy .btn-with-icon {
    position: relative;
    padding-right: 30px; /* espaço suficiente para a seta e alguma margem adicional */
}

.container_lazy .btn-with-icon .material-symbols-outlined {
    position: absolute;
    right: 10px; /* margem do lado direito */
    top: 50%;
    transform: translateY(-50%); /* centralizar verticalmente */
}

.container_lazy a.button {
    background: #33A88F;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    padding: 12px 22px;
    display: block;
    width: 90%;
    text-align: center;
    color: white;
    text-decoration: none;
    transition: opacity ease-in-out .2s;
}
.container_lazy div.button-sm {
    background: #33A88F;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    padding: 8px 12px;
    box-sizing: border-box;
    display: block;
    width: 250px;
    text-align: center;
    color: white;
    text-decoration: none;
    transition: opacity ease-in-out .2s;
}

.container_lazy a.button:hover, div.button-sm:hover {
    opacity: .80;
    transition: opacity ease-in-out .2s;
}

.container_lazy footer {
    width: 100%;
    height: auto;
    background: #f4f4f4;
}

.container_lazy footer .container {
    padding-bottom:  5px;
    padding-top: 20px;
}

.container_lazy footer .container p {
    font-size: 12px;
    text-align: justify;
}

.container_lazy footer .container span {
    font-size: 14px;
    font-weight: bold;
}

.container_lazy footer .container a {
    font-size: 10px;
    color:#194b40;
    text-decoration: none;
    font-weight: bold;
}

.container_lazy footer img {
    margin-left: 50%;
    transform: translateX(-50%);
}



.container_lazy .transition, ul li i:before, ul li i:after, p {
    transition: all 0.25s ease-in-out;
  }
  
  .container_lazy .flipIn, ul li, h1 {
    animation: flipdown 0.5s ease both;
  }
  
  .container_lazy .no-select, h2 {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  

  
  .container_lazy .faq  h2 {
    color: #040505;
}
    
.container_lazy .faq h1 {
    text-transform: uppercase;
    font-size: 36px;
    line-height: 42px;
    letter-spacing: 3px;
    font-weight: 100;
  }
  
  .container_lazy .faq h2 {

    line-height: 34px;
    font-weight: 300;
    letter-spacing: 1px;
    display: block;

    margin: 0;
    cursor: pointer;
  }
  
  .container_lazy .faq p {
    color: rgba(48, 69, 92, 0.8);
    font-size: 17px;
    line-height: 26px;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    max-height: 800px;
    opacity: 1;
    transform: translate(0, 0);
    margin-top: 14px;
    z-index: 2;
  }
  
  .container_lazy .faq ul {
    list-style: none;
    perspective: 900;
    padding: 0;
    margin: 0;
  }
  .container_lazy .faq ul li {
    position: relative;
    padding: 0;
    margin: 0;
    padding-bottom: 4px;
    padding-top: 18px;
    border-top: 1px dotted #dce7eb;
  }
  .container_lazy .faq ul li:nth-of-type(1) {
    animation-delay: 0.5s;
  }
  .container_lazy .faq  ul li:nth-of-type(2) {
    animation-delay: 0.75s;
  }
  .container_lazy .faq ul li:nth-of-type(3) {
    animation-delay: 1s;
  }
  .container_lazy .faq ul li:last-of-type {
    padding-bottom: 0;
  }
  .container_lazy .faq ul li i {
    position: absolute;
    transform: translate(-6px, 0);
    margin-top: 16px;
    right: 0;
  }
  .container_lazy .faq ul li i:before, ul li i:after {
    content: "";
    position: absolute;
    background-color: #33A88F;
    width: 3px;
    height: 9px;
  }
  .container_lazy .faq ul li i:before {
    transform: translate(-2px, 0) rotate(45deg);
  }
  .container_lazy .faq ul li i:after {
    transform: translate(2px, 0) rotate(-45deg);
  }
  .container_lazy .faq ul li input[type=checkbox] {
    position: absolute;
    cursor: pointer;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
  }
  .container_lazy .faq ul li input[type=checkbox]:checked ~ p {
    margin-top: 0;
    max-height: 0;
    opacity: 0;
    transform: translate(0, 50%);
  }
  .container_lazy .faq ul li input[type=checkbox]:checked ~ i:before {
    transform: translate(2px, 0) rotate(45deg);
  }
  .container_lazy .faq ul li input[type=checkbox]:checked ~ i:after {
    transform: translate(-2px, 0) rotate(-45deg);
  }
  
  @keyframes flipdown {
    0% {
      opacity: 0;
      transform-origin: top center;
      transform: rotateX(-90deg);
    }
    5% {
      opacity: 1;
    }
    80% {
      transform: rotateX(8deg);
    }
    83% {
      transform: rotateX(6deg);
    }
    92% {
      transform: rotateX(-3deg);
    }
    100% {
      transform-origin: top center;
      transform: rotateX(0deg);
    }
  }