* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

/* Bot��n Flotante */
.ws-btn-flotante {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    top:78%;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: transform 0.2s ease;
}

.ws-btn-flotante:hover {
    transform: scale(1.08);
}

/* Contenedor Principal del Men�� */
.ws-box {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 380px;
    max-width: 90%;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    z-index: 999;
    display: none;
    flex-direction: column;
}

.ws-box.active {
    display: flex;
}

/* Encabezado Verde */
.ws-header {
    background-color: #1eb84c;
    color: #fff;
    padding: 20px;
    text-align: center;
}

.ws-header-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 8px;
}

.ws-header-title i {
    font-size: 28px;
}

.ws-header-title h2 {
    font-size: 18px;
    font-weight: bold;
}

.ws-info {
    font-size: 11px;
    margin-bottom: 3px;
    opacity: 0.95;
}

.ws-banner-btn {
    display: block;
    background-color: #ffffff;
    color: #000;
    text-decoration: none;
    padding: 10px 15px;
    margin-top: 15px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 16px;
}

.ws-banner-btn span {
    text-decoration: underline;
}

/* Cuerpo */
.ws-body {
    padding: 15px;
    background-color: #f9f9f9;
}

.ws-subtitulo {
    font-size: 12px;
    color: #888;
    margin-bottom: 12px;
}

/* Tarjetas de Opciones */
.ws-card {
    display: flex;
    align-items: center;
    background-color: #f2f4f5;
    text-decoration: none;
    padding: 10px 12px;
    border-radius: 6px;
    margin-bottom: 10px;
    border-left: 4px solid #1eb84c;
    transition: background 0.2s ease;
}

.ws-card:hover {
    background-color: #e6e9eb;
}

.ws-card-left {
    margin-right: 12px;
}

.ws-main-icon {
    font-size: 38px;
    color: #25d366;
}

.ws-card-content {
    flex-grow: 1;
}

.ws-card-content h4 {
    font-size: 13px;
    color: #4a4a4a;
    font-weight: bold;
    line-height: 1.2;
}

.ws-card-content span {
    font-size: 11px;
    color: #888;
}

.ws-card-right {
    margin-left: 8px;
}

.ws-sub-icon {
    font-size: 18px;
    color: #25d366;
}