.lead-section, .lead-section * {
  box-sizing: border-box;
  font-family: "Inter", Arial, Helvetica, sans-serif;
}

  /* não sai agora-sessão */

.lead-section {
  background: linear-gradient(180deg, #000 0%, #111 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  margin-top: -40px;
}

.lead-container {
  width: 100%;
  max-width: 500px;
  text-align: center;
}

.destaque-laranja {
    color: #ff7a00; /* laranja chamativo */
    font-weight: 700; /* deixa mais forte */
}


.lead-container h1 {
  color: #ffffff;
  font-size: 28px;
  margin-bottom: 15px;
}

.lead-container p {
  color: #ccc;
  font-size: 16px;
  margin-bottom: 30px;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.lead-form input,
.lead-form select {
  padding: 15px;
  border-radius: 8px;
  border: none;
  font-size: 16px;
  background: #f5f5f5;
  outline: none;
}

.lead-form input::placeholder {
  color: #777;
}

.lead-form button {
  margin-top: 10px;
  background: #4fb314;
  color: #fff;
  border: none;
  padding: 16px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.lead-form button:hover {
  background: #00b04a;
  transform: scale(1.03);
}


/* Desktop */
@media (min-width: 768px) {
  .lead-container {
    max-width: 600px;
  }

  .lead-container h1 {
    font-size: 36px;
  }

  .lead-container p {
    font-size: 18px;
  }

}
/* Ajustes finos para smartphones (S20, iPhone, etc) */
@media (max-width: 420px){

  /* Reduz espaço geral das sections */
  section{
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  /* Cards de benefícios (os 3 bloquinhos) */
  .how-mini{
    margin-top: 8px;
    gap: 8px;
  }

  .how-mini-item{
    padding: 10px;
  }
  .lead-section{
    margin-top: -60px;
  }

  /* Card da imagem */
  .how-media-card{
    padding: 8px;
  }

  /* Imagem de cima */
  .how-img{
    border-radius: 12px;
  }

  /* Texto NÃO SAIA AGORA */
  .exit-title,
  .cta-exit,
  .nao-saia, 
  .exit-section h2{
    margin-top: 24px !important;
  }

  /* Força essa section subir mais */
  .exit-section{
    padding-top: 32px !important;
  }

}
  /* não sai agora-sessão */



.lead-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #666 50%),
                    linear-gradient(135deg, #666 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 3px),
                       calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 40px;
}
.lead-form input:focus,
.lead-form select:focus {
  outline: 2px solid rgba(255, 94, 0, 0.185);
  box-shadow: 0 0 0 4px rgba(255, 194, 12, 0.233);
}

.lead-form button:active {
  transform: scale(0.99);
}

.lead-form input,
.lead-form select {
  min-height: 52px;
}



/* ===== MOBILE: texto em cima, formulário embaixo ===== */
@media (max-width: 768px) {

  .lead-section{
    flex-direction: column !important;
    align-items: stretch !important;
    padding-top: 32px;
  }

  .lead-container{
    max-width: 100%;
    width: 100%;
    text-align: left;
  }
.lead-container h1{
    font-size: 34px;
  }
  .lead-form{
    width: 100%;
    max-width: 100%;
    margin-top: 24px;
  }

  .lead-form input,
  .lead-form select,
  .lead-form button{
    width: 100%;
  }
}
