  /* ===========================
     RESET & VARIÁVEIS GERAIS
     =========================== */

     * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Work Sans", sans-serif;
    }
  
    :root {
      --primary-color: #051628;
      --secondary-color: #5d903c;
      --accent-color: #45AB34;
      --accent-color-hover: #5d903c;
      --text-light: #fff;
      --light-color: #f4f4f4;
      --text-dark: #333;
      --step-card-bg: #0b1e32;
    }
  
    /* Controlar tamanho de logos de clientes por breakpoint */
    :root {
      --clients-logo-width: 200px;
      --clients-logo-height: 100px;
    }
  
    /* ================== NAVBAR ================== */
  
    nav.navbar {
      background-color: var(--primary-color);
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.5rem 8vw;
      position: relative;
      flex-wrap: wrap;
      z-index: 10;
    }
  
    .logo-nava img {
      width: 107px;
      height: auto;
      user-select: none;
      margin-top: 13px;
    }
  
    .menu {
      display: flex;
      align-items: center;
      gap: 1rem;
      transition: max-height 0.3s ease;
    }
  
    .menu ul {
      display: flex;
      list-style: none;
      gap: 2rem;
    }
  
    .menu ul li a {
      text-decoration: none;
      color: var(--text-light);
      font-size: 14px;
      transition: color 0.3s ease;
      padding: 0.4rem 0.8rem;
      border-radius: 6px;
      user-select: none;
    }
  
    .menu ul li a:hover,
    .menu ul li a:focus {
      color: var(--secondary-color);
      background-color: rgba(223, 18, 91, 0.1);
      outline-offset: 2px;
      outline-color: var(--secondary-color);
      outline-style: solid;
      outline-width: 2px;
    }
  
    .btn-area .btn-registrar {
      background-color: var(--accent-color);
      color: var(--text-light);
      padding: 14px 37px;
      border-radius: 51px;
      text-decoration: none;
      font-weight: 500;
      transition: background-color 0.3s ease;
      font-size: 14px;
      white-space: nowrap;
      user-select: none;
      cursor: pointer;
    }
  
    .btn-area .btn-registrar:hover,
    .btn-area .btn-registrar:focus {
      background-color: var(--accent-color-hover);
      outline-offset: 3px;
      outline-color: var(--accent-color-hover);
      outline-style: solid;
      outline-width: 3px;
    }
  
    /* Hamburguer */
  
    .hamburger {
      display: none;
      flex-direction: column;
      width: 28px;
      height: 22px;
      justify-content: space-between;
      cursor: pointer;
      user-select: none;
      z-index: 1001;
      transition: transform 0.4s ease;
    }
  
    .hamburger div {
      height: 3.4px;
      background-color: var(--text-light);
      border-radius: 3px;
      transition: all 0.4s ease;
    }
  
    .hamburger.active div:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }
  
    .hamburger.active div:nth-child(2) {
      opacity: 0;
    }
  
    .hamburger.active div:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
    }
  
    .menu.active {
      display: flex !important;
      flex-direction: column;
      width: 100%;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      margin-top: 0;
      background-color: #051626e3;
      padding: 1rem 0;
      z-index: 1000;
      height: 100vh;
    }
  
    .menu.active ul {
      flex-direction: column;
      gap: 0.5rem;
      margin-right: 0;
      padding-left: 0;
      text-align: left;
    }
  
    .menu.active ul li a {
      padding: 0.75rem 1.5rem;
      display: block;
    }
  
    .menu.active .btn-area {
      padding: 1rem;
      margin-top: 0.5rem;
      text-align: center;
    }
  
    /* ================== HERO ================== */
  
    header {
      background-color: var(--primary-color);
    }
  
    .content-header {
      color: var(--text-light);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 4.4rem 8vw;
      gap: 2rem;
      flex-wrap: wrap;
    }
  
    .group-HD1 {
      max-width: 640px;
      flex: 1 1 320px;
      user-select: none;
    }
  
    .group-HD1 .subtitle {
      font-size: 0.8rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #dadada;
      margin-bottom: 0.8rem;
    }
  
    .group-HD1 h1 {
      font-size: clamp(1.7rem, 4vw, 2.5rem);
      margin-bottom: 1.3rem;
      line-height: 1.2;
    }
  
    .group-HD1 .description {
      font-size: clamp(0.95rem, 2vw, 1rem);
      line-height: 1.6;
      margin-bottom: 3.5rem;
      color: #c4c4c4;
    }
  
    .group-HD1 .description strong {
      color: var(--accent-color);
      font-weight: 600;
    }
  
    .btn-principal {
      background-color: var(--accent-color);
      color: var(--text-light);
      padding: 1.1rem 2.5rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 400;
      transition: background-color 0.3s ease;
      display: inline-block;
      user-select: none;
      cursor: pointer;
    }
  
    .btn-principal:hover,
    .btn-principal:focus {
      background-color: var(--accent-color-hover);
      outline-offset: 3px;
      outline-color: var(--accent-color-hover);
      outline-style: solid;
      outline-width: 3px;
    }
  
    .group-HD2 {
      flex: 1 1 350px;
      max-width: 480px;
      display: flex;
      justify-content: flex-end;
      height: auto;
    }
  
    .registration-form {
      background-color: var(--text-light);
      color: var(--primary-color);
      padding: 2.5rem 1.8rem 1.8rem 1.8rem;
      border-radius: 10px;
      box-shadow: 11px 15px 0 rgba(217, 217, 217, 0.47),
        0 0 20px rgba(0, 0, 0, 0.1);
      width: 100%;
      user-select: none;
    }
  
    .registration-form h3 {
      font-size: 1.2rem;
      margin-bottom: 8px;
      color: #444444;
    }
  
    .registration-form p {
      font-size: 0.9rem;
      margin-bottom: 20px;
      color: #666;
    }
  
    .registration-form .form-group {
      margin-bottom: 1rem;
    }
  
    .registration-form input[type="text"],
    .registration-form input[type="email"],
    .registration-form input[type="tel"] {
      width: 100%;
      padding: 15px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 1rem;
      color: var(--text-dark);
      transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }
  
    .registration-form input[type="text"]:focus,
    .registration-form input[type="email"]:focus,
    .registration-form input[type="tel"]:focus {
      border-color: var(--accent-color);
      outline: none;
      box-shadow: 0 0 4px rgba(69, 171, 52, 0.5);
    }
  
    .registration-form input[type="text"]::placeholder,
    .registration-form input[type="email"]::placeholder,
    .registration-form input[type="tel"]::placeholder {
      color: #aaa;
    }
  
    .btn-continuar {
      display: block;
      width: 100%;
      background-color: var(--accent-color);
      color: var(--text-light);
      padding: 16px 0;
      border: none;
      border-radius: 6px;
      font-size: 0.9rem;
      font-weight: 500;
      cursor: pointer;
      margin-top: 29px;
      transition: background-color 0.3s ease, outline 0.3s ease;
      user-select: none;
    }
  
    .btn-continuar:hover,
    .btn-continuar:focus {
      background-color: var(--accent-color-hover);
      outline-offset: 3px;
      outline-color: var(--accent-color-hover);
      outline-style: solid;
      outline-width: 3px;
    }
  
    /* ================== BARRA DE ESTATÍSTICAS ================== */
  
  .statistics-bar {
    background-color: var(--light-color);
    color: var(--primary-color);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 97px;
    padding: 25px 5vw;
    border-top: 1px solid #eee;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
    user-select: none;
  }
  
  .statistic-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 1rem;
    font-weight: 400;
    /* flex: 1 1 220px; */    /* ajuda a formar 2x2 em telas médias */
    max-width: 395px;
  }
  
  .statistic-item .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  
  .statistic-item .icon img {
    width: 30px;
    height: auto;
  }
  
  .statistic-item .statistic-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
  }
  
    /* ================== POR QUE REGISTRAR ================== */
  
    .RegistrarQuestion {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 5rem 8vw;
      background-color: var(--text-light);
      flex-wrap: wrap;
      gap: 4rem;
    }
  
    .QuestionGroup1,
    .QuestionGroup2 {
      max-width: 50%;
      flex: 1 1 45%;
      justify-content: center;
    }
  
    .QuestionGroup1 {
      text-align: center;
    }
  
    .QuestionGroup1 img {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
    }
  
    .QuestionGroup2 {
      color: var(--primary-color);
      display: inline-block;
    }
  
    .QuestionGroup2 .subtitle-question {
      font-size: 0.8rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #8b8b8b;
      margin-bottom: 0.8rem;
    }
  
    .QuestionGroup2 h2 {
      font-weight: 300;
      font-size: clamp(1.8rem, 3.5vw, 2.5rem);
      margin-bottom: 1.5rem;
      line-height: 1.2;
      color: var(--primary-color);
    }
  
    .QuestionGroup2 h2 strong {
      font-weight: 700;
    }
  
    .QuestionGroup2 .description-question {
      font-size: 1rem;
      line-height: 1.6;
      margin-bottom: 2rem;
      color: #555;
      max-width: 90%;
    }
  
    .advantages-list {
      list-style: none;
      padding: 0;
      margin-bottom: 0;
    }
  
    .advantages-list li {
      position: relative;
      padding-left: 30px;
      margin-bottom: 15px;
      font-size: 1rem;
      line-height: 1.5;
      font-weight: 400;
      color: var(--primary-color);
    }
  
    .advantages-list li::before {
      content: "✓";
      color: var(--accent-color);
      font-weight: 700;
      font-size: 1.2rem;
      position: absolute;
      left: 0;
      top: 0;
    }
  
    /* ================== SLIDE DE CLIENTES ================== */
  
    .section-SlideClients {
      background-color: var(--light-color);
      text-align: center;
      overflow: hidden;
      user-select: none;
      border-top: 1px solid #eee;
      border-bottom: 1px solid #eee;
      padding: 0rem 0vw;
    }
  
    .slider {
      position: relative;
      width: 100%;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }
  
    /* faixa com os logos em loop infinito */
    .slide-track {
      display: flex;
      width: max-content;
      animation: scroll 28s linear infinite;
      padding: 0px 0;
    }
  
    /* pausa a animação ao passar o mouse no desktop */
    .slide-track:hover {
      animation-play-state: paused;
    }
  
    /* cada logo: responsivo */
    .slide {
      flex: 0 0 auto;
      width: clamp(200px, 25vw, 280px);
      height: clamp(110px, 18vw, 125px);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 24px;
      filter: grayscale(100%) opacity(0.7);
      transition: filter 0.3s;
    }
  
    .slide:hover {
      filter: grayscale(0%) opacity(1);
    }
  
    .slide img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
    }
  
    @keyframes scroll {
      0% {
        transform: translateX(0);
      }
  
      100% {
        transform: translateX(-50%);
      }
    }
  
    /* ================== COMO FUNCIONA ================== */
  
    .simple-registration {
      background-color: var(--text-light);
      color: var(--primary-color);
      padding: 5rem min(8vw, 4rem) 7rem min(8vw, 4rem);
      text-align: center;
    }
  
    /* garantir que o título e o grid não fiquem muito largos em telas grandes */
    .simple-registration>.subtitle-simple-reg,
    .simple-registration>h2,
    .simple-registration>.steps-grid {
      max-width: 1120px;
      margin-left: auto;
      margin-right: auto;
    }
  
    .simple-registration .subtitle-simple-reg {
      font-size: 0.8rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #8b8b8b;
      margin-bottom: 0.8rem;
    }
  
    .simple-registration h2 {
      font-size: clamp(2rem, 4vw, 2.6rem);
      font-weight: 400;
      margin-bottom: 3.2rem;
      line-height: 1.2;
    }
  
    .simple-registration h2 strong {
      font-weight: 700;
    }
  
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 32px;
    }
  
    /* Card padrão (desktop) */
    .step-card {
      background-color: var(--step-card-bg);
      color: var(--text-light);
      padding: 24px 22px;
      border-radius: 10px;
      text-align: left;
      position: relative;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border-top: 3px solid transparent;
      display: flex;
    }
  
    .step-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
      border-color: var(--accent-color);
    }
  
    .groupCard {
      display: flex;
      align-items: center;
      gap: 20px;
      justify-content: flex-start;
    }
  
    .icone-card {
      display: flex;
      flex-shrink: 0;
      width: 60px;
      height: 60px;
      align-items: center;
      justify-content: center;
    }
  
    .icone-card img {
      width: 100%;
      max-width: 56px;
      filter: brightness(1.2);
    }
  
    .cardGrouText {
      display: flex;
      flex-direction: column;
      width: 100%;
    }
  
    .step-card::before {
      content: attr(data-step);
      position: absolute;
      top: -22px;
      left: -18px;
      width: 42px;
      height: 42px;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: var(--accent-color);
      color: var(--text-light);
      border-radius: 24%;
      font-weight: 700;
      font-size: 0.9rem;
      z-index: 2;
    }
  
    .step-card h3 {
      font-size: 1.05rem;
      font-weight: 700;
      margin-top: 0;
      margin-bottom: 4px;
      color: var(--text-light);
      line-height: 1.4;
    }
  
    .step-card p {
      font-size: 0.94rem;
      line-height: 1.5;
      color: #ccc;
      word-spacing: 1px;
      margin-top: 4px;
    }
  
    /* ================== DEPOIMENTOS ================== */
  
    .section-testimonials {
      background: linear-gradient(90deg,
          #45ab34 0%,
          #2a7f1f 30%,
          #112a45 70%,
          #051628 100%);
      color: var(--text-light);
      padding: 5rem 8vw;
    }
  
    .testimonial-content-wrapper {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 24px;
    }
  
    .testimonial-intro {
      width: 31%;
    }
  
    .testimonial-intro h2 {
      font-size: clamp(2rem, 4vw, 2.4rem);
      font-weight: 300;
      color: var(--text-light);
      margin-bottom: 1rem;
      line-height: 1.2;
    }
  
    .testimonial-intro h2 strong {
      font-weight: 700;
    }
  
    .testimonial-intro p {
      font-size: 1rem;
      line-height: 1.6;
      color: #f0f0f0;
      display: inline-block;
      width: 88%;
    }
  
    /* Wrapper do slider */
    .testimonials-wrapper {
      position: relative;
      max-width: 944px;
      width: 100%;
      overflow: visible;
    }
  
    /* Container que segura todos os cards */
    .testimonials-container {
      display: flex;
      gap: 17px;
    }
  
    /* 2 cards por vez no desktop */
    .testimonial-card {
      background-color: var(--text-light);
      color: var(--primary-color);
      padding: 2.5rem 2.2rem;
      border-radius: 8px;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
      flex: 1 1 48%;
      min-width: 0;
      box-sizing: border-box;
    }
  
    /* Avatar + texto */
    .author-info {
      display: flex;
      align-items: center;
      margin-bottom: 1.5rem;
    }
  
.avatar-01 {
  width: 50px;
  height: 50px;
  background-image: url("../img/Ana Ribeiro.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
  margin-right: 15px;
  flex-shrink: 0;
}

    .avatar-02 {
  width: 50px;
  height: 50px;
  background-image: url("../img/Beatriz Santos.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
  margin-right: 15px;
  flex-shrink: 0;
    }
    
        .avatar-03  {
  width: 50px;
  height: 50px;
  background-image: url("../img/Lucas Almeida.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
  margin-right: 15px;
  flex-shrink: 0;
    }
    
    .avatar-04 {
  width: 50px;
  height: 50px;
  background-image: url("../img/fluxui.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
  margin-right: 15px;
  flex-shrink: 0;
    }
  
    .author-text h3 {
      font-size: 1.1rem;
      font-weight: 600;
      margin: 0;
    }
  
    .author-text p {
      font-size: 0.8rem;
      color: #888;
      margin: 0;
    }
  
    .quote {
      line-height: 1.5;
      color: #333;
      font-size: 0.95rem;
    }
  
    /* Setas */
    .testimonial-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: none;
      color: #fff;
      border: none;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
    }
  
    .testimonial-arrow.prev {
      left: -48px;
    }
  
    .testimonial-arrow.next {
      right: -48px;
    }
  
    /* Bolinhas */
    .testimonial-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 2.2rem;
    }
  
    .testimonial-dots .dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      border: 1px solid #fff;
      background: transparent;
      cursor: pointer;
    }
  
    .testimonial-dots .dot.active {
      background: #fff;
    }
  
    /* ================== SEÇÃO RISCOS ================== */
  
    .risks-section {
      background-color: #ffffff;
      padding: 5rem 8vw;
      text-align: center;
    }
  
    .risks-subtitle {
      font-size: 0.8rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #8b8b8b;
      margin-bottom: 0.8rem;
    }
  
    .risks-title {
      font-size: clamp(1.6rem, 3vw, 2.3rem);
      font-weight: 300;
      color: var(--primary-color);
      margin-bottom: 2rem;
    }
  
    .risks-title strong {
      font-weight: 700;
    }
  
    .risks-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }
  
    .risk-card {
      background-color: #ffffff;
      border: 1px solid #e3e3e3;
      border-radius: 10px;
      padding: 1.8rem 1.5rem;
      text-align: left;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.03);
      transition: transform 0.25s ease, box-shadow 0.25s ease,
        border-color 0.25s ease;
    }
  
    .risk-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
      border-color: rgba(5, 22, 40, 0.15);
    }
  
    .risk-icon {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      margin-bottom: 1rem;
      background-color: #f8f8f8;
    }
  
    .risk-card h3 {
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--primary-color);
      margin-bottom: 0.6rem;
      text-transform: uppercase;
    }
  
    .risk-card p {
      font-size: 0.9rem;
      line-height: 1.5;
      color: #555;
    }
  
    /* ========== FAQ / DÚVIDAS FREQUENTES ========== */
  
    .faq-section {
      background-color: #f8f8f8;
      padding: 5rem 8vw;
    }
  
    .faq-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr);
      gap: 3rem;
      align-items: center;
    }
  
    /* Bloco esquerdo (imagem + textos) */
    .faq-illustration {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      align-items: flex-start;
      align-items: center;
    }
  
    .faq-illustration img {
      max-width: 314px;
      width: 100%;
      height: auto;
    }
  
    .faq-text-block {
      max-width: 468px;
      text-align: center;
    }
  
    .faq-subtitle {
      font-size: 0.8rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #8b8b8b;
      margin-bottom: 0.5rem;
    }
  
    .faq-text-block h2 {
      font-size: clamp(1.9rem, 3vw, 2.3rem);
      font-weight: 300;
      color: var(--primary-color);
      margin-bottom: 0.8rem;
    }
  
    .faq-text-block h2 strong {
      font-weight: 700;
    }
  
    .faq-description {
      font-size: 0.95rem;
      line-height: 1.6;
      color: #555;
    }
  
    /* Accordion / perguntas */
    .faq-content {
      background-color: #ffffff;
      border-radius: 12px;
      padding: 1.5rem 1.8rem;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    }
  
    .accordion {
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
    }
  
    .accordion-item {
      border-radius: 8px;
      background-color: #ffffff;
      border: 1px solid #e4e4e4;
      overflow: hidden;
      transition: border-color 0.25s ease, box-shadow 0.25s ease;
    }
  
    .accordion-item.active {
      border-color: var(--accent-color);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    }
  
    .accordion-header {
      width: 100%;
      padding: 0.95rem 1.1rem;
      background: transparent;
      border: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
      text-align: left;
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--primary-color);
    }
  
    .accordion-header span:first-child {
      padding-right: 1rem;
    }
  
    .accordion-icon {
      width: 20px;
      height: 20px;
      border-radius: 999px;
      border: 1px solid #cfcfcf;
      position: relative;
      flex-shrink: 0;
    }
  
    .accordion-icon::before,
    .accordion-icon::after {
      content: "";
      position: absolute;
      background-color: #555;
      transition: transform 0.25s ease;
    }
  
    .accordion-icon::before {
      width: 10px;
      height: 2px;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }
  
    .accordion-icon::after {
      width: 2px;
      height: 10px;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }
  
    .accordion-item.active .accordion-icon::after {
      transform: translate(-50%, -50%) rotate(90deg);
    }
  
    /* Corpo da resposta */
    .accordion-body {
      max-height: 0;
      overflow: hidden;
      padding: 0 1.1rem;
      transition: max-height 0.25s ease, padding-bottom 0.25s ease;
    }
  
    .accordion-item.active .accordion-body {
      padding-bottom: 0.9rem;
      max-height: 200px;
    }
  
    .accordion-body p {
      font-size: 0.9rem;
      line-height: 1.6;
      color: #555;
    }
  
    /* ========== FOOTER ========== */
  
    .site-footer {
      background-color: var(--primary-color);
      color: #f0f0f0;
      padding: 3.2rem 8vw 2rem;
      margin-top: 0;
    }
  
    .footer-top {
      display: flex;
      justify-content: space-between;
      gap: 3rem;
      padding-bottom: 2rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
  
    .footer-left {
      max-width: 480px;
    }
  
    .footer-logo {
      width: 130px;
      height: auto;
      margin-bottom: 1rem;
    }
  
    .footer-text {
      font-size: 0.9rem;
      line-height: 1.6;
      color: #d9d9d9;
      margin-bottom: 0.8rem;
    }
  
    .footer-info {
      font-size: 0.85rem;
      color: #bfbfbf;
    }
  
    .footer-right {
      min-width: 220px;
    }
  
    .footer-right h4 {
      font-size: 0.95rem;
      margin-bottom: 0.8rem;
      font-weight: 600;
    }
  
    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0 0 1.2rem 0;
    }
  
    .footer-links li+li {
      margin-top: 0.35rem;
    }
  
    .footer-links a {
      text-decoration: none;
      font-size: 0.9rem;
      color: #e6e6e6;
      transition: color 0.2s ease;
    }
  
    .footer-links a:hover {
      color: var(--accent-color);
    }
  
    .footer-social {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-size: 0.85rem;
      color: #cccccc;
    }
  
    .footer-social img {
      width: 18px;
      height: 18px;
      display: block;
    }
  
    /* parte de baixo */
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 1.2rem;
      font-size: 0.8rem;
      color: #9f9f9f;
      flex-wrap: wrap;
      gap: 0.5rem;
    }
  
    .footer-bottom-right {
      text-align: right;
    }
  
    /* ============================================
         AJUSTES GERAIS DE LAYOUT / OVERFLOW
         ============================================ */
  
    img {
      max-width: 100%;
      height: auto;
    }
  
    section,
    div,
    header,
    footer {
      min-width: 0;
    }
  
    /* ============================================
         BREAKPOINTS
         ============================================ */
  
    /* ====== TABLET & INTERMEDIÁRIO (<= 992px) ====== */
    @media (max-width: 992px) {
      nav.navbar {
        padding: 1.5rem 4vw;
      }
  
      .content-header {
        padding: 3rem 4vw;
        gap: 1.5rem;
      }
  
      .RegistrarQuestion {
        padding: 3rem 4vw;
        gap: 2.5rem;
      }
  
      .QuestionGroup1,
      .QuestionGroup2 {
        max-width: 100%;
        flex-basis: 100%;
        text-align: center;
      }
  
      .QuestionGroup1 img {
        max-width: 100%;
        min-width: 100%;
        margin: 0 auto 1.5rem auto;
      }
  
      .QuestionGroup2 {
        text-align: left;
      }
  
      .QuestionGroup2 .description-question {
        max-width: 100%;
      }
  
      .simple-registration {
        padding: 4rem 6vw 6rem 6vw;
      }
  
      .steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 26px;
      }
  
      .step-card {
        padding: 22px 20px;
      }
  
      .section-testimonials {
        padding: 4rem 4vw;
        background: linear-gradient(to bottom, #45ab34 0%, #051628 100%);
      }
  
      .testimonial-content-wrapper {
        flex-direction: column;
        gap: 2.5rem;
        align-items: flex-start;
      }
  
      .testimonial-intro {
        max-width: 100%;
        flex-basis: 100%;
        width: 100%;
        text-align: center;
      }
  
      .testimonials-wrapper {
        max-width: 100%;
      }
  
      .risks-grid {
        grid-template-columns: repeat(2, 1fr);
      }
  
      .faq-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }
  
      .faq-illustration {
        align-items: center;
        text-align: center;
      }
  
      .faq-text-block {
        max-width: 100%;
      }
  
      .faq-text-block h2 {
        margin-bottom: 0.6rem;
      }
  
      .faq-description {
        text-align: center;
      }
  
      .site-footer {
        padding: 3rem 6vw 2rem;
      }
  
      .footer-top {
        flex-direction: column;
      }
  
      .footer-right {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 2rem;
      }
  
      .section-SlideClients {
        padding: 2.5rem 4vw;
      }
  
      .slide {
        padding: 0 18px;
      }
    }
  
    /* ====== NAV E HERO INTERMEDIÁRIO (<= 820px) ====== */
    @media (max-width: 820px) {
      nav.navbar {
        background-color: #061a2f;
        padding: 1.2rem 5vw;
        align-items: center;
        display: flex;
      }
  
      .menu.active {
        padding: 1.3rem 0;
      }
  
      .menu.active ul {
        width: 100%;
      }
  
      .menu.active ul li a {
        padding: 0.95rem 1.6rem;
      }
  
      .btn-area .btn-registrar {
        width: 86%;
        margin: 0 auto;
        padding: 13px 0;
        /* ajustado p/ não estourar lateral */
      }
  
      .content-header {
        gap: 2rem;
      }
  
      .group-HD1 {
        max-width: 520px;
      }
  
      .group-HD2 {
        max-width: 440px;
        width: 100%;
        justify-content: center;
      }
  
      .statistics-bar {
        gap: 1.8rem;
      }
  
      .statistic-item {
        white-space: normal;
      }
    }
  
    /* ====== MOBILE GERAL (<= 768px) ====== */
    @media (max-width: 768px) {
      nav.navbar {
        flex-wrap: nowrap;
        justify-content: space-between;
      }
  
      .hamburger {
        display: flex;
      }
  
      .menu {
        display: none;
      }
  
      .content-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 2.5rem 5vw;
      }
  
      .group-HD1 {
        order: 1;
        margin-top: 2rem;
        max-width: 100%;
        flex: 1;
      }
  
      .group-HD2 {
        order: 2;
        justify-content: center;
        max-width: 100%;
        height: auto;
        margin-bottom: 27px;
      }
  
      .group-HD1 h1 {
        font-size: clamp(1.6rem, 5vw, 2rem);
        margin-bottom: 0.4rem;
      }
  
      .group-HD1 .description {
        font-size: 0.87rem;
        margin-bottom: 2.4rem;
        margin-top: 0.6rem;
      }
  
      .registration-form {
        max-width: 450px;
      }
  
      .statistics-bar {
        justify-content: center;
        gap: 19px;
      }
  
      .statistic-item {
        flex-direction: row;
        text-align: left;
        flex: 1 1 auto;
      }
  
      .statistic-item .icon {
        margin-bottom: 0;
        /* margin-right: 8px; */
      }
  
      .simple-registration {
        padding: 3.5rem 6vw 4.5rem 6vw;
      }
  
      .simple-registration h2 {
        font-size: clamp(1.7rem, 5vw, 2.1rem);
        margin-bottom: 2.4rem;
      }
  
      .steps-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        gap: 20px;
        margin: 0 auto;
      }
  
      .step-card {
        padding-top: 28px;
        text-align: center;
      }
  
      .groupCard {
        flex-direction: column;
        gap: 10px;
        align-items: center;
      }
  
      .icone-card {
        margin-bottom: 5px;
      }
  
      .cardGrouText {
        text-align: center;
      }
  
      .step-card::before {
        top: -20px;
        left: 2%;
        transform: translateX(-50%);
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
      }
  
      .step-card h3 {
        margin-top: 8px;
        font-size: 1.05rem;
      }
  
      .step-card p {
        width: 100%;
      }
  
      .QuestionGroup2 {
        text-align: left;
      }
  
      /* Depoimentos: 1 card por vez e setas mais perto */
      .testimonial-card {
        flex: 1 1 100%;
      }
  
      .testimonial-arrow.prev {
        left: 4px;
      }
  
      .testimonial-arrow.next {
        right: 4px;
      }
  
      .risks-section {
        padding: 3.5rem 6vw;
      }
  
      .risks-grid {
        grid-template-columns: 1fr;
      }
  
      .section-SlideClients {
        padding: 0rem 0vw;
      }
  
      .slide {
        width: clamp(220px, 60vw, 279px);
        height: clamp(120px, 19vw, 181px);
        padding: 0 14px;
      }
    }
  
    /* ====== MOBILE COMPACTO PARA SEÇÃO "COMO FUNCIONA" (<= 699px) ====== */
    @media (max-width: 699px) {
      .simple-registration {
        padding: 3.2rem 5vw 4rem 5vw;
      }
  
      .simple-registration .steps-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
        gap: 41px;
      }
  
      .simple-registration .step-card {
        padding: 18px 16px;
      }
    }
  
    /* ====== FAQ + FOOTER MOBILE (<= 640px) ====== */
    @media (max-width: 640px) {
      .faq-section {
        padding: 3.5rem 6vw;
      }
  
      .faq-illustration img {
        max-width: 220px;
      }
  
      .faq-content {
        padding: 1.2rem 1.1rem;
      }
  
      .accordion-header {
        font-size: 0.9rem;
      }
  
      .footer-right {
        flex-direction: column;
        align-items: flex-start;
      }
  
      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }
  
      .footer-bottom-right {
        text-align: left;
      }
    }
  
    /* ====== MOBILE PEQUENO (<= 480px) ====== */
    @media (max-width: 480px) {
      nav.navbar {
        padding: 1rem 2vw;
      }
  
      .logo-nava img {
        width: 90px;
      }
  
      .group-HD1 h1 {
        font-size: clamp(1.4rem, 6vw, 1.7rem);
      }
  
      .btn-principal {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
      }
  
      .registration-form {
        padding: 2rem 1.5rem;
        box-shadow: 8px 10px 0 rgba(217, 217, 217, 0.47);
      }
  
      .statistics-bar {
        gap: 1rem;
        flex-direction: column;
      }
  
      .statistic-item {
        font-size: 0.9rem;
        flex-direction: row;
        justify-content: flex-start;
        flex-basis: 100%;
        text-align: left;
      }
  
      .statistic-item p {
        text-align: left;
      }
  
      .statistic-item .icon {
        margin-bottom: 0;
        margin-right: 5px;
      }
  
      .QuestionGroup2 h2 {
        font-size: clamp(1.5rem, 6vw, 2rem);
      }
  
      /* Slider em telas bem pequenas */
      .slide-track {
        width: calc(120px * 16);
      }
  
      .section-SlideClients {
        padding: 0rem 0vw;
      }
  
      .slide {
        width: clamp(230px, 80vw, 300px);
        height: clamp(68px, 24vw, 200px);
        padding: 0 10px;
      }
  
      @keyframes scroll {
        0% {
          transform: translateX(0);
        }
  
        100% {
          transform: translateX(calc(-120px * 8));
        }
      }
  
      .testimonials-wrapper {
        padding-left: 0;
      }
    }
  
    /* ====== MOBILE SUPER COMPACTO (<= 420px) ====== */
    @media (min-width: 380px) {
      .steps-grid {
        gap: 18px;
      }
  
      .step-card {
        padding: 18px 16px;
      }
  
      .risks-section {
        padding: 3rem 6vw;
      }
  
      .site-footer {
        padding: 2.8rem 6vw 1.8rem;
      }
  
      .footer-text {
        font-size: 0.85rem;
      }
  
      .simple-registration {
        padding: 3.2rem 5vw 4rem 5vw;
      }
    }
  
    /* ====== DESKTOP GRANDE (>= 1100px) ====== */
    @media (min-width: 1100px) {
      .simple-registration .steps-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        max-width: 1515px;
        margin-left: auto;
        margin-right: auto;
        gap: 31px;
      }
    }
  
    /* ====== DESKTOP MÉDIO (700px – 1099px) ====== */
    @media (min-width: 700px) and (max-width: 1099px) {
      .simple-registration .steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 960px;
        margin-left: auto;
        margin-right: auto;
        gap: 24px;
      }
    }

    /* ========== PÁGINA LEGAL (POLÍTICA + TERMOS) ========== */

.legal-hero {
  background: linear-gradient(120deg, #051628 0%, #112a45 50%, #45ab34 100%);
  color: #fff;
  padding: 4rem 8vw 3rem;
  align-items: center;
}

.legal-hero-content {
  max-width: 800px;
}

.legal-hero .legal-subtitle {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #dcdcdc;
  margin-bottom: 0.6rem;
}

.legal-hero h1 {
  font-size: clamp(1.9rem, 3.4vw, 2.5rem);
  margin-bottom: 0.6rem;
}

.legal-hero p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #f0f0f0;
}

/* layout principal */

.legal-page {
  background-color: #f8f8f8;
  padding: 3rem 8vw 4rem;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 2.1fr);
  gap: 2rem;
}

/* sidebar */

.legal-sidebar {
  background-color: #fff;
  border-radius: 12px;
  padding: 2.6rem 1.4rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  top: 90px;
  align-self: flex-start;
}

.legal-sidebar h2 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 3rem;
  color: var(--primary-color);
}

.legal-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0 0 0.8rem 0;
}

.legal-sidebar li + li {
  margin-top: 1.35rem;
}

.legal-sidebar a {
  font-size: 0.9rem;
  color: #555;
  text-decoration: none;
  line-height: 1.4;
}

.legal-sidebar a:hover {
  color: var(--accent-color);
}

.legal-warning {
  font-size: 0.78rem;
  line-height: 1.5;
  color: #777;
  border-top: 1px solid #eee;
  padding-top: 0.6rem;
}

/* conteúdo */

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.legal-block {
  background-color: #fff;
  border-radius: 12px;
  padding: 1.7rem 1.8rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.legal-block h2 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  color: var(--primary-color);
}

.legal-block h3 {
  font-size: 1rem;
  margin-top: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--primary-color);
}

.legal-block p {
  font-size: 0.93rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 0.5rem;
}

.legal-block ul {
  padding-left: 1.1rem;
  margin-bottom: 0.4rem;
}

.legal-block li {
  font-size: 0.93rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 0.25rem;
}

.legal-block a {
  color: #ffffff;
  text-decoration: none;
}

.legal-block a:hover {
  text-decoration: underline;
}

/* etiquetas (tags) em cima das seções principais */

.legal-tag {
  display: inline-block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: #fff;
  background-color: var(--accent-color);
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 0.7rem;
}

.legal-tag-secondary {
  background-color: var(--accent-color);
}

/* extra de estilo para alguns blocos */

.legal-updated {
  margin-top: 0.6rem;
  font-size: 0.85rem;
  color: #666;
}

.legal-final {
  text-align: center;
}

.legal-final p {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1rem;
}

/* link do rodapé para a página legal */

.footer-bottom-right a {
  color: #9f9f9f;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom-right a:hover {
  color: var(--accent-color);
}

/* responsivo */

@media (max-width: 992px) {
  .legal-page {
    grid-template-columns: 1fr;
    padding: 3rem 6vw 4rem;
  }

  .legal-sidebar {
    position: static;
    top: auto;
  }
}

@media (max-width: 640px) {
  .legal-hero {
    padding: 3rem 6vw 2.4rem;
    text-align: center;
  }

  .legal-hero-content {
    max-width: 100%;
  }

  .legal-block {
    padding: 1.5rem 1.4rem;
  }
}

@media (min-width: 769px ) and (max-width: 1600px) {
  nav.navbar {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .hamburger {
    display: flex;
  }

  .menu {
    display: none;
  }
}

.form-step { display: none; }
.form-step.active { display: block; }

#mensagemForm {
  text-align: center;
  color: var(--accent-color);
  font-weight: 500;
  margin-top: 10px;
}

.form-step { display: none; }
.form-step.active { display: block; }

.registration-form input[type="text"],
.registration-form input[type="email"],
.registration-form input[type="tel"] {
  width: 100%;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  color: var(--text-dark);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.registration-form input[type="text"]:focus,
.registration-form input[type="email"]:focus,
.registration-form input[type="tel"]:focus {
  border-color: var(--accent-color);
  outline: none;
  box-shadow: 0 0 4px rgba(69, 171, 52, 0.5);
}

.registration-form input::placeholder {
  color: #aaa;
}

.btn-continuar {
  display: block;
  width: 100%;
  background-color: var(--accent-color);
  color: var(--text-light);
  padding: 16px 0;
  border: none;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.btn-continuar:hover {
  background-color: var(--accent-color-hover);
}

#mensagemForm {
  text-align: center;
  margin-top: 10px;
  font-weight: 500;
}
