/* Contenedor del menú radial */
img.iconoPrincipal {
    width: 60px;
}

.gio-radial-menu {
    position: fixed;
    width: 80px;
    height: 98px;
    margin: 0px auto;
    right: 10px;
    bottom: 20%;
    z-index: 9999;
}

p.textoBtn {
    position: absolute;
    bottom: -40px;
    color: #671c34;
    font-size: 0.8em;
}

/* Botón principal (el icono del que salen las opciones) */
.gio-main-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ff000000;
}

.gio-main-btn:hover {
  transform: translate(-50%, -50%) scale(1.05);
}

.gio-main-icon {
  font-size: 0px;
}

/* Botones de opción (los que salen alrededor) */
.gio-option {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: #11182700;
    color: #f9fafb;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 16px rgba(0,0,0,0.4);
    transform: translate(-50%, -50%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease,
    opacity 0.25s ease;
}

/* Pequeño tooltip opcional al pasar el mouse */
.gio-option::after {
  content: attr(data-label);
  position: absolute;
  bottom: -26px;
  left: 50%;
  transform: translateX(-50%);
  background: #000000cc;
  color: #ffffff;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.gio-option:hover::after {
  opacity: 1;
}

img.imgSoporte {
    width: 85%;
}

/* Cuando el menú está "abierto", movemos las opciones alrededor en círculo */
.gio-radial-menu.open .gio-option {
  opacity: 1;
  pointer-events: auto;
}

/* Posiciones tipo “columna diagonal” a la izquierda del botón grande */
.gio-radial-menu.open .gio-opt-1 {
    transform: translate(-50%, -50%) translate(-50px, -110px);
}

.gio-radial-menu.open .gio-opt-2 {
    transform: translate(-50%, -50%) translate(-105px, -51px);
}

.gio-radial-menu.open .gio-opt-3 {
    transform: translate(-60%, -50%) translate(-95px, 27px);
}

.gio-radial-menu.open .gio-opt-4 {
    transform: translate(-50%, -50%) translate(-50px, 94px);
}

/* Efecto hover en cada opción */
.gio-option:hover {
  transform: translate(-50%, -50%) scale(1.05);
}

/*banner de mesa de soporte*/
div#contactPreview {
    position: absolute;
    right: 25vh;
    width: 400px;
    bottom: 0px;
}

img.bannerMesaSoporte {
    width: 100%;
}

/*estilos css de lupita*/
img.chatbotButton-lupitaLogo {
    width: 40px;
}

.chatbot-container {
    position: absolute;
    right: 15vh;
    bottom: 5%;
    width: 450px;
}

img.initForm-banner {
    width: 100%;
}

button.chatbotButton {
    border: none;
    background-color: #ffffff;
    border-radius: 100px;
}

/*
.chatbot-body[data-v-abb5af06] {
    flex: 1;
    overflow-y: auto;
    border-radius: 0 0 10px 10px;
}*/

div#chat {
    position: absolute;
    bottom: 6px;
    left: 0px;
    height: auto;
    width: 100%;
    /* z-index: 2; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.chatbot-header[data-v-abb5af06] {
    background-color: #671c34;
    color: #fff;
    height: 25px;
    padding: 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px 10px 0 0;
}

.chatbo-logoSsf[data-v-abb5af06] {
    height: 38px;
}

.initForm form[data-v-907e3663] {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    padding: 10px 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    gap: 8px;
    color: #272833;
}

.initForm-form-container[data-v-907e3663] {
    flex: 1 1 calc(100% - 120px);
    height: 100%;
}

.initForm[data-v-907e3663] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: start;
    background-color: #f9f9f9;
    height: 100%;
}

.initForm[data-v-907e3663] span[data-v-907e3663] {
    font-size: 14px;
}

.initForm label[data-v-907e3663] {
    font-size: 14px;
    margin-bottom: 2.5px;
    display: block;
}

.input-text[data-v-907e3663] {
    box-sizing: border-box;
    padding: 5px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
}

.fa-solid, .fas {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.chatbot-close-button[data-v-abb5af06] {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.7rem;
    cursor: pointer;
    margin-right: 18px;
}

/*fin de estilos css de lupita*/

/*estilos mesa de servicios*/
.button:disabled {
    width: 45px !important;
    height: 45px !important;
}
/* fin de estilos mesa de servicios*/


/* Versión más pequeña en móviles, si quieres */
@media (max-width: 480px) {
  .gio-radial-menu {
    width: 64px;
    height: 64px;
  }

  .gio-main-btn {
    width: 56px;
    height: 56px;
  }

  .gio-option {
    width: 38px;
    height: 38px;
  }

  .gio-radial-menu.open .gio-opt-1 {
    transform: translate(-50%, -50%) translate(0, -70px);
  }
  .gio-radial-menu.open .gio-opt-2 {
    transform: translate(-50%, -50%) translate(70px, 0);
  }
  .gio-radial-menu.open .gio-opt-3 {
    transform: translate(-50%, -50%) translate(0, 70px);
  }
  .gio-radial-menu.open .gio-opt-4 {
    transform: translate(-50%, -50%) translate(-70px, 0);
  }
}
