/* ====== FORMULARIO DE CONTACTO - RASTREO.PRO ====== */

.contact-form {
  max-width: 600px;
  margin: 40px auto;
  padding: 25px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  font-family: "Inter", Arial, sans-serif;
}

.contact-form .form-row {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
}

.contact-form label {
  font-weight: 600;
  margin-bottom: 6px;
  color: #003366; /* azul corporativo tech */
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  border: 1px solid #c9d2df;
  border-radius: 8px;
  background: #f7f9fc;
  transition: all 0.25s ease;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0066cc;
  background: #ffffff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(0,102,204,0.18);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

/* Botón */
.contact-form button {
  width: 100%;
  padding: 14px;
  background: #0066cc;
  color: white;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.15s ease;
}

.contact-form button:hover {
  background: #004a99;
}

.contact-form button:active {
  transform: scale(0.97);
}

/* Títulos */
.contact-form-title {
  text-align: center;
  margin-bottom: 20px;
}

.contact-form-title h1 {
  font-size: 28px;
  color: #003366;
  margin: 0;
}

.contact-form-title p {
  color: #44546a;
  font-size: 16px;
}

.contact-form input,
.contact-form textarea {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
}


.contact-form .form-row {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
}

/* ===== FILA DE 2 COLUMNAS (EMAIL + TELÉFONO) ===== */
.contact-form .form-row-2col {
  display: flex;
  flex-direction: row;   /* 👈 Forzamos horizontal en desktop */
  gap: 20px;
}

.contact-form .form-row-2col .col {
  flex: 1;
  display: flex;
  flex-direction: column;
}



/* Mobile: cada una en una línea */
@media (max-width: 700px) {
  .contact-form .form-row-2col {
		flex-direction: column;
  }
  .form-row-2col {
		flex-direction: column;
  }
}

/* Responsivo */
@media (max-width: 600px) {
  .contact-form {
    margin: 20px;
    padding: 20px;
  }

  .contact-form-title h1 {
    font-size: 24px;
  }
}
