body {
  font-family: var (--font-poppins-regular);
  color: #333;
  margin: 0;
  padding: 0;
}
main{
  padding: 0 150px;
}
#cotizar {
  width: 100%;
  max-width: 1920px;
  margin: 20px auto;
  background: white;
  padding:  0 30px 0px;
  margin-bottom: 100px;
}

.titulo {
  width: 100%;
  font-size: 3.5rem;
  font-weight: 500;
  text-align: center;
  color: var(--color-blue);
  margin-bottom: 25px;
  margin-top: 50px;
}

.form-cotizacion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-cotizacion, #lista-productos, #form-cliente{
    box-shadow: 5px 5px 13px var(--color-blue);
    padding: 20px;
    border-radius: 15px;
}
.selects {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

select, input, textarea {
  padding: 10px;
  border: 1px solid var(--color-blue);
  border-radius: 10px;
  font-size: 1rem;
  flex: 1;
  margin-top: 0;
}
select, input{
  height: 45px;
}

.btn-agregar, .btn-solicitar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: #004080;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 10px 20px;
  cursor: pointer;
  transition: 0.3s;
  font-size: 1.5rem;
}
.btn-agregar{
  width: 30%;
}
.btn-agregar:hover, .btn-solicitar:hover {
  background: #0066cc;
}
.btn-solicitar{
  width: 20%;
}
.btn-solicitar img {
  width: 30px;
}
#lista-productos {
  margin-top: 30px;
}

#tabla-productos {
  width: 100%;
  border-collapse: collapse;
}

#tabla-productos th, #tabla-productos td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: center;
}

#tabla-productos th {
  background: #004080;
  color: white;
}

#form-cliente {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

textarea {
  resize: none;
  height: 80px;
}

.botones {
  display: flex;
  gap: 15px;
  margin-top: 15px;
  justify-content: center;
}
.btn-eliminar{
  background: transparent;
  border: none;
}
 .btn-eliminar img {
    width: 24px;
    height: 24px;
  }

/*=============== BREAKPOINTS ===============*/
@media screen and (min-width: 250px) and (max-width: 767px) {
  main{
      padding: 0;
  }
  .titulo{
    font-size: 1.8rem;
    margin-top: 25px;
  }
  #cotizar{
    padding: 0 15px 0;
    margin-bottom: 50px;
  }
  .btn-agregar{
    font-size: 1rem;
    width: 100%;
  }
  .btn-solicitar{
    width: 80%;
  }
   #tabla-productos,
  #tabla-productos thead,
  #tabla-productos tbody,
  #tabla-productos th,
  #tabla-productos td,
  #tabla-productos tr {
    display: block;
  }

  #tabla-productos thead {
    display: none;
  }

  #tabla-productos tr {
    margin-bottom: 15px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    padding: 10px;
  }

  #tabla-productos td {
    padding-left: 50%;
    position: relative;
    border: none;
    border-bottom: 1px solid #eee;
    text-align: left;
    font-size: 0.9rem;
  }

  #tabla-productos td:last-child {
    border-bottom: none;
  }

  #tabla-productos td::before {
    content: attr(data-label);
    position: absolute;
    left: 10px;
    top: 10px;
    font-weight: bold;
    color: #004080;
    text-transform: capitalize;
  }

  /* Estilo para botón eliminar */
  .btn-eliminar {
    background: none;
    border: none;
    cursor: pointer;
  }
}
@media screen and (min-width: 768px) and (max-width: 1366px) {
}
@media screen and (min-width: 1367px) and (max-width: 1919px) {
}
