/* Estilo de la burbuja flotante */
.support {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.support-bubble {
    width: 60px;
    height: 60px;
    background: #ffcc00;
    color: black;
    font-size: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease-in-out;
}

.support-bubble:hover {
    transform: scale(1.1);
}

/* Estilo del chat flotante */
.chat-box {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 250px;
    background-color: #1d2b2d;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.chat-header {
    background: #ffcc00;
    color: black;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}


.chat-header button {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 18px;
}
.chat-body {
    display: flex;
    flex-direction: column;
    padding: 15px;
    text-align: center;
    gap: 20px;
}

.chat-body p {
    margin-bottom: 10px;
    font-size: 16px;
    color: aqua;
    font-weight: bolder;
}