.seccion-cotizar {
  background-color: #283138;
  padding: 60px 20px;
  padding-top: 160px;
}

.cotizar-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.cotizar-imagen img {
  max-width: 500px;
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cotizar-contenido {
  flex: 1;
  min-width: 320px;
  text-align: center;
}

.pasos-cotizar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
}

.paso {
  max-width: 200px;
}

.numero {
  width: 30px;
  height: 30px;
  line-height: 70px;
  border-radius: 50%;
  background-color: #0073e6;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.paso i {
  font-size: 50px;
  color: #0073e6;
  margin-bottom: 10px;
}

.paso p {
  font-size: 1rem;
  color: #fff;
}

.formulario-cotizar {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  padding: 30px 40px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.formulario-cotizar .campo {
  margin-bottom: 15px;
}

.formulario-cotizar label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}

.formulario-cotizar input,
.formulario-cotizar textarea {
  width: 93%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.cotizar-contenido h1 {
  color: #fff;
}

.btn-enviar {
  width: 100%;
  background-color: #0073e6;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 12px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-enviar:hover {
  background-color: #005bb5;
}

@media (max-width: 768px) {
  .cotizar-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .cotizar-contenido {
    width: 100%;
  }

  .formulario-cotizar {
    padding: 25px 20px;
  }
}
