.encuesta-widget {
    background-color: #a02142;
    color:#fff;
    padding: 0px 10px;
    border:4px solid #621132;
    border-radius: 0px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%; /* Se aumenta el ancho para que quepan las descripciones */
    margin-bottom:20px;
    min-height: 150px;
}

.paso {
    display: none; /* Oculta todos los pasos por defecto (excepto el primero en HTML) */
    animation: fadeIn 0.5s ease-out;
}

/* Estilos de la pregunta */
.paso span {
    color: white;
    margin-bottom: 25px;
    font-size: .9em;
    font-weight: 300;
}

/* Contenedores de botones */
.opciones-botones {
    display: flex;
    justify-content: space-around;
    gap: 10px;
}

.opciones-botones-columna {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#div2 button, #div3 button, #div4 button, #div5 button{
    color:white !important;
    text-transform: none;
    letter-spacing: 0em;
    line-height: 1em;
    font-weight: 400;
    font-size:.7em;
      color: white !important;
      margin: 5px 5px !important;
      border-radius: 3em !important;
      letter-spacing: 0em !important;
      border-radius: 1em !important;
      letter-spacing: 0em !important;
      background-color: #eae2d6;
      color: #611232 !important;
      box-shadow: inset 0 0 0 0px #611232;
      -webkit-appearance: button;
    height: 2em;
    padding: 0 0.5em 0 0.5em;
}


#div4 button{

margin: 15px 15px !important;
padding: 0 2em 0 2em;
}



/* Estilos de los botones */
#div1 button {
    background-color: #8f2c49;
    color: #333;
    /*border: 1px solid white;*/
    border-radius: 8px;
    padding: 5px 5px;
    font-size: 2em;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
    flex-grow: 1; /* Para botones en fila */
    text-align: center;
    height: 2.2em;
    letter-spacing: 0em;
    line-height: 0em;
    box-shadow:none;
}

#div1 button:hover {
transform: scale(1.2);
}
#div2 button:hover,#div3 button:hover, #div4 button:hover, #div5 button:hover{
    background-color: #8f2c49;
    color: white !important;
    border:1px solid white;
}

.emoji-text{
font-size:.4em !important;
    text-transform: none;
}
.opciones-botones-columna button {
    flex-grow: 0; /* Anula flex-grow para botones en columna */
    width: 100%;
}

.paso button:hover {
    background-color: #d8e0e6;
}

.paso button:active {
    transform: scale(0.98);
}

/* Estilos de los emojis */
.emoji {
    font-size: 2em;
    display: block;
    margin-bottom: 5px;
}

/* Estilos para el mensaje final */
.final {
    padding: 40px 20px;
    background-color: #8f2c49; Fondo mas suave para el agradecimiento */
    border: 1px solid #c9e6d8;
    border-radius: 10px;
    color:white;
}

.emoji-final {
    font-size: 3.5em;
    display: block;
    margin-bottom: 15px;
}

.final h2 {
    color: #008040; /* Color distintivo para el título final */
}

/* Animación de entrada */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}