﻿@charset "UTF-8";
* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
  background: #F5F8FC;
  color: #212529;
}

button {
  font-family: inherit;
}

.EstiloContenedorSairaIA {
  width: 100%;
  height: 100vh;
  display: flex;
  overflow: hidden;
  background: #F5F8FC;
}
.EstiloContenedorSairaIA.EstiloBarraOculta .EstiloBarraLateralSairaIA {
  width: 0;
  min-width: 0;
  padding: 0;
  border: none;
  overflow: hidden;
}
.EstiloContenedorSairaIA.EstiloBarraOculta .EstiloBotónMostrarBarra {
  display: flex;
}

.EstiloBarraLateralSairaIA {
  width: 270px;
  min-width: 270px;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 16px 12px;
  background: #12125C;
  overflow-y: auto;
  transition: width 0.2s ease, min-width 0.2s ease, padding 0.2s ease;
}

.EstiloEncabezadoBarraLateral {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.EstiloBotónOcultarBarra,
.EstiloBotónMostrarBarra {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  font-size: 15px;
  transition: background 0.15s ease;
}
.EstiloBotónOcultarBarra:hover,
.EstiloBotónMostrarBarra:hover {
  background: rgba(255, 255, 255, 0.16);
}

.EstiloBotónMostrarBarra {
  display: none;
  background: #F0F3F8;
  color: #12125C;
}

.EstiloBotónNuevaConversación {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, #4EC3E4, #2FA9CC);
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  box-shadow: 0 5px 14px rgba(78, 195, 228, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.EstiloBotónNuevaConversación span {
  font-size: 15px;
}
.EstiloBotónNuevaConversación:hover {
  transform: translateY(-1px);
  box-shadow: 0 7px 18px rgba(78, 195, 228, 0.32);
}

.EstiloListaConversaciones {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
  margin-top: 4px;
}

.EstiloItemConversación {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 10px;
  transition: background 0.15s ease;
}
.EstiloItemConversación:hover {
  background: rgba(78, 195, 228, 0.14);
}
.EstiloItemConversación:hover .EstiloBotónEliminarConversación {
  opacity: 1;
  pointer-events: auto;
}
.EstiloItemConversación.EstiloItemConversaciónActivo {
  background: rgba(78, 195, 228, 0.22);
}
.EstiloItemConversación.EstiloItemConversaciónActivo .EstiloNombreItemConversación {
  color: #FFFFFF;
  font-weight: 600;
}

.EstiloNombreItemConversación {
  flex: 1;
  min-width: 0;
  display: block;
  padding: 10px 8px 10px 12px;
  color: #CBD3E8;
  font-size: 13px;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
}
.EstiloNombreItemConversación:hover {
  color: #FFFFFF;
}

.EstiloBotónEliminarConversación {
  opacity: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  margin-right: 6px;
  border-radius: 8px;
  color: #E8B7B2;
  font-size: 13px;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.EstiloBotónEliminarConversación:hover {
  background: rgba(228, 87, 76, 0.22);
  color: #E4574C;
}

.EstiloPiePerfilBarraLateral {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  padding: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.EstiloAvatarPerfil {
  width: 36px;
  height: 36px;
  min-width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #4EC3E4, #FEA321);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 14px;
}

.EstiloDatosPerfil {
  flex: 1;
  min-width: 0;
}

.EstiloNombrePerfil {
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.EstiloCorreoPerfil {
  color: #9AA6C4;
  font-size: 11px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.EstiloBotónCerrarSesión {
  width: 32px;
  height: 32px;
  min-width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  color: #CBD3E8;
  text-decoration: none;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.EstiloBotónCerrarSesión:hover {
  background: rgba(228, 87, 76, 0.22);
  color: #E4574C;
}

.EstiloPanelPrincipalSairaIA {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #FFFFFF;
}

.EstiloEncabezadoSairaIA {
  width: 100%;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 30px;
  background: #FFFFFF;
  border-bottom: 1px solid #E3E8EF;
  box-shadow: 0 2px 10px rgba(18, 18, 92, 0.04);
  z-index: 10;
}

.EstiloMarcaSairaIA {
  display: flex;
  align-items: center;
  gap: 13px;
}

.EstiloLogoSairaIA {
  width: 46px;
  height: 46px;
  display: block;
  border-radius: 14px;
  object-fit: contain;
  background: linear-gradient(135deg, #4EC3E4 0%, #FEA321 100%);
  padding: 6px;
  box-shadow: 0 6px 18px rgba(78, 195, 228, 0.28);
}

.EstiloTítuloSairaIA {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.2;
  color: #12125C;
  max-width: 420px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.EstiloSubtítuloSairaIA {
  margin-top: 3px;
  font-size: 12px;
  color: #7B8494;
}

.EstiloEstadoSairaIA {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  border-radius: 20px;
  background: #F0FAF5;
  color: #198754;
  font-size: 12px;
  font-weight: 500;
}

.EstiloPuntoEstado {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 50%;
  background: #20C997;
  box-shadow: 0 0 0 4px rgba(32, 201, 151, 0.1);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}
.EstiloPuntoEstado.EstiloPuntoEstadoError {
  background: #E4574C;
  box-shadow: 0 0 0 4px rgba(228, 87, 76, 0.14);
}

.EstiloChatSairaIA {
  flex: 1;
  min-height: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: radial-gradient(circle at 10% 0%, rgba(78, 195, 228, 0.06), transparent 30%), #F5F8FC;
}

.EstiloContenedorMensajes {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 35px 25px 30px;
  flex: 1;
  overflow-y: auto;
  scroll-behavior: smooth;
}
.EstiloContenedorMensajes::-webkit-scrollbar {
  width: 6px;
}
.EstiloContenedorMensajes::-webkit-scrollbar-track {
  background: transparent;
}
.EstiloContenedorMensajes::-webkit-scrollbar-thumb {
  background: #D5DCE6;
  border-radius: 10px;
}
.EstiloContenedorMensajes::-webkit-scrollbar-thumb:hover {
  background: #BCC6D4;
}

.EstiloMensaje {
  width: 100%;
  display: flex;
  margin-bottom: 24px;
  animation: AparecerMensaje 0.2s ease-out;
}

@keyframes AparecerMensaje {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.EstiloMensajeSaira {
  justify-content: flex-start;
  gap: 11px;
}

.EstiloAvatarSaira {
  width: 37px;
  height: 37px;
  min-width: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #4EC3E4, #2FA9CC);
  box-shadow: 0 5px 15px rgba(78, 195, 228, 0.22);
  overflow: hidden;
}
.EstiloAvatarSaira img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.EstiloBurbujaSaira {
  max-width: 720px;
  padding: 15px 18px;
  background: #FFFFFF;
  border: 1px solid #E3E8EF;
  border-radius: 5px 17px 17px 17px;
  box-shadow: 0 4px 16px rgba(18, 18, 92, 0.05);
}

.EstiloNombreSaira {
  margin-bottom: 7px;
  font-size: 12px;
  font-weight: 700;
  color: #2FA9CC;
}

.EstiloTextoMensaje {
  font-size: 14px;
  line-height: 1.65;
  color: #3F4A59;
}
.EstiloTextoMensaje p {
  margin: 0 0 9px;
}
.EstiloTextoMensaje p:last-child {
  margin-bottom: 0;
}
.EstiloTextoMensaje ul {
  margin: 6px 0;
  padding-left: 20px;
}
.EstiloTextoMensaje strong {
  color: #12125C;
  font-weight: 700;
}

.EstiloMensajeUsuario {
  justify-content: flex-end;
  gap: 11px;
}

.EstiloAvatarUsuario {
  width: 37px;
  height: 37px;
  min-width: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #E8EDF4;
  color: #586579;
  font-size: 15px;
}

.EstiloBurbujaUsuario {
  max-width: 650px;
  padding: 13px 17px;
  background: linear-gradient(135deg, #12125C, #23237C);
  color: #FFFFFF;
  border-radius: 17px 5px 17px 17px;
  box-shadow: 0 5px 16px rgba(18, 18, 92, 0.2);
}
.EstiloBurbujaUsuario .EstiloTextoMensaje {
  color: #FFFFFF;
}

.EstiloSugerencias {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-left: 48px;
  margin-bottom: 30px;
}

.EstiloBotónSugerencia {
  display: inline-flex;
  align-items: center;
  border: 1px solid #E3E8EF;
  background: #FFFFFF;
  color: #536174;
  border-radius: 12px;
  padding: 10px 13px;
  font-family: inherit;
  font-size: 12px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
.EstiloBotónSugerencia span {
  margin-right: 6px;
  font-size: 13px;
}
.EstiloBotónSugerencia:hover {
  border-color: #4EC3E4;
  background: #FBFDFF;
  box-shadow: 0 5px 15px rgba(78, 195, 228, 0.12);
  transform: translateY(-1px);
}
.EstiloBotónSugerencia:active {
  transform: translateY(0);
}

.EstiloIndicadorPensando {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 20px;
}
.EstiloIndicadorPensando span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4EC3E4;
  animation: SairaPensando 1.2s infinite ease-in-out;
}
.EstiloIndicadorPensando span:nth-child(1) {
  animation-delay: 0s;
}
.EstiloIndicadorPensando span:nth-child(2) {
  animation-delay: 0.15s;
}
.EstiloIndicadorPensando span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes SairaPensando {
  0%, 60%, 100% {
    opacity: 0.35;
    transform: translateY(0);
  }
  30% {
    opacity: 1;
    transform: translateY(-3px);
  }
}
.EstiloPieSairaIA {
  width: 100%;
  padding: 14px 25px 17px;
  background: #FFFFFF;
  border-top: 1px solid #E3E8EF;
  z-index: 5;
}

.EstiloContenedorInput {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  padding: 7px 8px 7px 16px;
  background: #F5F8FC;
  border: 1px solid #E3E8EF;
  border-radius: 20px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.EstiloContenedorInput:focus-within {
  background: #FFFFFF;
  border-color: #4EC3E4;
  box-shadow: 0 0 0 4px rgba(78, 195, 228, 0.12);
}

.EstiloInputSaira {
  flex: 1;
  width: 100%;
  max-height: 180px;
  min-height: 42px;
  padding: 10px 0;
  border: none !important;
  outline: none !important;
  background: transparent !important;
  color: #283444;
  font-family: inherit;
  font-size: 14px;
  box-shadow: none !important;
  resize: none;
  overflow-y: auto;
}
.EstiloInputSaira::placeholder {
  color: #9AA5B5;
}
.EstiloInputSaira:disabled {
  opacity: 0.6;
}

.EstiloBotónMicrófono,
.EstiloBotónEnviar,
.EstiloBotónDetener {
  width: 42px;
  height: 42px;
  min-width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  border-radius: 13px;
  font-size: 17px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.EstiloBotónMicrófono:hover,
.EstiloBotónEnviar:hover,
.EstiloBotónDetener:hover {
  transform: translateY(-1px);
}
.EstiloBotónMicrófono:active,
.EstiloBotónEnviar:active,
.EstiloBotónDetener:active {
  transform: translateY(0);
}

.EstiloBotónMicrófono {
  background: #EDF1F7;
  color: #586579;
}
.EstiloBotónMicrófono.EstiloBotónMicrófonoActivo {
  background: #E4574C;
  color: #FFFFFF;
  animation: SairaPensando 1s infinite ease-in-out;
}

.EstiloBotónEnviar {
  background: linear-gradient(135deg, #4EC3E4, #FEA321);
  color: #FFFFFF;
  box-shadow: 0 5px 14px rgba(78, 195, 228, 0.28);
}
.EstiloBotónEnviar:hover {
  box-shadow: 0 7px 18px rgba(78, 195, 228, 0.34);
}

.EstiloBotónDetener {
  background: #E4574C;
  color: #FFFFFF;
  box-shadow: 0 5px 14px rgba(228, 87, 76, 0.3);
}

.EstiloDisclaimerSairaIA {
  width: 100%;
  max-width: 980px;
  margin: 7px auto 0;
  text-align: center;
  color: #A0A8B5;
  font-size: 10px;
  line-height: 1.4;
}

.EstiloFondoModal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(18, 18, 92, 0.35);
  backdrop-filter: blur(2px);
  z-index: 100;
}

.EstiloTarjetaModal {
  width: 340px;
  max-width: 90vw;
  padding: 24px;
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(18, 18, 92, 0.25);
  animation: AparecerMensaje 0.15s ease-out;
}

.EstiloTítuloModal {
  font-size: 16px;
  font-weight: 700;
  color: #12125C;
  margin-bottom: 8px;
}

.EstiloTextoModal {
  font-size: 13px;
  color: #7B8494;
  line-height: 1.5;
  margin-bottom: 20px;
}

.EstiloAccionesModal {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.EstiloBotónModalSecundario,
.EstiloBotónModalPeligro {
  padding: 9px 16px;
  border-radius: 10px;
  border: none;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.EstiloBotónModalSecundario {
  background: #EDF1F7;
  color: #536174;
}

.EstiloBotónModalPeligro {
  background: #E4574C;
  color: #FFFFFF;
}

.EstiloCuerpoAcceso {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: radial-gradient(circle at 15% 20%, #1B1B6E 0%, transparent 45%), radial-gradient(circle at 85% 15%, #0E3D4D 0%, transparent 40%), radial-gradient(circle at 50% 100%, #0A0A3D 0%, transparent 50%), linear-gradient(160deg, #0B0B3B 0%, #12125C 55%, #0E1440 100%);
}

.EstiloManchaAcceso {
  position: fixed;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
  animation: FlotarMancha 14s ease-in-out infinite;
}
.EstiloManchaAcceso.EstiloManchaTeal {
  width: 420px;
  height: 420px;
  top: -120px;
  left: -100px;
  background: #4EC3E4;
}
.EstiloManchaAcceso.EstiloManchaNaranja {
  width: 360px;
  height: 360px;
  bottom: -140px;
  right: -80px;
  background: #FEA321;
  animation-delay: -6s;
}
.EstiloManchaAcceso.EstiloManchaMorada {
  width: 300px;
  height: 300px;
  bottom: 10%;
  left: 30%;
  background: #6C5CE7;
  animation-delay: -3s;
}

@keyframes FlotarMancha {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, -25px) scale(1.08);
  }
}
.EstiloContenedorAcceso {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.EstiloPanelMarcaAcceso {
  flex: 1.05;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 40px;
  color: #FFFFFF;
  text-align: center;
}

.EstiloOrbitaLogo {
  position: relative;
  width: 118px;
  height: 118px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.EstiloOrbitaLogo::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(78, 195, 228, 0.35);
  animation: GirarOrbita 10s linear infinite;
}
.EstiloOrbitaLogo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(78, 195, 228, 0.45);
  animation: PulsarOrbita 2.4s ease-in-out infinite;
}

@keyframes GirarOrbita {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes PulsarOrbita {
  0%, 100% {
    opacity: 0.55;
  }
  50% {
    opacity: 1;
  }
}
.EstiloLogoAcceso {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.EstiloBloqueTextoIA {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-height: 96px;
}

.EstiloTítuloMarcaAcceso {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.3px;
  background: linear-gradient(135deg, #FFFFFF, #4EC3E4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  min-height: 38px;
}

.EstiloFraseMarcaAcceso {
  max-width: 360px;
  min-height: 40px;
  font-size: 13.5px;
  line-height: 1.6;
  color: #C6CDE8;
}

.EstiloCursorEscribiendo {
  display: inline-block;
  width: 2px;
  height: 1em;
  margin-left: 2px;
  background: #4EC3E4;
  vertical-align: text-bottom;
  animation: ParpadearCursor 0.85s steps(1) infinite;
}

@keyframes ParpadearCursor {
  0%, 49% {
    opacity: 1;
  }
  50%, 100% {
    opacity: 0;
  }
}
.EstiloEtiquetasMarcaAcceso {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
}

.EstiloEtiquetaMarca {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 11.5px;
  font-weight: 600;
  color: #E4E8F7;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
}

.EstiloPieMarcaAcceso {
  margin-top: 26px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
}

.EstiloPanelFormularioAcceso {
  position: relative;
  z-index: 1;
  width: 430px;
  max-width: 92vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px 36px;
  margin: 30px;
  background: rgba(20, 22, 60, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px);
  color: #FFFFFF;
}

.EstiloEncabezadoFormularioAcceso {
  margin-bottom: 20px;
}

.EstiloSaludoFormularioAcceso {
  font-size: 19px;
  font-weight: 700;
  color: #FFFFFF;
}

.EstiloSubtítuloFormularioAcceso {
  margin-top: 4px;
  font-size: 12.5px;
  color: #A9B2D6;
}

.EstiloPestañasAcceso {
  display: flex;
  gap: 6px;
  padding: 4px;
  margin-bottom: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 13px;
}

.EstiloPestañaAcceso {
  flex: 1;
  text-align: center;
  padding: 10px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #A9B2D6;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.EstiloPestañaAccesoActiva {
  background: linear-gradient(135deg, #4EC3E4, #2FA9CC);
  color: #FFFFFF;
  box-shadow: 0 6px 16px rgba(78, 195, 228, 0.3);
}

.EstiloMensajeAcceso {
  padding: 10px 14px;
  margin-bottom: 16px;
  border-radius: 10px;
  background: rgba(228, 87, 76, 0.16);
  border: 1px solid rgba(228, 87, 76, 0.35);
  color: #FF9C93;
  font-size: 12px;
}

.EstiloFormularioAcceso {
  display: flex;
  flex-direction: column;
}

.EstiloEtiquetaAcceso {
  font-size: 12px;
  font-weight: 600;
  color: #A9B2D6;
  margin: 12px 0 6px;
}
.EstiloEtiquetaAcceso:first-child {
  margin-top: 0;
}

.EstiloGrupoCampoAcceso {
  position: relative;
  display: flex;
  align-items: center;
}

.EstiloÍconoCampoAcceso {
  position: absolute;
  left: 14px;
  font-size: 13px;
  color: #8891C4;
  pointer-events: none;
}

.EstiloCampoAcceso {
  width: 100%;
  padding: 12px 14px 12px 38px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 13px;
  font-family: inherit;
  color: #FFFFFF;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.EstiloCampoAcceso::placeholder {
  color: #7A83AD;
}
.EstiloCampoAcceso:focus {
  border-color: #4EC3E4;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 4px rgba(78, 195, 228, 0.16);
}

.EstiloBotónAcceso {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  margin-top: 24px;
  padding: 13px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #4EC3E4, #FEA321);
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(78, 195, 228, 0.3);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.EstiloBotónAcceso:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(78, 195, 228, 0.38);
}

.EstiloPieFormularioAcceso {
  margin-top: 22px;
  text-align: center;
  font-size: 11px;
  color: #7A83AD;
}

@media (max-width: 900px) {
  .EstiloBarraLateralSairaIA {
    width: 230px;
    min-width: 230px;
  }
}
@media (max-width: 700px) {
  .EstiloBarraLateralSairaIA {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 50;
    width: 250px;
    min-width: 250px;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.25);
  }
  .EstiloContenedorSairaIA:not(.EstiloBarraOculta) .EstiloBarraLateralSairaIA {
    display: flex;
  }
  .EstiloContenedorSairaIA.EstiloBarraOculta .EstiloBarraLateralSairaIA {
    display: none;
  }
  .EstiloEncabezadoSairaIA {
    min-height: 68px;
    padding: 11px 15px;
  }
  .EstiloLogoSairaIA {
    width: 41px;
    height: 41px;
    border-radius: 12px;
  }
  .EstiloTítuloSairaIA {
    font-size: 17px;
    max-width: 160px;
  }
  .EstiloSubtítuloSairaIA {
    display: none;
  }
  .EstiloEstadoSairaIA {
    padding: 6px 9px;
    font-size: 11px;
  }
  .EstiloContenedorMensajes {
    padding: 25px 14px 20px;
  }
  .EstiloPieSairaIA {
    padding: 11px 14px 13px;
  }
  .EstiloSugerencias {
    margin-left: 0;
    gap: 7px;
  }
  .EstiloSugerencias .EstiloBotónSugerencia {
    flex: 1 1 auto;
    padding: 9px 11px;
  }
  .EstiloBurbujaSaira,
  .EstiloBurbujaUsuario {
    max-width: calc(100vw - 95px);
  }
  .EstiloAvatarSaira,
  .EstiloAvatarUsuario {
    width: 34px;
    height: 34px;
    min-width: 34px;
  }
  .EstiloTextoMensaje {
    font-size: 13px;
  }
  .EstiloDisclaimerSairaIA {
    font-size: 9px;
  }
  .EstiloContenedorAcceso {
    flex-direction: column;
  }
  .EstiloPanelMarcaAcceso {
    padding: 34px 20px 20px;
    gap: 14px;
  }
  .EstiloOrbitaLogo {
    width: 84px;
    height: 84px;
  }
  .EstiloLogoAcceso {
    width: 42px;
    height: 42px;
  }
  .EstiloEtiquetasMarcaAcceso {
    display: none;
  }
  .EstiloPieMarcaAcceso {
    margin-top: 12px;
  }
  .EstiloPanelFormularioAcceso {
    margin: 0;
    border-radius: 22px 22px 0 0;
  }
}
@media (max-width: 420px) {
  .EstiloEstadoSairaIA {
    display: none;
  }
  .EstiloContenedorMensajes {
    padding-left: 10px;
    padding-right: 10px;
  }
  .EstiloPieSairaIA {
    padding-left: 9px;
    padding-right: 9px;
  }
  .EstiloBurbujaSaira,
  .EstiloBurbujaUsuario {
    max-width: calc(100vw - 75px);
  }
  .EstiloSugerencias .EstiloBotónSugerencia {
    width: 100%;
  }
}
