.section-title {
    color: #ffb6b8;
    border-bottom: 2px solid #ffb6b8;
    padding-bottom: 5px;
    margin-bottom: 20px;
    
}

.section-subtitle {
    color: #ffb6b8;
    border-bottom: 2px solid #ffb6b8;
    margin-top: 30px;
    margin-bottom: 15px;
}

label {
    font-size: 15px;
}

h1 {
   color: #ffb6b8; 
}

input {
    border: 1.5px solid #ffb6b8;
    border-radius: 6px;
    padding: 10px;
    transition: 0.3s;
}

input:focus {
    border-color: #ffb6b8;
    box-shadow: 0 0 5px rgba(232, 62, 140, 0.3);
}

select {
    border: 1.5px solid #ffb6b8;
    border-radius: 6px;
    padding: 10px;
    background-color: white;
    transition: 0.3s;
}

select:focus {
    border-color: #ffb6b8;
    box-shadow: 0 0 5px rgba(232, 62, 140, 0.3);
}



.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.form-group.small {
    flex: 0.4;
}

.btn-primary {
    background-color: #ffb6b8;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #ffb6b8;
}

.btn-secondary {
    background-color: #000000;
    color: white;
}

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: 1023px) {
  label {
    font-size: 15px;  
     
  }

   a {
     width: 120px;
     font-size: 16px;
    
   }

}

/* ========================================= */
/* 🔥 EVITA ZOOM AUTOMÁTICO NO iOS */
/* ========================================= 

input,
select,
textarea {
  font-size: 16px;
}

 Se quiser menor só no desktop 
@media (min-width: 1024px) {
  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;
}

*/