.section-title {
    color: #ffb6b8;
    border-bottom: 2px solid #ffb6b8;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

.section-subtitle {
    margin-top: 40px;
}

.label-info {
    font-weight: normal;
    color: #444;
}

h1 {
   color: #ffb6b8; 
   font-size: 15px;
}

h2 {
    font-size: 14px;
}

input, select {
    border: 1.5px solid #ffb6b8;
    border-radius: 6px;
    padding: 10px;
    transition: 0.3s;
    background-color: white;
}

input:focus,
select:focus {
    border-color: #ffb6b8;
    box-shadow: 0 0 5px rgba(232, 62, 140, 0.3);
}

.btn-primary {
    background-color: #ffb6b8;
    color: white;
}

.btn-primary:hover {
    background-color: #ffb6b8;
}

.btn-secondary {
    background-color: #000000;
    color: white;
}

.section-res {
    margin-top: 5px;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: bold;
    color: #222;
}

.termo-box {
    margin-top: 10px;
    
}

.termo-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    align-items: top;
}

.termo-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #ff5a5a;
}

.termo-item label {
    font-size: 12px;
    line-height: 1.3;
    font-weight: normal;
    color: #333;
    width: 100%;
}

label {
    font-size: 15px;
}

a {
    width: 185px;
    padding: 10px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    text-align: center;
    font-size: 12px;
    font-weight: bold;
    text-decoration: none; 
}



@media (min-width: 1024px) {

  h1 {
        font-size: 25px;
  }

  label {
    font-size: 15px;  
  }

  .termo-item label {
    font-size: 15px;
  }

  .termo-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
  }

  a {
    width: 120px;
    font-size: 16px;
  }

  /* 👇 adiciona isso */
  input,
  select,
  textarea {
      font-size: 14px;
  }
}

/* 🔥 Força tamanho seguro no mobile */
@media (max-width: 1023px) {
  input,
  select,
  textarea {
    font-size: 16px !important;
  }
}

input:focus,
select:focus,
textarea:focus {
  transform: none !important;
}