 :root {
     --brand: #057c11;
     --accent: #ffb400;
     --dark: #0f1724;
     --muted: #6b7280;
     --bg: #f7fafc;
      --bronze: #cd7f32;     /* Bronze clássico */
  --prata:  #c0c0c0;     /* Prata metálico */
  --ouro:   #ffd700;     /* Ouro reluzente */
  --diamante: #b9f2ff;   /* Azul-claro de diamante */
 }

 * {
     box-sizing: border-box
 }

 html,
 body {
     height: 100%;
      user-select: none;
 }
html {
  scroll-behavior: smooth;
}

 body {
     margin: 0;
     font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
     background: var(--bg);
     color: var(--dark);
     -webkit-font-smoothing: antialiased;
     scroll-behavior: smooth 1s;
 }

 /* Layout */
 .container {
     max-width: 1100px;
     margin: 0 auto;
     padding: 24px

 }

 header {
     background: linear-gradient(90deg, rgba(11, 98, 168, 0.06), rgba(255, 180, 0, 0.03));
     padding: 18px 0;
     border-bottom: 1px solid rgba(15, 23, 36, 0.04)
 }

 .nav {
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 12px
 }

 .brand {
     display: flex;
     align-items: center;
     gap: 12px
 }

 .logo {
     width: 70px;
     height: 70px;
     display: grid;
     place-items: center;
     border-radius: 10px;
 }

 nav ul {
     list-style: none;
     padding: 0;
     margin: 0;
     display: flex;
     gap: 14px;
     align-items: center
 }

 nav a {
     text-decoration: none;
     color: var(--dark);
     font-weight: 600
 }

 /* Hero */
 .hero {
     display: grid;
     grid-template-columns: 1fr;
     gap: 20px;
     align-items: center;
     padding: 48px 0
 }

 .hero-left h1 {
     font-size: 28px;
     margin: 0 0 8px
 }

 .hero-left p {
     color: var(--muted);
     margin: 0 0 18px
 }

 .cta-row {
     display: flex;
     gap: 12px;
     flex-wrap: wrap
 }

 .btn {
     padding: 12px 18px;
     border-radius: 10px;
     border: 0;
     cursor: pointer;
     font-weight: 700
 }

 .btn-primary {
     background: var(--brand);
     color: #fff
 }

 .btn-outline {
     background: transparent;
     border: 2px solid rgba(11, 98, 168, 0.12);
     color: var(--brand)
 }

 .card {
     background: white;
     border-radius: 12px;
     padding: 18px;
     box-shadow: 0 6px 18px rgba(15, 23, 36, 0.06)
 }

 /* Product features */
 .features {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 18px;
     margin-top: 24px
 }

 .feature h3 {
     margin: 12px 0 6px
 }

 .feature p {
     margin: 0;
     color: var(--muted);
     font-size: 14px
 }

 /* Dashboard preview */
 .dashboard {
     display: grid;
     grid-template-columns: 1fr;
     gap: 16px;
     margin-top: 20px
 }

 .dash-preview {
     display: flex;
     flex-direction: column;
     gap: 12px
 }

 .progress {
     height: 12px;
     background: #e6eef9;
     border-radius: 999px;
     overflow: hidden
 }

 .progress>i {
     display: block;
     height: 100%;
     background: linear-gradient(90deg, var(--accent), var(--bronze));
     width: 44%;
    transition: all 1s;
 }

 /* Levels */
 .levels {
     display: flex;
     gap: 12px;
     flex-wrap: wrap
 }

 .level {
     flex: 1 1 140px;
     padding: 12px;
     border-radius: 10px;
     background: linear-gradient(180deg, #fff, #fbfdff);
     text-align: center
 }

 .level .lvl {
     font-weight: 800;
     color: var(--brand)
 }

 /* FAQ and About */
 .two-col {
     display: grid;
     grid-template-columns: 1fr 320px;
     gap: 18px;
     margin-top: 24px
 }

/* FAQ estilo base */
.faq dt {
  cursor: pointer;
  font-weight: 600;
  margin-top: 12px;
  transition: color 0.3s;
}

.faq dt:hover {
  color: var(--brand, #008000);
}

/* Respostas escondidas inicialmente */
.faq dd {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease;
  margin: 0;
  padding-left: 10px;
  border-left: 3px solid transparent;
}

/* Quando ativa */
.faq dd.active {
  opacity: 1;
  margin-top: 6px;
  max-height: 300px; /* altura máxima simulada */
  border-left-color: var(--brand, #008000);
}


 footer {
     margin-top: 36px;
     padding: 24px 0;
     border-top: 1px solid rgba(15, 23, 36, 0.04);
     color: var(--muted)
 }

 /* Responsive */
 @media (min-width:760px) {
     .hero {
         grid-template-columns: 1fr 420px
     }

     .dashboard {
         grid-template-columns: 1fr 320px
     }
 }

 @media (max-width:759px) {
     .features {
         grid-template-columns: 1fr
     }

     .two-col {
         grid-template-columns: 1fr
     }

     nav ul {
         display: none
     }
 }

 /* small improvements */
 .badge {
     display: inline-block;
     padding: 6px 8px;
     border-radius: 20px;
     background: rgba(11, 98, 168, 0.08);
     color: var(--brand);
     font-weight: 700;
     font-size: 12px
 }

 .muted {
     color: var(--muted)
 }

 .center {
     display: grid;
     place-items: center
 }

 /* form */
 .form-row {
     display: flex;
     gap: 10px;
     flex-wrap: wrap
 }

 input,
 textarea,
 select {
     width: 100%;
     padding: 10px;
     border-radius: 8px;
     border: 1px solid #e6eef3;
     font-size: 14px
 }

 label {
     font-size: 13px;
     color: var(--muted)
 }
  #bancos-carousel {
      display:flex;
    gap:16px;
    width:max-content;
    animation: scrollBancos 25s linear infinite;
    margin-top:10px;
  }



 @keyframes scrollBancos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes scrollProvas {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.lgpd-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #0d0d0d;
    color: #fff;
    padding: 15px 20px;
    font-size: 14px;
    display: none;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  }

  .lgpd-content {
    max-width: 900px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
  }

  .lgpd-content p {
    margin: 0;
    line-height: 1.4;
  }

  .lgpd-content a {
    color: #008000;
    text-decoration: underline;
  }

  .lgpd-content button {
    background: #008000;
    color: #000;
    border: none;
    padding: 8px 18px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
  }

  .lgpd-content button:hover {
    background: #008000;
  }

  @media (max-width: 600px) {
    .lgpd-content {
      flex-direction: column;
      text-align: center;
    }
  }
  /* Estilo do modal fixado na parte inferior */
  .tutorial-modal {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    transition: bottom 0.3s ease;
    z-index: 9999;
    padding: 12px;
    display: flex;
    justify-content: center;
  }

  .tutorial-modal.active {
    bottom: 0;
  }

  .tutorial-content {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .tutorial-controls {
    display: flex;
    justify-content: center;
    gap: 14px;
  }

  .tutorial-controls button {
    background: var(--primary, #008000);
    color: white;
    border: none;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
  }

  .tutorial-controls button:hover {
    background: #008000;
  }

  .progress-bar {
    width: 100%;
    height: 6px;
    background: #eee;
    border-radius: 4px;
    overflow: hidden;
  }

  #progressFill {
    width: 0%;
    height: 100%;
    background: var(--primary, #008000);
    transition: width 0.2s linear;
  }