body {
    display: flex;
    flex-direction: column;
  }
  /*tìtulo calculadora y resultados*/
  h1 {
    text-align: center;
    font-family: sans-serif;
    color: #732673;
    font-weight: bolder;
  }
  /* formato ingresar datos*/
  section {
    background-color: #ecc6ec;
    border-radius: 20px;
  }
  /* letras ingresar datos y costo*/
  h2 {
    color: #732673;
    font-family: sans-serif;
    font-weight: lighter;
    text-align: justify;
    margin-left: 3%;
  }
  /* formato detalle*/
  .detalle {
    background-color: #4d194d;
    height: 45px;
  }
  /*letra detalles*/
  .letraD {
    color: #ffffff;
    margin-top: 10px;
  }
  /*formato ul para formularios*/
  .datos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
  }
  /*diseño para cada li */
  .input {
    list-style: none;
    margin-bottom: 10px;
    font-family: sans-serif;
    color: #4d194d;
    font-weight: bolder;
    width: 45%; /* Establecer el ancho del elemento li */
    margin-bottom: 20px;
  }
  /*espacio para input*/
  input {
    display: block;
    margin-top: 2%;
    width: 70%;
    height: 30px;
    border-radius: 20px;
    border-color: #ecc6ec;
    text-align: center;
    font-family: sans-serif;
    font-weight: 500;
    font-size: 100%;
  }
  /*botón cotizar*/
  #cotizar {
    background-color: #732673;
    color: #ffffff; 
    padding: 15px 40px; 
    font-size: 16px; 
    font-weight: 600;
    border: none; 
    border-radius: 35px; /* Bordes redondeados */
    cursor: pointer;
    transition: background-color 0.8s ease; 
    margin: 0 auto;
    display: flex;
    align-self: center;
    justify-content: center;
  }
  
  #cotizar:hover {
    background-color: #ac39ac; /* Cambiar el color de fondo al pasar el mouse sobre el botón */
  }
  /* formato contenedor de "detalles"*/
  .detallesC {
    display: flex;
    flex-direction: column;
  }
  /*enunciado de calculos*/
  .resultado-li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    padding: 1%; 
    margin: 1%; 
    font-family: sans-serif;
    font-weight: 600;
    font-size: 100%;
    color: #4d194d;
    border-bottom-style: groove;
  }
  /*resultados de cada formula*/
  .resultado-li p {
    margin: 0; 
    font-family: sans-serif;
    font-weight: 500;
    font-size: 100%;
  }
  
    