@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
      --bege: #b2a392;
      --black: #282828;
      --primary: #18073e;
      --secundary: #ec7743;
}

body {
      font-family: 'Montserrat', sans-serif;
      overflow-y: auto;
}
.clear {
      width: 100%;
      clear: both;
}
.center,
#center {
      width: 90%;
      margin: 0 auto;
}

#topo_float {
      width: 100%;
      background: #fff;
      transition: all 0.3s ease;
}
#topo_float.fixed {
      position: fixed;
      top: 0px;
      left: 0px;
      right: 0px;
      z-index: 999;
      background: rgba(255, 255, 255, 0.95);
}
#topo_float .center {
      display: flex;
      justify-content: space-between;
      align-items: center;
}

#l_topo {
      float: left;
      display: grid;
      grid-template-columns: 200px 1fr;
      padding: 10px 0;
}
#logo_topo {
      width: 170px;
}
#logo_topo img {
      width: 100% !important;
}
#menu_topo {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr 1fr;
      align-items: center;
      grid-gap: 5px;
}
#menu_topo li {
      font-size: 0.9em;
      font-weight: bold;
      color: #000;
      text-align: center;
      padding: 10px 10px;
      transition-duration: 0.2s;
}
#menu_topo li:hover {
      background: var(--secundary);
      color: #fff;
      transition-duration: 0.2s;
}

#r_topo a {
      color: var(--secundary);
      border: solid 1px var(--secundary);
      font-size: 0.9em;
      text-align: center;
      padding: 10px 10px;
}
#r_topo a.teste_gratis {
      position: relative;
      background-color: #ff8800; /* Laranja */
      color: #fff;
      padding: 12px 25px;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      overflow: hidden;
      z-index: 1;
      animation: pulse 2s infinite;
}
.teste_gratis {
      animation: pulse 2s infinite;
}

@keyframes pulse {
      0% {
            box-shadow: 0 0 0 0 rgba(255, 136, 0, 0.7);
      }
      70% {
            box-shadow: 0 0 0 10px rgba(255, 136, 0, 0);
      }
      100% {
            box-shadow: 0 0 0 0 rgba(255, 136, 0, 0);
      }
}

#icon_menu_respo {
      display: none;
}

#slide_destak {
      width: 100%;
      background: var(--primary);
}
#slide_destak #center {
      max-width: 800px;
      display: grid;
      margin: 0 auto;
      grid-template-columns: 700px 1fr;
      align-items: center;
      justify-content: center;
}
#l_slide {
      width: 100%;
      color: #fff;
}
#l_slide h3 {
      font-size: 1.1em;
      margin: 0 0 10px 0;
}
#l_slide h1 {
      font-size: 2.5em;
      font-weight: bold;
      margin: 0 0 10px 0;
}
#l_slide h2 {
      font-size: 2.5em;
      font-weight: bold;
      margin: 0 0 10px 0;
}
#l_slide h2 span {
      background: var(--secundary);
      color: #fff;
      padding: 3px 3px;
      margin: 0 0 10px 0;
}

#l_slide a {
      color: #fff;
      border: solid 1px #fff;
      padding: 10px 15px;
      display: inline-block;
      margin: 15px 10px 0 0;
}
#l_slide a.teste_gratis {
      background: var(--secundary);
      border: solid 1px var(--secundary);
      padding: 10px 15px;
      display: inline-block;
      margin: 15px 10px 0 0;
}

.r_slide {
      text-align: right;
}
#slide_destak img {
      height: 450px;
}

/* TESTE GRATIS */
#box_tg {
      background: linear-gradient(
            -45deg,
            var(--primary),
            #ec7743,
            #ffb347,
            var(--primary)
      );
      background-size: 400% 400%;
      animation: gradientBG 10s ease infinite;
      padding: 20px 0;
}
#box_tg #center {
      display: grid;
      grid-gap: 50px;
      grid-template-columns: 600px 1fr;
      align-items: center;
      justify-content: center;
}

#l_tg {
      order: 2;
}
#l_tg h1 {
      font-size: 2.4em;
      color: #fff;
      font-weight: bold;
}
#l_tg p {
      font-size: 1.1em;
      color: var(--primary);
}
#l_tg a {
      background: var(--primary);
      color: #fff;
      padding: 10px 15px;
      margin: 10px 0 0 0;
      display: inline-block;
      border-radius: 10px;
}

#r_tg {
      background: #fff;
      padding: 30px;
      border-radius: 8px;
      order: 1;
}
#r_tg header h1 {
      border: solid 1px var(--primary);
      padding: 10px;
      text-align: center;
}
#r_tg h2 {
      font-size: 1.2em;
      text-align: center;
      padding: 10px;
}
#r_tg h2 span {
      font-weight: bold;
}
#price_tg h1 {
      display: table;
      margin: 0 auto;
      text-align: center;
      font-size: 3.5em;
      font-weight: bold;
      position: relative;
}
#price_tg h1::after {
      content: 'R$';
      position: absolute;
      top: 7px;
      left: -13px;
      font-size: 12px;
      font-weight: bold;
}
#price_tg h1::before {
      content: ',00';
      position: absolute;
      bottom: 7px;
      right: -13px;
      font-size: 12px;
      font-weight: bold;
}
#r_tg ul {
      width: 100%;
}
#r_tg ul li {
      width: 100%;
      font-size: 1.2em;
      margin: 0 0 10px 0;
}

#funcoes {
      width: 100%;
      background: #ddd;
      padding: 40px 0;
}
#funcoes header h1 {
      font-size: 2.6em;
      margin: 0 0 40px 0;
      text-align: center;
}
#funcoes ul {
      width: 90%;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      grid-gap: 20px;
}
#funcoes ul li {
      width: calc(100% - 20px);
      text-align: center;
      background: #fff;
      padding: 20px 10px;
      border-radius: 10px;
}
#funcoes ul li i {
      font-size: 2em;
      margin: 0 0 10px 0;
}
#funcoes ul li h1 {
      width: 100%;
      font-size: 1.3em;
      text-align: center;
      font-weight: bold;
}
#funcoes ul li p {
      font-size: 0.9em;
      margin: 5px 0 0 0;
}

#estatiticas {
      width: 100%;
      padding: 80px 0;
}
#estatiticas #center {
      display: grid;
      justify-content: center;
      align-items: center;
      grid-template-columns: 1fr;
}
#estatiticas header {
      padding: 20px 0;
}
#estatiticas header h1 {
      font-size: 2.6em;
      font-weight: bold;
      color: var(--primary);
      text-align: center;
}
#estatiticas header p {
      text-align: center;
}
#estatiticas header h1 b {
      color: var(--secundary);
      padding: 3px 5px;
}
#estatiticas header p {
      font-size: 1.3em;
}
#estatiticas ul {
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      grid-gap: 15px;
}
#estatiticas ul li {
      width: calc(100% - 40px);
      background: #ccc;
      box-shadow: 2px 2px 4px 0px #555;
      padding: 20px;
      border-radius: 5px;
}
#estatiticas ul li h1 {
      font-weight: bold;
      font-size: 1.5em;
}

#perguntas {
      width: 100%;
      background: #fff;
      padding: 15px 0;
}
#perguntas header {
      display: block;
      text-align: center;
      margin: 0 0 15px 0;
}
#perguntas header h1 {
      font-size: 2.1em;
      font-weight: bold;
      color: var(--primary);
}
#perguntas header p {
      font-size: 1.2em;
      color: var(--primary);
}
#perguntas ul {
      width: 100%;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr;
      grid-gap: 15px;
}
#perguntas ul li {
      text-align: center;
      background: var(--primary);
      font-size: 1.3em;
      color: #fff;
      padding: 15px 0;
      border-radius: 10px;
      margin: 0 0 4px 0;
      position: relative;
}
#perguntas ul li:hover {
      background: var(--secundary);
      transition: 0.3s ease-in-out;
      cursor: pointer;
}
#perguntas ul li i {
      width: 10px;
      height: 15px;
      font-size: 14px;
      color: #fff;
      position: absolute;
      right: 10px;
      top: 20px;
}
#perguntas ul li h2 {
      font-weight: bold;
}

#perguntas ul li p {
      display: none;
      margin: 10px 0 0 0;
      font-size: 18px;
      border-top: solid 1px #fff;
      padding: 10px 0 0 0;
      font-weight: normal;
}

#informe_01 {
      width: 100%;
      background: #ddd;
      padding: 20px 0;
}
#informe_01 #center {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-gap: 15px;
      align-items: center;
}
#l_informe_01 {
      background: black;
      padding-bottom: 75%;
      background-size: cover !important;
}
#r_informe_01 h1 {
      font-size: 2.2em;
      font-weight: bold;
}
#r_informe_01 h1 b {
      color: var(--secundary);
}
#r_informe_01 p {
      font-size: 1.1em;
      color: #3e3e3e;
}

#informe_02 {
      width: 100%;
      padding: 20px 0;
      color: var(--primary);
}
#informe_02 #center {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-gap: 15px;
      align-items: center;
}
#l_informe_02 {
      background: black;
      order: 2;
      background: black;
      padding-bottom: 75%;
      background-size: cover !important;
}
#r_informe_02 {
      order: 1;
}
#r_informe_02 h1 {
      font-size: 2.2em;
      font-weight: bold;
}
#r_informe_02 h1 b {
      color: var(--secundary);
}
#r_informe_02 p {
      font-size: 1.1em;
      color: #3e3e3e;
}
#r_informe_02 a {
      background: var(--primary);
      color: #fff;
      padding: 12px 20px;
      display: inline-block;
      margin: 10px 0 0 0;
      border-radius: 4px;
      font-size: 0.9em;
      font-weight: bold;
}

/*  */

#depoimentos {
      width: 100%;
}
#depoimentos header {
      margin: 15px 0;
}
#depoimentos header h1 {
      font-size: 2.2em;
      font-weight: bold;
      margin: 0 0 10px 0;
      text-align: center;
}
#depoimentos ul {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-gap: 15px;
}
#depoimentos ul li {
      background: #ddd;
      padding: 40px 15px;
      border-radius: 10px;
}
#depoimentos ul li p {
      font-size: 1em;
      text-align: center;
      margin: 0 0 20px 0;
      font-style: italic;
}
#dados_depoimento #foto_depo {
      width: 60px;
      height: 60px;
      background: #000;
      border-radius: 100%;
      margin: 0 auto;
      background-position: center center;
      background-size: cover !important;
}
#dados_depoimento h1 {
      font-size: 1.2em;
      font-weight: bold;
      text-align: center;
}
#dados_depoimento h2 {
      font-size: 0.9em;
      text-align: center;
}

/*  */

#rodape {
      width: 100%;
      background: var(--primary);
      padding: 40px 0;
      margin: 40px 0 0 0;
}
#logo_rodape {
      width: 100%;
      text-align: center;
}
#logo_rodape img {
      width: 200px;
}
#rodape header h1 {
      color: #fff;
      font-size: 1.9em;
      font-weight: bold;
      border-bottom: solid 5px #1e1632;
      padding: 0 0 10px 0;
      margin: 0 0 10px 0;
}
#rodape ul {
      display: grid;
      grid-template-columns: 1fr 1fr;
      color: #fff;
}
#rodape ul li {
      display: grid;
      grid-template-columns: 1fr 1fr;
      color: #fff;
}
#rodape ul li h1 {
      font-size: 1.3em;
      font-weight: bold;
      margin: 0 0 10px 0;
}
#rodape ul li section {
      width: 100%;
      display: block;
      font-size: 1.3em;
      margin: 0 0 10px 0;
}
#rodape ul li section span {
      display: block;
      font-size: 15px;
      font-weight: bold;
      margin: 5px 0 0 0;
}
#rodape ul li section a {
      color: #fff;
}
#rodape ul li section a:hover {
      color: var(--secundary);
}

#rodapetwo {
      width: 100%;
      background: #1e1632;
      padding: 15px 0;
      font-size: 13px;
      color: #fff;
}

@keyframes gradientBG {
      0% {
            background-position: 0% 50%;
      }
      50% {
            background-position: 100% 50%;
      }
      100% {
            background-position: 0% 50%;
      }
}

#overbg {
      position: fixed;
      inset: 0px;
      background: rgba(0, 0, 0, 0.5);
      z-index: 999;
      display: none;
      backdrop-filter: blur(5px);
      -webkit-backdrop-filter: blur(5px);
      transition-duration: 0.5s;
}
#overbg.ativo {
      display: block;
      transition-duration: 0.5s;
}
#float_menu_responsivo {
      position: fixed;
      top: 0;
      bottom: 0px;
      left: -440px;
      width: 400px;
      background: #fff;
      box-shadow: -2px 0 15px rgba(0, 0, 0, 0.3);
      transition: left 0.3s ease;
      z-index: 9999;
      display: flex;
      flex-direction: column;
      padding: 20px;
      height: 100%;
}
#float_menu_responsivo.ativo {
      left: 0px;
      display: block;
}

#fechar_menu {
      background: none;
      border: none;
      font-size: 26px;
      cursor: pointer;
      color: #333;
      margin-bottom: 20px;
      float: right;
      transition: color 0.2s;
}

#fechar_menu:hover {
      color: #f00;
}

#logo_float_menu {
      width: 100%;
      text-align: center;
      margin: 20px 0;
}
#logo_float_menu img {
      width: 170px;
}

/* Botões de ação */
.botoes_topo {
      width: 100%;
}

.botoes_topo a {
      display: block;
      text-align: center;
      padding: 7px 0;
      text-decoration: none;
      font-weight: bold;
      transition-duration: 0.2s;
      border: solid 1px var(--secundary);
      color: var(--secundary);
      margin: 0 0 10px 0;
}

/* Itens do menu */
.menu-links {
      display: flex;
      flex-direction: column;
      gap: 20px;
}

.menu-links a {
      text-decoration: none;
      color: #333;
      font-size: 18px;
      font-weight: 500;
      position: relative;
      transition: color 0.3s;
}

.menu-links a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: #ff5722;
      transition: width 0.3s;
}

.menu-links a:hover {
      color: #ff5722;
}

.menu-links a:hover::after {
      width: 100%;
}

@media (min-width: 1150px) {
      #float_menu_responsivo {
            display: none;
      }
}
@media (max-width: 1150px) {
      #menu_topo {
            display: none;
      }

      #icon_menu_respo {
            display: inline-block;
      }
      .btn_entrar {
            display: none;
      }

      /* TESTE GRATIS */

      #box_tg #center {
            grid-gap: 50px;
            grid-template-columns: 1fr;
      }

      #l_tg {
            order: 1;
            text-align: center;
      }
      #l_tg h1 {
            font-size: 3.4em;
            text-align: center;
            color: #fff;
            font-weight: bold;
      }
      #l_tg p {
            text-align: center;
            font-size: 1.4em;
            color: var(--primary);
      }
      #l_tg a {
            color: #fff;
            padding: 15px 25px;
      }

      #r_tg {
            order: 2;
      }
      #r_tg header h1 {
            border: solid 1px var(--primary);
            padding: 20px 10px;
            text-align: center;
      }
      #r_tg h2 {
            font-size: 1.4em;
      }
      #price_tg h1 {
            font-size: 4.5em;
      }

      #r_tg ul li {
            font-size: 1.3em;
      }

      /* FUNÇÕES */
      #funcoes header h1 {
            font-size: 1.9em;
      }
      #funcoes ul {
            width: 95%;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-gap: 20px;
      }

      #logo_rodape img {
            width: 250px;
      }
      #rodape header h1 {
            text-align: center;
            margin: 20px 0 10px 0;
      }
      #rodape ul {
            display: grid;
            grid-template-columns: 1fr;
            color: #fff;
            grid-gap: 20px;
      }
      #rodape ul li {
            display: grid;
            grid-template-columns: 1fr 1fr;
            color: #fff;
      }
}

@media (max-width: 1000px) {
      #slide_destak #center {
            grid-template-columns: 1fr;
      }
      .r_slide {
            display: none;
      }
      #l_slide {
            text-align: center;
            padding: 40px 0;
      }
      #l_slide h3,
      #l_slide h1,
      #l_slide h2,
      #l_slide p {
            text-align: center;
      }
}

@media (max-width: 750px) {
      #funcoes ul {
            grid-template-columns: repeat(2, 1fr);
      }

      #informe_01 {
            width: 100%;
            background: #ddd;
            padding: 20px 0;
      }
      #informe_01 #center {
            display: grid;
            grid-template-columns: 1fr;
            grid-gap: 15px;
            align-items: center;
      }
      #l_informe_01 {
            width: 80%;
            padding-bottom: 60%;
            margin: 0 auto;
      }
      #r_informe_01 h1 {
            font-size: 1.9em;
            text-align: center;
            font-weight: bold;
      }
      #r_informe_01 p {
            text-align: center;
      }

      #informe_02 {
            width: 100%;
            padding: 20px 0;
            color: var(--primary);
      }
      #informe_02 #center {
            grid-template-columns: 1fr;
      }
      #l_informe_02 {
            width: 80%;
            padding-bottom: 60%;
            margin: 0 auto;
      }
      #r_informe_02 {
            order: 2;
            text-align: center;
      }
      #r_informe_02 h1 {
            font-size: 1.9em;
            font-weight: bold;
      }
}

@media (max-width: 650px) {
      #l_slide h2 span {
            display: block;
            height: 50px;
      }
}

@media (max-width: 600px) {
      #logo_rodape img {
            width: 190px;
      }
      #rodape header h1 {
            text-align: center;
            margin: 20px 0 10px 0;
            font-size: 1.3em;
      }
      #rodape ul {
            grid-template-columns: 1fr;
            grid-gap: 20px;
      }
      #rodape ul li {
            grid-template-columns: 1fr;
            text-align: center;
            grid-gap: 20px;
      }
      #rodapetwo {
            text-align: center;
      }
}

@media (max-width: 550px) {
      #l_informe_01,
      #l_informe_02 {
            width: 100%;
            padding-bottom: 80%;
            margin: 0 auto;
      }
      #estatiticas ul {
            grid-template-columns: 1fr;
      }
      #depoimentos ul {
            grid-template-columns: 1fr;
      }
      #funcoes ul {
            grid-template-columns: 1fr;
      }

      #estatiticas {
            padding: 30px 0;
      }
      #estatiticas header h1 {
            font-size: 1.8em;
      }
}

@media (max-width: 460px) {
      #r_topo .teste_gratis {
            display: none;
      }
      #l_slide h1 {
            font-size: 1.9em;
      }
      #l_slide h2 {
            font-size: 1.9em;
      }
      #l_slide h2 span {
            height: 39px;
      }
      #l_tg h1 {
            font-size: 2.9em;
      }
      #float_menu_responsivo {
            width: auto;
            inset: 0px;
            display: none;
      }
}
