
.burbuja-contenedor {
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 40px;
    z-index: 9999;
    flex-direction: row;
    justify-content: center;
    max-width: 100%;
    margin: 0 auto;
    position: relative; /* ya no fijo */
}



.burbuja-circulo {
    position: relative;
    width: 110px;
    height: 110px;
    background-color: #003087;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    text-align: center;
    color: #ffffff;
    font-size: 23px;
    border: 3px solid #A9E5F1;
}

    .burbuja-circulo::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 130px;
        height: 130px;
        border: 2px dashed #A9E5F1;
        border-radius: 50%;
        transform: translate(-50%, -50%);
    }

.burbuja-textos {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.burbuja-pregunta {
    width: 200px;
    height: 30px;
    background-color: #C5CFDA;
    border: 2px solid white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #1a1a1a;
    transform: translateX(-20px);
}

.burbuja-boton {
    width: 280px;
    height: 50px;
    background-color: #003087;
    border-radius: 30px;
    border: 2px solid #A9E5F1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    font-weight: bold;
    color: #ffffff;
    cursor: pointer;
    transition: background-color 0.3s ease;
    transform: translateX(-20px);
}

    .burbuja-boton:hover {
        background-color: #a0c4e3;
    }

/* VERSIÓN MÓVIL (igual a tu imagen) - SOLO ESTILOS */
@media (max-width: 768px) {
    .burbuja-contenedor {
        /*margin-top: 30px;
        padding: 20px;*/
        margin-bottom: 40px; /* si está pegado al borde inferior */
        transform: translateY(-30px); /* sube todo visualmente */
    }

    .burbuja-circulo {
        width: 90px;
        height: 90px;
        font-size: 15px;
        border-width: 2px;
        display: flex;
        text-align: center;
        border-radius: 50%;
        justify-content: center;
        align-items: center;
        font-weight: bold;
        transform: translateX(10px);
    }

        .burbuja-circulo::after {
            width: 105px;
            height: 105px;
            top: -10px;
            left: -10px;
            /*border-width: 1.5px;*/
            transform: none;
        }

    .burbuja-pregunta {
        margin: 0 auto;
        font-size: 11px;
        padding: 3px 8px;
        max-width: 160px;
        height: auto;
        line-height: 1.2;
        text-align: center;
    }

    .burbuja-boton {
        margin: 0 auto;
        display: inline-block;
        width: auto;
        min-width: 200px; /* Puedes ajustar este valor */
        max-width: 200px; /* Limita que no se haga gigante */
        padding: 6px 20px;
        font-size: 18px;
        text-align: center;
        border-radius: 20px;
    }
}
