/* GAMO Consulting - Estilo del formulario de contacto minimalista */

#contacto form.gamo-form-min {
  background: transparent;
  padding: 0;
  border-radius: 0;
  color: #ffffff;
  font-family: Arial, sans-serif;
}

.gamo-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

@media (max-width: 640px) {
  .gamo-form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.gamo-form-field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 15px;
  color: #ffffff;
}

.gamo-form-field input[type="text"],
.gamo-form-field input[type="email"],
.gamo-form-field input[type="tel"],
.gamo-form-field textarea,
.gamo-phone-row select {
  box-sizing: border-box;
  width: 100%;
  padding: 12px 14px;
  background: #16233a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: #ffffff;
  font-size: 15px;
  font-family: inherit;
}

.gamo-form-field input::placeholder,
.gamo-form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.gamo-form-field input:focus,
.gamo-form-field textarea:focus,
.gamo-phone-row select:focus {
  outline: none;
  border-color: #00c853;
}

.gamo-phone-row {
  display: flex;
  gap: 10px;
}

.gamo-phone-row select {
  flex: 0 0 130px;
  cursor: pointer;
}

.gamo-phone-row input {
  flex: 1;
}

.gamo-form-field-full {
  margin-bottom: 24px;
}

.gamo-form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.gamo-form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: #00c853;
  color: #ffffff;
  padding: 15px 28px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s ease;
}

.gamo-form-submit:hover {
  background: #00b34a;
}
