/* Estilos base */
body {
    font-family: 'Barlow Condensed', sans-serif;
    margin: 0;
    padding: 0;
}

main {
    display:flex;
    align-items:center;
    justify-content: center;
    width:100%;
    height:100vh;
    background: linear-gradient(to right, #f4fafb, transparent), url(../img/bg-cohete-felicity.png) no-repeat 120% 0;
    background-size: cover, 50%;
    padding-bottom: 50px;
}

.container {
    width: 100%;
    max-width: 700px;
    margin: 20px auto;
    padding:50px;
    height:100%;
    overflow-y: auto;
}

.step {
    margin-bottom: 20px;
    padding: 50px;
    border-radius:20px;
    box-shadow: 0px 19px 27px 2px rgba(0, 0, 0, 0.09);
    min-height: 400px;
    display:flex;
    flex-direction: column;
    gap:20px;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}

.step h1 {
    font-family: 'Caviar Dreams', sans-serif;
    font-size: 25px;
    font-weight:600;
    letter-spacing: -1px;
    color: #5D8AA6;
}

.form_input {
    display: flex;
    flex-direction: column;
    align-items: center;
    width:100%;
    max-width:400px;
    gap:5px;
    margin: 10px auto;
}

.row_input {
    width:100%;
    margin-bottom:20px;
}

.row_input input {
    margin-bottom:0;
}

#question-container p {
    margin-bottom: 5px;
}

#question-container h3 {
    margin-bottom:25px;
    font-size: 22px;
}

label {
    color: #141414;
    font-size:18px;
}

input {
    width:100%;
    margin-bottom: 20px;
}

.logo_felicity {
    display:block;
    margin: 10px auto 25px;
    max-width: 170px;
}

/* .btnFelicity {
    font-size: 14px;
    letter-spacing: 0.05em;
    color: #e8e8e8;
    border: none;
    border-radius: 20px 3px 35px 10px;
    outline: none;
    background: #d96262;
    background-size: 200% 200%;
    box-shadow: 5px 5px 0 #fec200;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px 30px;
    font-family: 'Caviar Dreams', sans-serif;
    font-weight: bold;
}

.btnFelicity:hover {
    animation: gradient 10s ease infinite;
    font-size: 14px;
    box-shadow: 2px 2px 0 #fec200;
} */

@keyframes gradient {
    50% {
        background-position: 100% 0;
    }
}

/* Barra de progreso */
#progress-bar {
    width: 100%;
    background-color: #e0e0e0;
    height: 10px;
    margin-bottom: 20px;
}

#progress-bar-fill {
    height: 100%;
    width: 0%;
    background-color: #5d8aa6;
    /* color de la barra */
    transition: width 0.5s ease;
}

.options {
    width: 100%;
    display:flex;
    flex-direction: column;
    gap:20px;
}

.answer-btn {
    width:100%;
    border: 0;
    padding: 13px;
    border-radius: 7px;
    background-color: #f4fafb;
    border:1px solid #e5ebec;
}

.answer-btn:hover {
    background-color: #09adbf;
    color: #fff;
}


#result-title {
    font-size: 1.7rem;
    text-align: center;
    margin-bottom: 3px;
    color: #5D8AA6;
    font-family: 'Caviar Dreams', sans-serif;
  }

  #result-title span {
    color:#09adbf;
    font-weight: 800;
  }

  #titulo_bajada {
    font-size: 18px;
    text-align: center;
    margin-bottom: 35px;
    font-weight: 300;
    color: #5d8aa6;
  }

  #subtitulo {
    font-size:16px;
    text-align:center;
    color: #d96262;
    margin-bottom:20px;
  }
  
  #result-text, #result-text2 {
    font-size: .9rem;
    text-align: center;
    margin: 0 auto 20px auto;
    max-width: 400px;
  }

  #result-text2 p:last-of-type {
    font-weight:500;
  }

  .list_detalles {
    text-align:left;
  }
  
  #result-image {
    display: block;
    margin: 0 auto 20px auto;
    max-height: 150px;
    /* Ajusta según tu imagen */
  }

  .btnFelicity {
    font-size: 14px;
    letter-spacing: 0.05em;
    color: #e8e8e8;
    border: none;
    border-radius: 20px 3px 35px 10px;
    outline: none;
    background: #d96262;
    background-size: 200% 200%;
    box-shadow: 5px 5px 0 #fec200;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px 30px;
    font-family: 'Caviar Dreams', sans-serif;
    font-weight:bold;
}

.btnFelicity i {
    opacity: 0;
    font-size:0px;
    transition: all .4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
    
.btnFelicity:hover {
    animation: gradient 10s ease infinite;
    font-size: 14px;
    box-shadow: 2px 2px 0 #fec200;
}

.btnFelicity:hover i {
    opacity: 1;
    font-size:14px;
    margin-left: 10px;
}

.btnFelicity a {
    color: #fff;
    text-decoration: none;
    position: relative;
}

.btnFelicity.btnAlt {
    border-radius: 50px;
    background: linear-gradient(45deg, #0bbc19, #08d107);
    box-shadow: none;
}

.btnes_flex {
    display:flex;
    align-items:center;
    justify-content: center;
    gap:20px;
}

.flex_copy {
    justify-content: center;
    margin-top:50px;
    text-align:center;
    font-size: 13px;
}

@media (max-width: 767px) {
    .container {
        padding: 20px;
    }

    .btnes_flex {
        flex-direction: column;
    }
}