/* ===== ZONA DE CLIENTES ===== */
.zona-clientes {
  width: 90%;
  margin: 40px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 25px;
}

.contenedor {
  flex: 1;
  min-width: 300px;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contenedor:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.contenedor h2 {
  color: #004aad;
  margin-bottom: 15px;
  font-size: 1.4em;
  text-align: center;
  border-bottom: 2px solid #004aad;
  padding-bottom: 8px;
}

/* ===== Listas ===== */
ul {
  list-style: none;
  padding-left: 0;
}

ul li {
  margin-bottom: 8px;
}

/* ===== Pago ===== */
.tarjeta-pago {
  text-align: center;
}

.img-pago {
  width: 250px;
  margin-bottom: 10px;
  border-radius: 10px;
}

/* ===== Formulario ===== */
.form-buzon {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.campo {
  display: flex;
  flex-direction: column;
}

.campo label {
  font-weight: bold;
  margin-bottom: 5px;
}

.campo input, 
.campo select, 
.campo textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1em;
}

.btn-enviar {
  background-color: #004aad;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1em;
  transition: background 0.3s;
}

.btn-enviar:hover {
  background-color: #003080;
}

/* ===== Responsivo ===== */
@media (max-width: 1024px) {
  .zona-clientes {
    flex-direction: column;
    align-items: center;
  }

  .contenedor {
    width: 90%;
  }
}
/* ===== Mejor espaciado entre texto de los contenedores ===== */
.contenedor ul li {
  margin-bottom: 12px;
  line-height: 1.5;
}

.contenedor p {
  margin-bottom: 12px;
  line-height: 1.6;
}

.tarjeta-pago p {
  margin-top: 10px;
  font-size: 0.95rem;
}
.formulario-buzon {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 80%;
    margin: 0 auto;
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.formulario-buzon label {
    font-weight: bold;
}

.formulario-buzon input,
.formulario-buzon select,
.formulario-buzon textarea {
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.formulario-buzon button {
    background-color: #007bff;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
}

.formulario-buzon button:hover {
    background-color: #0056b3;
}

