/* === FORMULARIO DE CONTACTO GUZMÁN === */

.contacto-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  background: #fff;
  color: #333;
  font-family: Arial, sans-serif;
}

.info-tienda {
  flex: 1;
}

.info-tienda h3 {
  margin-bottom: 10px;
  color: #FF6900;
}

.formulario-contacto {
  flex: 2;
}

.formulario-contacto h3 {
  margin-bottom: 15px;
  color: #333;
}

.formulario-contacto form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

label {
  font-weight: bold;
  margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
input[type="file"],
textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  width: 100%;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

button {
  background-color: #FF6900;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background-color: #e05a00;
}

/* Responsive */
@media (max-width: 768px) {
  .contacto-container {
    flex-direction: column;
  }
}
