body { 
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin:0; 
    padding:0; 
    background:#f4f4f4;
}


.question-container {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
/*
.container { 
    max-width:600px; 
    margin:40px auto; 
    background:#fff; 
    padding:20px;
    border-radius:8px; 
    box-shadow:0 2px 5px rgba(0,0,0,0.1); 
}
*/

/* Mobile first — por padrão largura menor (celular) */
.container {
  max-width: 100%;
  margin: 8px;
  background: #fff;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* A partir de 768px (tablets e acima), fixa largura intermediária */
@media (min-width: 768px) {
  .container {
    max-width: 500px;
    margin: 40px auto;
    padding: 20px;
  }
}

/* A partir de 1024px (desktop), aumenta ainda mais */
@media (min-width: 1024px) {
  .container {
    max-width: 500px;
  }
}






input, button, select { width:100%; padding:10px; margin:8px 0; border:1px solid #ccc; border-radius:4px; }
button { cursor:pointer; }
.nav { margin-bottom:20px; }

        .custom-checkbox input {
            display: none;
        }
        
        .custom-checkbox span {
            display: inline-block;
            width: 18px;
            height: 18px;
            margin-right: 10px;
            border: 1.5px solid #64748b;
            border-radius: 4px;
            position: relative;
            top: 4px;
            transition: all 0.2s ease;
        }
        
        .custom-checkbox input:checked + span {
            border-color: #3b82f6;
            background-color: #3b82f6;
        }
        
        .custom-checkbox input:checked + span:after {
            content: '';
            position: absolute;
            width: 5px;
            height: 10px;
            border: solid white;
            border-width: 0 2px 2px 0;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -60%) rotate(45deg);
        }
        
        .custom-radio input {
            display: none;
        }
        
        .custom-radio span {
            display: inline-block;
            width: 18px;
            height: 18px;
            margin-right: 10px;
            border: 1.5px solid #64748b;
            border-radius: 50%;
            position: relative;
            top: 4px;
            transition: all 0.2s ease;
        }
        
        .custom-radio input:checked + span {
            border-color: #3b82f6;
        }
        
        .custom-radio input:checked + span:after {
            content: '';
            position: absolute;
            width: 10px;
            height: 10px;
            background-color: #3b82f6;
            border-radius: 50%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }
        
        .progress-bar {
            height: 6px;
            background-color: #e2e8f0;
            border-radius: 9999px;
            overflow: hidden;
        }
        
        .progress-bar-fill {
            height: 100%;
            background-color: #3b82f6;
            border-radius: 9999px;
            transition: width 0.3s ease;
        }
        
        .btn {
            transition: all 0.2s ease;
            font-weight: 500;
        }
        
        .btn:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
        }
        
        .form-input:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
            border-color: #3b82f6;
        }



/* Estilos de admin */
.funnel-list a { display:block; padding:8px; color:#333; text-decoration:none; border-bottom:1px solid #eee; }
.funnel-list a:hover { background:#f0f0f0; }


.intro-text {
    line-height: 1.6;
    justify-content: center;
}

.intro-text p {
    margin-bottom: 0.75rem;
}

  /* Só listas dentro de .intro-text */
.intro-text ul {
    list-style-type: disc !important;
    list-style-position: outside !important;
    margin-left: 1.25rem;  /* espaço antes da lista */
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
    padding-left: 1.25rem !important; /* recuo de 20px */
}
.intro-text ul li {
    margin-bottom: 0.25rem !important;
} 


 .intro-text h1 {
    /* exemplo: cor, tamanho e margem */
    /*color: #1e3a8a;*/           /* azul escuro */
    font-size: 1.5rem;      /* 30px */
    font-weight: 600;
    margin-top: 1rem;
    margin-bottom: 0.2rem;
  }

  .intro-text h2 {
    /*color: #2563eb;*/           /* azul médio */
    font-size: 1.150rem;        /* 24px */
    font-weight: 500;
    margin-top: 0.875rem;
    margin-bottom: 0.5rem;
  }    

.formQuestions{
    padding-top: 20px;
}

.formQuestions img{
    width: 100%;
}

    .benefits {
      list-style: none;
      padding: 0;
    }

    .benefits li {
      background: #FEF3C7;
      padding: 12px;
      margin-bottom: 10px;
      border-left: 6px solid #FEBC11;
      border-radius: 4px;
    }

    .highlight {
      color: #DE9D2A;
      font-weight: bold;
    }

    .testimonial {
      font-style: italic;
      background-color: #f1f1f1;
      padding: 15px;
      border-left: 4px solid #ccc;
      margin: 25px 0;
      border-radius: 6px;
    }

    .cta-button {
      display: block;
      text-align: center;
      background-color: #FEBC11;
      color: #000;
      font-weight: bold;
      padding: 15px 25px;
      margin: 30px auto;
      font-size: 18px;
      border-radius: 8px;
      text-decoration: none;
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
      transition: background 0.3s ease;
      width: fit-content;
    }

    .cta-button:hover {
      background-color: #de9d2a;
    }

    .product-img {
      width: 100%;
      margin: 20px 0;
      border-radius: 8px;
      border: 1px solid #ddd;
    }

    .urgency {
      text-align: center;
      margin-top: 20px;
      font-size: 14px;
      color: #777;
    }

    .guarantee {
      text-align: center;
      font-size: 14px;
      margin-top: 10px;
    }

    @media (max-width: 500px) {
      h1 { font-size: 24px; }
      h2 { font-size: 20px; }
      .cta-button { font-size: 16px; }
    }
    
   #summary-content h1 {
      font-size: 28px;
      color: #022748;
    }

    #summary-content h2 {
      font-size: 22px;
      color: #DE9D2A;
      margin-top: 20px;
    }