﻿@charset "UTF-8";
body {
  font-family: "Sora", sans-serif;
  background-color: #F4F6F8;
  margin: 0;
  color: #333333;
  overflow-x: hidden;
}

.CabeceraPrincipal {
  background: linear-gradient(135deg, #2E90AC 0%, #4EC3E4 100%);
  color: #ffffff;
  padding: 80px 20px 120px 20px;
  position: relative;
}
.CabeceraPrincipal .ContenedorTexto {
  max-width: 800px;
}
.CabeceraPrincipal .TituloSistema {
  font-size: 38pt;
  font-weight: 800;
  margin: 0;
  letter-spacing: -1.5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.CabeceraPrincipal .EsloganSistema {
  font-size: 16pt;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.95);
  margin: 10px 0;
}

.BotonIngresoDirecto {
  background: #ffffff;
  color: #2E90AC;
  padding: 14px 32px;
  border-radius: 14px;
  text-decoration: none !important;
  font-size: 11pt;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.BotonIngresoDirecto:hover {
  background: #F4F6F8;
  color: #2E90AC;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.EstiloFondoModal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.EstiloPnlProgreso {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  backdrop-filter: blur(1px);
}

.ContenedorLoader {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeIn 0.3s ease-out;
}

.ContenedorLoader img {
  width: 145px;
  height: 145px;
}

.TextoLoader {
  font-family: "Sora", sans-serif;
  font-size: 15pt;
  margin-top: 15px;
  font-weight: 500;
  color: #1e293b;
  animation: pulse 1.2s infinite ease-in-out;
}

.PuntosAnimados::after {
  content: "";
  animation: Puntos 1.5s steps(3, end) infinite;
}

@keyframes Puntos {
  0% {
    content: "";
  }
  33% {
    content: ".";
  }
  66% {
    content: "..";
  }
  100% {
    content: "...";
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}
.PanelIdentidad {
  margin-top: -60px;
  position: relative;
  z-index: 10;
}
.PanelIdentidad .CajaInformacion {
  background: #ffffff;
  padding: 30px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 768px) {
  .PanelIdentidad .CajaInformacion {
    flex-direction: column;
    text-align: center;
  }
}
.PanelIdentidad .ContenedorEscudo {
  background: #F4F6F8;
  padding: 12px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.PanelIdentidad .ContenedorEscudo img {
  width: 85px;
  height: 85px;
  object-fit: contain;
}
.PanelIdentidad .NombreInstitucion {
  margin: 0;
  font-size: 20pt;
  font-weight: 700;
  color: #1e293b;
}
.PanelIdentidad .LemaInstitucional {
  color: #2E90AC;
  font-weight: 600;
  font-size: 9pt;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 5px;
}

.DetallesLegales {
  margin-top: 8px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  font-size: 10pt;
  color: #64748b;
}
.DetallesLegales span::after {
  content: "•";
  margin-left: 12px;
  color: #4EC3E4;
}
.DetallesLegales span:last-child::after {
  content: "";
}

.BloqueSeccion {
  background: #ffffff;
  padding: 35px;
  border-radius: 22px;
  margin-bottom: 30px;
  border: 1px solid #E5E7EB;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.BloqueSeccion .TituloBloque {
  margin-bottom: 30px;
  font-weight: 800;
  font-size: 1.5rem;
  color: #333333;
  position: relative;
  padding-bottom: 10px;
}
.BloqueSeccion .TituloBloque::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 4px;
  background: #4EC3E4;
  border-radius: 2px;
}

.TarjetaNoticia {
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #E5E7EB;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  height: 100%;
  cursor: pointer;
}
.TarjetaNoticia .CajaImagen {
  overflow: hidden;
  height: 200px;
}
.TarjetaNoticia .CajaImagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.TarjetaNoticia .ContenidoNoticia {
  padding: 20px;
}
.TarjetaNoticia:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  border-color: #4EC3E4;
}
.TarjetaNoticia:hover .CajaImagen img {
  transform: scale(1.08);
}

.ListaEventos::-webkit-scrollbar {
  width: 5px;
}
.ListaEventos::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 10px;
}
.ListaEventos .ItemEvento {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  padding: 15px;
  background: #f8fafc;
  border-radius: 15px;
  border: 1px solid transparent;
  position: relative;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.ListaEventos .ItemEvento:nth-child(odd) .FechaCaja {
  background: #4EC3E4;
  color: white;
}
.ListaEventos .ItemEvento:nth-child(even) .FechaCaja {
  background: #ffc107;
  color: #1e293b;
}
.ListaEventos .ItemEvento .FechaCaja {
  min-width: 65px;
  height: 65px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  line-height: 1.1;
}
.ListaEventos .ItemEvento .FechaCaja .Dia {
  font-size: 16pt;
  font-weight: 800;
}
.ListaEventos .ItemEvento .FechaCaja .Mes {
  font-size: 9pt;
  text-transform: uppercase;
  font-weight: 600;
}
.ListaEventos .ItemEvento .DetalleEvento {
  flex: 1;
}
.ListaEventos .ItemEvento .DetalleEvento .badge-hoy {
  background-color: #dc3545;
  color: white;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 7.5pt;
  font-weight: 800;
  display: inline-block;
  margin-bottom: 5px;
  text-transform: uppercase;
  box-shadow: 0 2px 4px rgba(220, 53, 69, 0.3);
}
.ListaEventos .ItemEvento .DetalleEvento .Descripcion {
  margin: 0;
  font-size: 10pt;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
}
.ListaEventos .ItemEvento:hover {
  background: white;
  border-color: #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transform: translateY(-3px);
}
.ListaEventos .ItemEvento:hover:nth-child(even) .FechaCaja {
  box-shadow: 0 2px 6px rgba(255, 193, 7, 0.4);
}

.pulse-rojo {
  animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}
.ContenedorFoto {
  margin-bottom: 20px;
}
.ContenedorFoto .TarjetaGaleria {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  width: 100%;
  aspect-ratio: 1/1;
  background: #f1f5f9;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.ContenedorFoto .TarjetaGaleria img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.ContenedorFoto .TarjetaGaleria .OverlayGaleria {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(46, 144, 172, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.ContenedorFoto .TarjetaGaleria:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.ContenedorFoto .TarjetaGaleria:hover .OverlayGaleria {
  opacity: 1;
}
.ContenedorFoto .TarjetaGaleria:hover img {
  transform: scale(1.1);
}
.ContenedorFoto .InfoFoto {
  margin-top: 10px;
}
.ContenedorFoto .InfoFoto .TxtDescripcion {
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 500;
  text-align: center;
  display: block;
}

.ContenedorCine {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ContenedorCine .img-full {
  display: block;
  max-height: 80vh;
  width: auto;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}
.ContenedorCine .BtnCerrarModal {
  position: absolute;
  top: -20px;
  right: -20px;
  background: #fff;
  color: #333;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1060;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.ContenedorCine .BtnCerrarModal:hover {
  transform: scale(1.1);
  color: #dc3545;
}
.ContenedorCine .PieFotoModal {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 20px 25px 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  border-radius: 0 0 12px 12px;
  text-align: center;
}
.ContenedorCine .PieFotoModal p {
  color: white;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.4;
}

.GrillaHonor {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
  padding: 10px 0;
}
@media (max-width: 576px) {
  .GrillaHonor {
    grid-template-columns: repeat(2, 1fr);
  }
}

.TarjetaHonor {
  background: white;
  border-radius: 20px;
  padding: 20px 15px;
  text-align: center;
  border: 1px solid rgba(78, 195, 228, 0.1);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}
.TarjetaHonor .ContenedorAvatar {
  position: relative;
  width: 90px;
  height: 90px;
  margin: 0 auto 15px;
}
.TarjetaHonor .ContenedorAvatar .AvatarEstudiante {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid white;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.TarjetaHonor .ContenedorAvatar .BrilloHonor {
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  background: linear-gradient(45deg, #4EC3E4, #ffc107);
  border-radius: 50%;
  z-index: 1;
  opacity: 0.2;
  filter: blur(6px);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.TarjetaHonor .ContenedorAvatar .IconoInsignia {
  position: absolute;
  bottom: 2px;
  right: 2px;
  background: #ffc107;
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  border: 2px solid white;
  font-size: 0.75rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.TarjetaHonor h6 {
  margin: 0;
  font-weight: 800;
  color: #1e293b;
  font-size: 10pt;
  line-height: 1.2;
}
.TarjetaHonor .CursoBadge {
  display: inline-block;
  background: rgba(78, 195, 228, 0.1);
  color: #4EC3E4;
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 8pt;
  font-weight: 700;
  margin: 6px 0;
}
.TarjetaHonor .Logro {
  font-size: 8.5pt;
  color: #64748b;
  margin: 4px 0 0;
  font-style: italic;
  line-height: 1.3;
}
.TarjetaHonor:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: #4EC3E4;
}
.TarjetaHonor:hover .BrilloHonor {
  opacity: 0.5;
  transform: scale(1.1);
}
.TarjetaHonor:hover .AvatarEstudiante {
  border-color: rgba(78, 195, 228, 0.2);
}

.CajaDocumento {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f1faff;
  padding: 18px 25px;
  border-radius: 15px;
  border: 1px solid #bae6fd;
  text-decoration: none !important;
  color: #0c4a6e;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.CajaDocumento:hover {
  background: #e0f2fe;
  transform: translateX(8px);
}

.text-success {
  color: #28a745 !important;
}

.text-danger {
  color: #ff5a5a !important;
}

.TarjetaServicio {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #f8fafc;
  border-radius: 16px;
  text-decoration: none !important;
  color: inherit;
  border: 1px solid transparent;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.TarjetaServicio .Icono {
  font-size: 24pt;
  background: white;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
.TarjetaServicio:hover {
  background: #4EC3E4;
  color: white;
  transform: scale(1.02);
}
.TarjetaServicio:hover .Icono {
  transform: rotate(-10deg);
  color: #4EC3E4;
}

.TarjetaLink {
  display: block;
  padding: 15px;
  text-align: center;
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  text-decoration: none !important;
  color: #6c757d;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.TarjetaLink:hover {
  background: #F4F6F8;
  color: #2E90AC;
  border-color: #4EC3E4;
}

.ModalContenido {
  border-radius: 25px;
  overflow: hidden;
  border: none;
}

.badge-categoria {
  background: #4EC3E4;
  color: white;
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 15px;
}

.fecha-noticia {
  display: block;
  font-size: 0.85rem;
  color: #6c757d;
  margin-bottom: 10px;
}

.PiePagina {
  margin-top: 60px;
  padding: 60px 0;
  background: white;
  border-top: 1px solid #E5E7EB;
  text-align: center;
}
.PiePagina .LinksFooter {
  margin-bottom: 25px;
}
.PiePagina .LinksFooter a {
  margin: 0 15px;
  color: #6c757d;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.PiePagina .LinksFooter a:hover {
  color: #4EC3E4;
}
.PiePagina .Copyright {
  font-size: 9pt;
  color: #9ca3af;
}
.PiePagina .Copyright p {
  margin: 5px 0;
}

@keyframes AparecerSuave {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .CabeceraPrincipal .TituloSistema {
    font-size: 26pt;
  }
  .PanelIdentidad {
    margin-top: -50px;
  }
}
.EstadoVacio {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  text-align: center;
  background: rgba(108, 117, 125, 0.03);
  border: 2px dashed rgba(108, 117, 125, 0.15);
  border-radius: 20px;
  width: 100%;
  margin: 10px 0;
  animation: fadeInVacio 0.6s ease-out;
}
.EstadoVacio.FullWidth {
  grid-column: 1/-1;
}
.EstadoVacio.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}
.EstadoVacio i {
  font-size: 3.5rem;
  color: rgba(78, 195, 228, 0.2);
  margin-bottom: 20px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.EstadoVacio p {
  font-size: 1.1rem;
  color: #94a3b8;
  margin: 0;
  font-weight: 500;
  max-width: 420px;
  line-height: 1.4;
}
.EstadoVacio:hover {
  background: rgba(108, 117, 125, 0.05);
  border-color: rgba(78, 195, 228, 0.2);
}
.EstadoVacio:hover i {
  transform: scale(1.1);
  color: rgba(78, 195, 228, 0.3);
}

@keyframes fadeInVacio {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.FondoLogin {
  background-color: #f0f2f5;
  background-image: radial-gradient(circle at 100% 0%, rgba(78, 195, 228, 0.08) 0%, transparent 50%), radial-gradient(circle at 0% 100%, rgba(46, 144, 172, 0.08) 0%, transparent 50%);
}

.ContenedorSplitLogin {
  width: 100%;
  max-width: 1200px;
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  min-height: 650px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  display: flex;
}
@media (max-width: 768px) {
  .ContenedorSplitLogin {
    border-radius: 18px;
    min-height: auto;
  }
}

.PanelInstitucional {
  background: linear-gradient(135deg, #2E90AC 0%, #4EC3E4 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: 2px 2px 0px 0px #4EC3E4;
  z-index: 1;
}
.PanelInstitucional::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}
.PanelInstitucional::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
}
.PanelInstitucional .ContenedorEscudoLogin {
  background: #ffffff;
  padding: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.PanelInstitucional .ContenedorEscudoLogin img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}
.PanelInstitucional .NombreColegioLogin {
  font-weight: 600;
  font-size: 1.8rem;
  margin-top: 15px;
  position: relative;
  z-index: 1;
}
.PanelInstitucional .DivisorLogin {
  width: 60px;
  height: 4px;
  background: #FEA321;
  border-radius: 2px;
  margin: 20px auto;
  position: relative;
  z-index: 1;
}
.PanelInstitucional .DatosLegalesLogin {
  background: rgba(0, 0, 0, 0.12);
  padding: 18px 25px;
  border-radius: 16px;
  width: 95%;
  margin: 0 auto;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}
.PanelInstitucional .DatosLegalesLogin .LineaLegal {
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.PanelInstitucional .DatosLegalesLogin .LineaLegal:last-child {
  margin-bottom: 0;
}
.PanelInstitucional .DatosLegalesLogin .LineaLegal i {
  color: #FEA321;
  margin-right: 10px;
  font-size: 0.85rem;
}
.PanelInstitucional .DatosLegalesLogin .LineaLegal strong {
  color: #FEA321;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  margin-right: 8px;
}
.PanelInstitucional .DatosLegalesLogin .SeparadorLegal {
  margin: 0 12px;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 300;
}
.PanelInstitucional .DatosLegalesLogin .DatoAgrupado {
  white-space: nowrap;
}

.PanelFormulario {
  position: relative;
  z-index: 2;
  background: #ffffff;
}
.PanelFormulario .TituloLogin {
  font-weight: 800;
  color: #333333;
  font-size: 2rem;
  margin-bottom: 5px;
}
.PanelFormulario .SubtituloLogin {
  color: #6c757d;
  font-size: 0.95rem;
}
.PanelFormulario .IconoRecuperar {
  background: rgba(78, 195, 228, 0.1);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 20px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4EC3E4;
  font-size: 2rem;
  border: 1px solid rgba(78, 195, 228, 0.2);
}
.PanelFormulario .AlertaIndicaciones {
  background-color: rgba(78, 195, 228, 0.05);
  padding: 15px;
  border-radius: 12px;
  border-left: 4px solid #4EC3E4;
  margin-bottom: 25px;
}
.PanelFormulario .AlertaIndicaciones .SubtituloLogin {
  margin-bottom: 0;
  line-height: 1.5;
  text-align: justify;
  color: #333333;
}
.PanelFormulario .FormLabel {
  font-weight: 600;
  color: #333333;
  font-size: 0.9rem;
  margin-bottom: 8px;
  display: block;
}
.PanelFormulario .input-group {
  transition: all 0.3s ease;
}
.PanelFormulario .input-group .input-group-text {
  background-color: transparent;
  border: 2px solid #E5E7EB;
  color: #6c757d;
  transition: all 0.3s ease;
}
.PanelFormulario .input-group .input-group-text:first-child {
  border-right: none;
  border-radius: 12px 0 0 12px;
}
.PanelFormulario .input-group .input-group-text.cursor-pointer {
  cursor: pointer;
  border-left: none;
  border-radius: 0 12px 12px 0;
}
.PanelFormulario .input-group .input-group-text.cursor-pointer:hover i {
  color: #4EC3E4;
}
.PanelFormulario .input-group .InputSaira {
  border: 2px solid #E5E7EB;
  border-left: none;
  padding: 12px 15px;
  font-size: 1rem;
  background-color: transparent;
  transition: all 0.3s ease;
}
.PanelFormulario .input-group .InputSaira:not(.border-end-0) {
  border-radius: 0 12px 12px 0;
}
.PanelFormulario .input-group .InputSaira.border-end-0 {
  border-right: none !important;
  border-radius: 0;
}
.PanelFormulario .input-group .InputSaira:focus {
  box-shadow: none;
  border-color: #4EC3E4;
  background-color: #fff;
}
.PanelFormulario .input-group:focus-within:not(.is-invalid-group) .input-group-text, .PanelFormulario .input-group:focus-within:not(.is-invalid-group) .InputSaira {
  border-color: #4EC3E4;
  box-shadow: 0 0 0 0.25rem rgba(78, 195, 228, 0.15);
}
.PanelFormulario .input-group:focus-within:not(.is-invalid-group) .input-group-text i {
  color: #4EC3E4 !important;
}
.PanelFormulario .input-group.is-invalid-group {
  animation: ShakeSaira 0.4s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}
.PanelFormulario .input-group.is-invalid-group .input-group-text, .PanelFormulario .input-group.is-invalid-group .InputSaira {
  border-color: #E74C3C !important;
  background-color: rgba(231, 76, 60, 0.05) !important;
  color: #E74C3C !important;
}
.PanelFormulario .input-group.is-invalid-group .InputSaira:focus {
  background-color: #ffffff !important;
  box-shadow: 0 0 0 0.25rem rgba(231, 76, 60, 0.15) !important;
}
.PanelFormulario .BotonPrincipalLogin {
  background: linear-gradient(135deg, #2E90AC 0%, #4EC3E4 100%);
  color: #ffffff;
  border: none;
  padding: 14px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(46, 144, 172, 0.3);
  transition: all 0.3s ease;
}
.PanelFormulario .BotonPrincipalLogin:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(46, 144, 172, 0.4);
  color: #ffffff;
}
.PanelFormulario .LinkRecuperar {
  color: #6c757d;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
}
.PanelFormulario .LinkRecuperar:hover {
  color: #2E90AC;
  text-decoration: underline;
}
.PanelFormulario .LinkRecuperar i {
  transition: transform 0.3s ease;
}
.PanelFormulario .LinkRecuperar:hover i {
  transform: translateX(-3px);
}

@keyframes ShakeSaira {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }
  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }
  30%, 50%, 70% {
    transform: translate3d(-3px, 0, 0);
  }
  40%, 60% {
    transform: translate3d(3px, 0, 0);
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

Body {
  overflow-x: hidden;
  overflow-y: scroll;
  font-family: "Sora", sans-serif;
  background-color: #F4F6F8;
  color: #333333;
}

.EstiloLbl {
  display: block;
  height: 20px;
  font-family: "Sora", sans-serif;
  font-size: 10.3pt;
  color: #6c757d;
  font-weight: 400;
  line-height: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.EstiloFuenteTítulo {
  color: #ffffff;
  font-family: "Sora", sans-serif;
  font-size: 20pt;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.EstiloFuenteSubTítulo {
  color: #ffffff;
  font-family: "Sora", sans-serif;
  font-size: 12pt;
  font-weight: 400;
  opacity: 0.95;
}

.EstiloTxt, .EstiloTxtListado, .EstiloTxtObservador {
  background-color: #ffffff;
  border: 1px solid #CCD1D1;
  border-radius: 8px;
  font-family: "Sora", sans-serif;
  font-size: 10.3pt;
  color: #333333;
  height: 34px;
  padding: 0 10px;
  width: 100%;
  transition: all 0.25s ease-in-out;
}
.EstiloTxt:hover, .EstiloTxtListado:hover, .EstiloTxtObservador:hover {
  border-color: #4EC3E4;
  background-color: #fdf5e9;
}
.EstiloTxt:focus, .EstiloTxtListado:focus, .EstiloTxtObservador:focus {
  outline: none;
  border-color: #4EC3E4;
  box-shadow: 0 0 0 3px rgba(78, 195, 228, 0.18);
  background-color: #ffffff;
}
.EstiloTxt[disabled], [disabled].EstiloTxtListado, [disabled].EstiloTxtObservador, .EstiloTxt.EstiloTxtLectura, .EstiloTxtLectura.EstiloTxtListado, .EstiloTxtLectura.EstiloTxtObservador {
  background-color: #F4F6F8;
  color: #6c757d;
  cursor: not-allowed;
  border-color: #E5E7EB;
}

.EstiloTxtObservador {
  height: auto;
  min-height: 80px;
  padding: 8px 10px;
  resize: vertical;
  line-height: 1.5;
}

.EstiloTxtListado {
  background-color: transparent;
  border-color: transparent;
  border-radius: 5px;
  height: 30px;
}
.EstiloTxtListado:hover {
  border-color: #CCD1D1;
  background-color: #ffffff;
}
.EstiloTxtListado:focus {
  outline: none;
  border-color: #4EC3E4;
  box-shadow: 0 0 0 3px rgba(78, 195, 228, 0.18);
  background-color: #ffffff;
}

.EstiloCmb {
  height: 34px;
  width: 100%;
  font-family: "Sora", sans-serif;
  font-size: 10.3pt;
  font-weight: 400;
  color: #333333;
  cursor: pointer;
  border: 1px solid #CCD1D1;
  border-radius: 8px;
  padding: 0 8px;
  background-color: #ffffff;
  appearance: auto;
  transition: all 0.25s ease-in-out;
}
.EstiloCmb:hover {
  border-color: #4EC3E4;
  background-color: #fdf5e9;
}
.EstiloCmb:focus {
  outline: none;
  border-color: #4EC3E4;
  box-shadow: 0 0 0 3px rgba(78, 195, 228, 0.18);
  background-color: #ffffff;
}
.EstiloCmb option {
  font-family: "Sora", sans-serif;
  padding: 5px;
}

.EstiloBtnImagen, .EstiloBtnCancelar, .EstiloBtnGrande, .EstiloBtnMediano, .EstiloBtnPequeño {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-family: "Sora", sans-serif;
  font-weight: 400;
  font-size: 10.3pt;
  color: #ffffff;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none !important;
  padding: 0 14px;
  transition: all 0.25s ease-in-out;
  letter-spacing: 0.01em;
}
.EstiloBtnImagen i, .EstiloBtnCancelar i, .EstiloBtnGrande i, .EstiloBtnMediano i, .EstiloBtnPequeño i {
  font-size: 10.5pt;
  transition: transform 0.2s ease-in-out;
}
.EstiloBtnImagen:hover, .EstiloBtnCancelar:hover, .EstiloBtnGrande:hover, .EstiloBtnMediano:hover, .EstiloBtnPequeño:hover {
  font-weight: 600;
  transform: translateY(-2px);
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.14);
  color: #ffffff;
}
.EstiloBtnImagen:hover i, .EstiloBtnCancelar:hover i, .EstiloBtnGrande:hover i, .EstiloBtnMediano:hover i, .EstiloBtnPequeño:hover i {
  transform: scale(1.15) rotate(-4deg);
}
.EstiloBtnImagen:active, .EstiloBtnCancelar:active, .EstiloBtnGrande:active, .EstiloBtnMediano:active, .EstiloBtnPequeño:active {
  transform: scale(0.96);
  box-shadow: none;
}
[disabled].EstiloBtnImagen, [disabled].EstiloBtnCancelar, [disabled].EstiloBtnGrande, [disabled].EstiloBtnMediano, [disabled].EstiloBtnPequeño, .disabled.EstiloBtnImagen, .disabled.EstiloBtnCancelar, .disabled.EstiloBtnGrande, .disabled.EstiloBtnMediano, .disabled.EstiloBtnPequeño {
  background-color: #F4F6F8 !important;
  color: #6c757d !important;
  border-color: #E5E7EB !important;
  cursor: not-allowed !important;
  transform: none !important;
  box-shadow: none !important;
  pointer-events: none;
}

.EstiloBtnPequeño {
  width: 100px;
  height: 32px;
  background-color: #4EC3E4;
}
.EstiloBtnPequeño:hover {
  background-color: #2E90AC;
}

.EstiloBtnMediano {
  width: 150px;
  height: 32px;
  background-color: #4EC3E4;
}
.EstiloBtnMediano:hover {
  background-color: #2E90AC;
}

.EstiloBtnGrande {
  width: 450px;
  height: 36px;
  background-color: #4EC3E4;
}
.EstiloBtnGrande:hover {
  background-color: #2E90AC;
}

.EstiloBtnCancelar {
  width: 100px;
  height: 32px;
  background-color: #FEA321;
  border-color: #FEA321;
}
.EstiloBtnCancelar:hover {
  background-color: rgb(245.0959641256, 144.6286995516, 1.1040358744);
  border-color: rgb(245.0959641256, 144.6286995516, 1.1040358744);
}

.EstiloBtnImagen {
  width: 32px !important;
  height: 32px !important;
  padding: 0;
  border-radius: 50% !important;
  background-color: #ffffff;
  color: #6c757d;
  border: 1px solid #E5E7EB;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.EstiloBtnImagen i {
  font-size: 10pt;
}
.EstiloBtnImagen:hover {
  background-color: #F4F6F8;
  border-color: #4EC3E4;
  color: #2E90AC;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(78, 195, 228, 0.2);
}

.BtnGrabando {
  background-color: #E74C3C !important;
  color: #ffffff !important;
  animation: Parpadeo 1s infinite;
}

.EstiloLink {
  display: inline-block;
  border: none;
  background-color: transparent;
  font-family: "Sora", sans-serif;
  font-size: 9.5pt;
  font-weight: 500;
  color: #2E90AC;
  text-decoration: none;
  cursor: pointer;
  padding: 3px 8px;
  border-radius: 5px;
  transition: all 0.25s ease-in-out;
  min-width: 140px;
}
.EstiloLink:hover {
  color: #FEA321;
  background-color: rgba(78, 195, 228, 0.08);
  transform: scale(1.02);
}
.EstiloLink:active {
  transform: scale(0.97);
}

.EstiloPnlTítulos {
  background: linear-gradient(90deg, #4EC3E4 0%, #2EA6C6 100%);
  padding: 10px 14px;
  display: flex;
  align-items: center;
}

.EstiloPnlControles {
  background: linear-gradient(to bottom, #ffffff 0%, #f9fafb 100%);
  border: 1px solid #E5E7EB;
  border-top: 3px solid #4EC3E4;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 12px;
}

.EstiloPnlListado {
  background-color: #ffffff;
  border: 1px solid #4EC3E4;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(78, 195, 228, 0.12);
  overflow: auto;
}

.EstiloFondoSeguridad {
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.22), transparent 70%), linear-gradient(135deg, #F5F5F5 0%, #EEF9FC 25%, #E1F5FE 50%, #E6F6F4 75%, #E0F2F1 100%);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  transition: all 0.25s ease-in-out;
}

[class^=Aspecto-] {
  font-weight: 500;
  font-family: "Sora", sans-serif;
}

.Aspecto-Cognitivo {
  background-color: #eef4fb;
  border-bottom: 2px solid #b6cff2;
}

.Aspecto-Procedimental {
  background-color: #eef7f1;
  border-bottom: 2px solid #b7e0c2;
}

.Aspecto-Actitudinal {
  background-color: #fff8e6;
  border-bottom: 2px solid #f2d28b;
}

.Aspecto-Comunicativo {
  background-color: #f3effb;
  border-bottom: 2px solid #c9b8f0;
}

.Aspecto-Promedio {
  background-color: #f4f5f7;
  font-weight: 600;
}

.EstiloOffcanvasSaira {
  border-right: 2px solid #4EC3E4 !important;
  box-shadow: 5px 0 20px rgba(0, 0, 0, 0.1);
  z-index: 10000 !important;
}
.EstiloOffcanvasSaira .CabeceraOffcanvas {
  background-color: #4EC3E4;
  color: #ffffff;
  padding: 1rem 1.2rem;
}
.EstiloOffcanvasSaira .CabeceraOffcanvas .offcanvas-title {
  font-family: "Sora", sans-serif;
  font-size: 14pt;
  font-weight: 600;
}
.EstiloOffcanvasSaira .offcanvas-body {
  padding: 20px;
}
.EstiloOffcanvasSaira .offcanvas-body .TextoInformativo {
  font-family: "Sora", sans-serif;
  font-size: 10pt;
  color: #6c757d;
  font-weight: 300;
  margin-bottom: 5px;
}
.EstiloOffcanvasSaira .offcanvas-body .SeparadorSaira {
  border-top: 1px solid #E5E7EB;
  margin: 10px 0 18px;
  opacity: 1;
}
.EstiloOffcanvasSaira .ContenedorFormulario {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.EstiloOffcanvasSaira .ContenedorFormulario .GrupoCampo {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.EstiloOffcanvasSaira .ContenedorFormulario .GrupoCampo .EstiloLbl {
  font-weight: 400;
  margin-bottom: 0;
}
.EstiloOffcanvasSaira .ContenedorFormulario .GrupoCampo .EstiloCmb {
  width: 100% !important;
}
.EstiloOffcanvasSaira .AccionesOffcanvas {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px dashed #E5E7EB;
}

.EstiloPnlProgreso {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.35);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ContenedorLoader {
  background-color: #ffffff;
  border-radius: 14px;
  padding: 28px 36px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.ContenedorLoader img {
  width: 56px;
  height: 56px;
}

.TextoLoader {
  font-family: "Sora", sans-serif;
  font-size: 10.5pt;
  color: #6c757d;
  font-weight: 400;
}

.PuntosAnimados::after {
  content: "";
  animation: PuntosEspera 1.5s steps(4, end) infinite;
}

@keyframes PuntosEspera {
  0% {
    content: "";
  }
  25% {
    content: ".";
  }
  50% {
    content: "..";
  }
  75% {
    content: "...";
  }
  100% {
    content: "";
  }
}
.Animación {
  animation: Aparecer 0.6s ease-out forwards;
}

@keyframes Aparecer {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes Parpadeo {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.55;
  }
}
.EstiloMigasDePan {
  font-family: "Sora", sans-serif;
  font-size: 8pt;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
}

.EstiloContenedorÍcono {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  padding: 6px 10px;
  backdrop-filter: blur(4px);
  transition: background-color 0.2s ease;
}
.EstiloContenedorÍcono:hover {
  background-color: rgba(255, 255, 255, 0.22);
}

.IconoSalida {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(78, 195, 228, 0.1);
  border: 2px solid rgba(78, 195, 228, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}
.IconoSalida i {
  font-size: 2.4rem;
  color: #4EC3E4;
}

.DivisorSalida {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #E5E7EB, transparent);
}

.TarjetaDedicatoria {
  background: #f0f2f5;
  border: 1px solid #E5E7EB;
  border-left: 4px solid #4EC3E4;
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.TarjetaDedicatoria .TarjetaDedicatoriaIcono {
  color: #FEA321;
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.TarjetaDedicatoria .TarjetaDedicatoriaTexto {
  font-size: 9.5pt;
  color: #6c757d;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
}
.TarjetaDedicatoria .TarjetaDedicatoriaTexto label {
  font-size: 9.5pt !important;
  font-weight: 400 !important;
  color: #6c757d !important;
}

.TextoDesarrollador {
  font-size: 8pt;
  color: #9ca3af;
  font-weight: 400;
  margin: 0;
}
.TextoDesarrollador label {
  font-size: 8pt !important;
  font-weight: 400 !important;
  color: #9ca3af !important;
}

.CvBarraTitulo {
  background: linear-gradient(90deg, #2E90AC 0%, #4EC3E4 100%);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

.CvFondoSeguridad {
  min-height: calc(100vh - 58px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 20%, rgba(78, 195, 228, 0.08), transparent 60%), radial-gradient(circle at 80% 80%, rgba(46, 144, 172, 0.08), transparent 60%), #F4F6F8;
  padding: 20px;
}

.CvTarjetaSeguridad {
  background: #ffffff;
  border-radius: 20px;
  border-top: 4px solid #4EC3E4;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  padding: 40px 36px 32px;
  width: 100%;
  max-width: 460px;
  animation: fadeIn 0.4s ease-out;
}

.CvIconoSeguridad {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(78, 195, 228, 0.1);
  border: 2px solid rgba(78, 195, 228, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.CvIconoSeguridad i {
  font-size: 1.9rem;
  color: #4EC3E4;
}

.CvContenedorPrincipal {
  display: flex;
  min-height: calc(100vh - 58px);
  background: #F4F6F8;
}

.CvMenuLateral {
  width: 230px;
  min-width: 230px;
  background: #ffffff;
  border-right: 1px solid #E5E7EB;
  box-shadow: 2px 0 12px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  padding: 18px 0 10px;
  position: sticky;
  top: 58px;
  height: calc(100vh - 58px);
  overflow-y: auto;
}
.CvMenuLateral::-webkit-scrollbar {
  width: 4px;
}
.CvMenuLateral::-webkit-scrollbar-thumb {
  background: #E5E7EB;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .CvMenuLateral {
    display: none;
  }
}

.CvMenuTitulo {
  font-size: 7.5pt;
  font-weight: 700;
  color: #9CA3AF;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0 18px 10px;
  border-bottom: 1px solid #F3F4F6;
  margin-bottom: 6px;
}

.CvBtnMenu {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  font-family: "Sora", sans-serif;
  font-size: 9.5pt;
  font-weight: 500;
  color: #374151 !important;
  text-decoration: none !important;
  border: none;
  background: transparent;
  border-left: 3px solid transparent;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.CvBtnMenu:hover {
  background: rgba(78, 195, 228, 0.06);
  color: #2E90AC !important;
  border-left-color: #4EC3E4;
}
.CvBtnMenu:hover .CvMenuIcono {
  background: rgba(78, 195, 228, 0.12);
  border-color: rgba(78, 195, 228, 0.3);
}
.CvBtnMenu.activo {
  background: rgba(78, 195, 228, 0.1);
  color: #2E90AC !important;
  border-left-color: #4EC3E4;
  font-weight: 700;
}
.CvBtnMenu.activo .CvMenuIcono {
  background: rgba(78, 195, 228, 0.12);
  border-color: rgba(78, 195, 228, 0.3);
}

.CvMenuIcono {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #F4F6F8;
  border: 1px solid #E5E7EB;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.CvAreaContenido {
  flex: 1;
  padding: 24px;
  overflow-y: auto;
  min-width: 0;
}
@media (max-width: 768px) {
  .CvAreaContenido {
    padding: 14px;
  }
}

.CvSeccionCabecera {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}

.CvSeccionTituloBloque {
  display: flex;
  align-items: center;
  gap: 12px;
}

.CvSeccionIcono {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #2E90AC, #4EC3E4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(46, 144, 172, 0.25);
}

.CvSeccionTitulo {
  font-size: 14pt;
  font-weight: 800;
  color: #1e293b;
  margin: 0;
  line-height: 1.2;
}

.CvSeccionSubtitulo {
  font-size: 9pt;
  color: #6c757d;
  font-weight: 400;
  margin: 0;
}

.CvPanelFormulario {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #E5E7EB;
  border-top: 3px solid #4EC3E4;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.CvPanelFormulario.CvModoEdicion {
  border-top-color: #FEA321 !important;
  box-shadow: 0 4px 15px rgba(254, 163, 33, 0.1);
}

.CvPanelFormularioCabecera {
  padding: 14px 20px;
  background: linear-gradient(135deg, #2E90AC 0%, #4EC3E4 100%);
  display: flex;
  align-items: center;
  gap: 10px;
}
.CvPanelFormularioCabecera i {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
}
.CvPanelFormularioCabecera span {
  font-size: 10pt;
  font-weight: 700;
  color: #ffffff;
}
.CvPanelFormularioCabecera.CvModoEdicionCabecera {
  background: linear-gradient(135deg, rgb(224.7874439462, 132.6448430493, 1.0125560538) 0%, #FEA321 100%) !important;
}

.CvPanelFormularioCuerpo {
  padding: 20px;
}

.CvEtiqueta {
  display: block;
  font-size: 9pt;
  font-weight: 700;
  color: #333333;
  margin-bottom: 6px;
}
.CvEtiqueta i {
  color: #4EC3E4;
  margin-right: 5px;
  font-size: 10px;
}

.CvPanelTabla {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #E5E7EB;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.CvPanelTablaCabecera {
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #F3F4F6;
  background: #FAFBFC;
}
.CvPanelTablaCabecera span {
  font-size: 10pt;
  font-weight: 700;
  color: #333333;
}

.CvContadorRegistros {
  font-size: 8pt;
  font-weight: 600;
  color: #4EC3E4;
  background: rgba(78, 195, 228, 0.1);
  border: 1px solid rgba(78, 195, 228, 0.25);
  border-radius: 20px;
  padding: 3px 10px;
}

.CvTabla {
  width: 100%;
  border-collapse: collapse;
  font-family: "Sora", sans-serif;
  font-size: 9.5pt;
}
.CvTabla thead tr {
  background: #F8FAFC;
}
.CvTabla thead th {
  padding: 11px 16px;
  font-size: 8pt;
  font-weight: 700;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  border-bottom: 2px solid #E5E7EB;
  white-space: nowrap;
}
.CvTabla tbody tr {
  border-bottom: 1px solid #F3F4F6;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.CvTabla tbody tr:hover {
  background: rgba(78, 195, 228, 0.035);
}
.CvTabla tbody tr:last-child {
  border-bottom: none;
}
.CvTabla tbody td {
  padding: 11px 16px;
  color: #333333;
  vertical-align: middle;
}

.CvMiniatura {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid #E5E7EB;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.CvMiniatura:hover {
  transform: scale(1.08);
  border-color: #4EC3E4;
}

.CvBadge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 7.5pt;
  font-weight: 700;
}

.CvBadgeAzul {
  background: rgba(78, 195, 228, 0.12);
  color: #2E90AC;
  border: 1px solid rgba(78, 195, 228, 0.25);
}

.CvBadgeNaranja {
  background: rgba(254, 163, 33, 0.12);
  color: rgb(194.3246636771, 114.669058296, 0.8753363229);
  border: 1px solid rgba(254, 163, 33, 0.25);
}

.CvVacio {
  padding: 50px 20px;
  text-align: center;
}
.CvVacio i {
  font-size: 2.8rem;
  color: rgba(78, 195, 228, 0.22);
  margin-bottom: 14px;
  display: block;
}
.CvVacio p {
  font-size: 10pt;
  color: #9CA3AF;
  font-weight: 500;
  margin: 0;
  line-height: 1.6;
}

.CvBtnAccion {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  border: 1px solid #E5E7EB;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 11px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-decoration: none !important;
}
.CvBtnAccion:focus {
  outline: none;
}

.CvBtnAccionEditar {
  color: #2E90AC;
}
.CvBtnAccionEditar:hover {
  background: rgba(78, 195, 228, 0.12);
  border-color: #4EC3E4;
  color: #2E90AC;
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(78, 195, 228, 0.2);
}

.CvBtnAccionEliminar {
  color: #E74C3C;
}
.CvBtnAccionEliminar:hover {
  background: rgba(231, 76, 60, 0.1);
  border-color: #E74C3C;
  color: #E74C3C;
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(231, 76, 60, 0.18);
}

.CvPanelFormulario,
.CvPanelTabla {
  animation: CvEntrada 0.3s ease-out both;
}

@keyframes CvEntrada {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.PaginaLogin {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at 10% 0%, rgba(78, 195, 228, 0.18) 0%, transparent 55%), radial-gradient(ellipse at 90% 100%, rgba(46, 144, 172, 0.15) 0%, transparent 55%), linear-gradient(135deg, #0F2A3A 0%, #1A4F68 50%, #0D3348 100%);
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.PaginaLogin::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(78, 195, 228, 0.06) 0%, transparent 40%), radial-gradient(circle at 80% 70%, rgba(78, 195, 228, 0.04) 0%, transparent 40%);
  pointer-events: none;
}
.PaginaLogin::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(78, 195, 228, 0.08);
  top: -200px;
  right: -200px;
  pointer-events: none;
}

.LoginTarjeta {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.1);
  width: 100%;
  max-width: 440px;
  overflow: hidden;
  animation: LoginEntrada 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes LoginEntrada {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.LoginEncabezado {
  background: linear-gradient(135deg, #1A4F68 0%, #2E90AC 50%, #4EC3E4 100%);
  padding: 36px 36px 28px;
  text-align: center;
  position: relative;
}
.LoginEncabezado::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 30px;
  background: rgba(255, 255, 255, 0.97);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.LoginÍcono {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  backdrop-filter: blur(10px);
}
.LoginÍcono i {
  font-size: 2rem;
  color: #ffffff;
}

.LoginTítulo {
  font-family: "Sora", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 6px;
  letter-spacing: -0.5px;
}

.LoginSubtítulo {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.LoginCuerpo {
  padding: 32px 36px 36px;
}

.LoginAlerta {
  background: rgba(78, 195, 228, 0.08);
  border: 1px solid rgba(78, 195, 228, 0.2);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.LoginAlerta i {
  color: #2E90AC;
  font-size: 0.9rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.LoginAlerta p {
  font-size: 0.8rem;
  color: #333333;
  margin: 0;
  line-height: 1.6;
}

.LoginBotones {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.CvBarra {
  height: 64px;
  background: linear-gradient(90deg, rgb(40.619266055, 127.1559633028, 151.880733945) 0%, #2E90AC 40%, #4EC3E4 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
}

.CvBarraIzquierda {
  display: flex;
  align-items: center;
  gap: 12px;
}

.BtnHamburguesa {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  backdrop-filter: blur(4px);
}
.BtnHamburguesa:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.35);
}

.CvBarraMarca {
  display: flex;
  flex-direction: column;
}
.CvBarraMarca .Plataforma {
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  line-height: 1;
}
.CvBarraMarca .Titulo {
  font-family: "Sora", sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

.CvBarraDerecha {
  display: flex;
  align-items: center;
  gap: 10px;
}

.CvAvatarBarra {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.CvAvatarBarra img {
  height: 22px;
  width: 26px;
  object-fit: contain;
  opacity: 0.9;
}

.CvLayout {
  display: flex;
  min-height: calc(100vh - 64px);
}

.CvOverlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 800;
  backdrop-filter: blur(3px);
}
.CvOverlay.Activo {
  display: block;
  animation: FadeIn 0.2s ease;
}

@keyframes FadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.CvMenuLateral {
  width: 260px;
  min-width: 260px;
  background: #ffffff;
  border-right: 1px solid #E5E7EB;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 64px;
  height: calc(100vh - 64px);
  overflow-y: auto;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 810;
}
.CvMenuLateral::-webkit-scrollbar {
  width: 4px;
}
.CvMenuLateral::-webkit-scrollbar-thumb {
  background: #E5E7EB;
  border-radius: 4px;
}
@media (max-width: 900px) {
  .CvMenuLateral {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    transform: translateX(-100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  }
  .CvMenuLateral.Abierto {
    transform: translateX(0);
  }
}

.CvMenuEncabezado {
  padding: 20px 20px 16px;
  border-bottom: 1px solid #E5E7EB;
  position: relative;
}

.CvMenuLogo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.CvMenuLogoÍcono {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #2E90AC, #4EC3E4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.CvMenuLogoTexto {
  font-family: "Sora", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: #333333;
}
.CvMenuLogoTexto span {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  color: #6c757d;
}

.CvMenuCierre {
  display: none;
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid #E5E7EB;
  background: #ffffff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.8rem;
  color: #6c757d;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
@media (max-width: 900px) {
  .CvMenuCierre {
    display: flex;
  }
}
.CvMenuCierre:hover {
  background: #FEE2E2;
  border-color: #FECACA;
  color: #E74C3C;
}

.CvMenuSección {
  padding: 16px 12px 8px;
}

.CvMenuSecciónTítulo {
  font-size: 0.6rem;
  font-weight: 700;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0 8px 10px;
}

.CvBtnMenu {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: #333333 !important;
  text-decoration: none !important;
  border: none;
  background: transparent;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  margin-bottom: 2px;
}
.CvBtnMenu:hover {
  background: rgba(78, 195, 228, 0.08);
  color: #2E90AC !important;
}
.CvBtnMenu.Activo {
  background: linear-gradient(135deg, rgba(46, 144, 172, 0.12), rgba(78, 195, 228, 0.08));
  color: #2E90AC !important;
  font-weight: 700;
}
.CvBtnMenu.Activo::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 70%;
  background: linear-gradient(180deg, #2E90AC, #4EC3E4);
  border-radius: 0 3px 3px 0;
}

.CvMenuÍcono {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: #F1F5F9;
  border: 1px solid #E5E7EB;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.CvBtnMenu.Activo .CvMenuÍcono,
.CvBtnMenu:hover .CvMenuÍcono {
  background: rgba(78, 195, 228, 0.12);
  border-color: rgba(78, 195, 228, 0.25);
}

.CvMenuTexto {
  flex: 1;
}

.CvMenuPie {
  margin-top: auto;
  padding: 16px 12px;
  border-top: 1px solid #E5E7EB;
}

.CvContenido {
  flex: 1;
  padding: 28px;
  overflow-y: auto;
  min-width: 0;
}
@media (max-width: 768px) {
  .CvContenido {
    padding: 16px;
  }
}

.CvCabeceraSección {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.CvCabeceraTítulo {
  display: flex;
  align-items: center;
  gap: 16px;
}

.CvSecciónÍcono {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #2E90AC, #4EC3E4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(46, 144, 172, 0.3);
}

.CvSecciónTítulo {
  font-family: "Sora", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #1A2B3C;
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.3px;
}

.CvSecciónSubtítulo {
  font-size: 0.78rem;
  color: #6c757d;
  margin: 2px 0 0;
}

.CvTarjetaForm {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #E5E7EB;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 24px;
  overflow: hidden;
  animation: CvEntrada 0.35s cubic-bezier(0.34, 1.2, 0.64, 1) both;
}
.CvTarjetaForm.ModoEdición {
  border-top: 3px solid #FEA321;
  box-shadow: 0 4px 20px rgba(254, 163, 33, 0.12);
}

@keyframes CvEntrada {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.CvFormEncabezado {
  padding: 16px 22px;
  background: linear-gradient(135deg, #2E90AC 0%, #4EC3E4 100%);
  display: flex;
  align-items: center;
  gap: 10px;
}
.CvFormEncabezado.ModoEdición {
  background: linear-gradient(135deg, rgb(209.5560538117, 123.6569506726, 0.9439461883) 0%, #FEA321 100%);
}

.CvFormEncabezadoÍcono {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: #ffffff;
}

.CvFormEncabezadoTexto {
  font-family: "Sora", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
}

.CvFormCuerpo {
  padding: 22px;
}

.CvEtiqueta {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 6px;
}
.CvEtiqueta i {
  color: #4EC3E4;
  margin-right: 5px;
  font-size: 0.7rem;
}

.CvTarjetaTabla {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #E5E7EB;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  animation: CvEntrada 0.4s cubic-bezier(0.34, 1.2, 0.64, 1) 0.05s both;
}

.CvTablaEncabezado {
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #F1F5F9;
  background: linear-gradient(to right, #FAFBFF, #F8FAFC);
  flex-wrap: wrap;
  gap: 10px;
}

.CvTablaEncabezadoTítulo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.CvTablaEncabezadoTítulo i {
  color: #2E90AC;
  font-size: 0.9rem;
}
.CvTablaEncabezadoTítulo span {
  font-weight: 700;
  font-size: 0.88rem;
  color: #333333;
}

.CvContador {
  font-size: 0.72rem;
  font-weight: 700;
  color: #2E90AC;
  background: rgba(78, 195, 228, 0.1);
  border: 1px solid rgba(78, 195, 228, 0.22);
  border-radius: 20px;
  padding: 4px 12px;
}

.CvTabla {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}
.CvTabla thead tr {
  background: #F8FAFC;
}
.CvTabla thead th {
  padding: 12px 18px;
  font-size: 0.65rem;
  font-weight: 700;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-bottom: 2px solid #E5E7EB;
  white-space: nowrap;
}
.CvTabla tbody tr {
  border-bottom: 1px solid #F8FAFC;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.CvTabla tbody tr:hover {
  background: linear-gradient(to right, rgba(78, 195, 228, 0.03), transparent);
}
.CvTabla tbody tr:last-child {
  border-bottom: none;
}
.CvTabla tbody td {
  padding: 13px 18px;
  color: #333333;
  vertical-align: middle;
}

.CvCeldaItem {
  display: flex;
  align-items: center;
  gap: 12px;
}

.CvItemFoto {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  object-fit: cover;
  border: 2px solid #E5E7EB;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.CvItemFoto:hover {
  border-color: #4EC3E4;
  transform: scale(1.08);
}
.CvItemFoto.CvItemFotoRedonda {
  border-radius: 50%;
}

.CvItemTexto {
  min-width: 0;
}

.CvItemTítulo {
  font-weight: 600;
  color: #333333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
  display: block;
}

.CvItemSub {
  font-size: 0.72rem;
  color: #6c757d;
  display: block;
  margin-top: 1px;
}

.CvChip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.68rem;
  font-weight: 700;
  white-space: nowrap;
}

.CvChipAzul {
  background: rgba(78, 195, 228, 0.1);
  color: #2E90AC;
  border: 1px solid rgba(78, 195, 228, 0.2);
}

.CvChipNaranja {
  background: rgba(254, 163, 33, 0.1);
  color: rgb(194.3246636771, 114.669058296, 0.8753363229);
  border: 1px solid rgba(254, 163, 33, 0.2);
}

.CvChipVerde {
  background: rgba(39, 174, 96, 0.1);
  color: #1A7A3C;
  border: 1px solid rgba(39, 174, 96, 0.2);
}

.CvChipGris {
  background: #F1F5F9;
  color: #94A3B8;
  border: 1px solid #E2E8F0;
}

.CvChipRojo {
  background: rgba(231, 76, 60, 0.08);
  color: rgb(213.698630137, 43.8356164384, 26.301369863);
  border: 1px solid rgba(231, 76, 60, 0.18);
}

.CvVacío {
  padding: 60px 20px;
  text-align: center;
}

.CvVacíoÍcono {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(78, 195, 228, 0.06);
  border: 2px dashed rgba(78, 195, 228, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.CvVacíoÍcono i {
  font-size: 1.8rem;
  color: rgba(78, 195, 228, 0.35);
}

.CvVacíoTítulo {
  font-size: 0.88rem;
  font-weight: 700;
  color: #CBD5E1;
  margin-bottom: 6px;
}

.CvVacíoTexto {
  font-size: 0.78rem;
  color: #94A3B8;
  line-height: 1.6;
}

.CvAcciones {
  display: flex;
  gap: 6px;
  align-items: center;
}

.CvBtnAcción {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid #E5E7EB;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.75rem;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-decoration: none !important;
}
.CvBtnAcción:focus {
  outline: none;
}

.CvBtnEditar {
  color: #2E90AC;
}
.CvBtnEditar:hover {
  background: rgba(78, 195, 228, 0.1);
  border-color: #4EC3E4;
  color: #2E90AC;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(78, 195, 228, 0.2);
}

.CvBtnEliminar {
  color: #E74C3C;
}
.CvBtnEliminar:hover {
  background: rgba(231, 76, 60, 0.08);
  border-color: #E74C3C;
  color: #E74C3C;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(231, 76, 60, 0.15);
}

.CvDocIcono {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none !important;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid transparent;
  cursor: pointer;
}
.CvDocIcono:hover {
  transform: translateY(-1px);
}

.CvDocPDF {
  background: rgba(231, 76, 60, 0.08);
  color: rgb(222.7808219178, 45.698630137, 27.4191780822);
  border-color: rgba(231, 76, 60, 0.15);
}
.CvDocPDF:hover {
  background: rgba(231, 76, 60, 0.14);
  color: rgb(222.7808219178, 45.698630137, 27.4191780822);
}

.CvDocWord {
  background: rgba(46, 144, 172, 0.08);
  color: #2E90AC;
  border-color: rgba(46, 144, 172, 0.15);
}
.CvDocWord:hover {
  background: rgba(46, 144, 172, 0.14);
  color: #2E90AC;
}

.CvDocExcel {
  background: rgba(39, 174, 96, 0.08);
  color: #1A7A3C;
  border-color: rgba(39, 174, 96, 0.15);
}
.CvDocExcel:hover {
  background: rgba(39, 174, 96, 0.14);
  color: #1A7A3C;
}

.CvDocPPT {
  background: rgba(254, 163, 33, 0.08);
  color: rgb(194.3246636771, 114.669058296, 0.8753363229);
  border-color: rgba(254, 163, 33, 0.15);
}
.CvDocPPT:hover {
  background: rgba(254, 163, 33, 0.14);
  color: rgb(194.3246636771, 114.669058296, 0.8753363229);
}

.CvDocGenérico {
  background: #F1F5F9;
  color: #64748B;
  border-color: #E2E8F0;
}
.CvDocGenérico:hover {
  background: #E2E8F0;
  color: #475569;
}

.CvModalVisor {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.CvModalVisor.Activo {
  display: flex;
}

.CvModalVisorFondo {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
}

.CvModalVisorTarjeta {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border-radius: 20px;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  animation: ModalEntrada 0.35s cubic-bezier(0.34, 1.3, 0.64, 1) both;
}

@keyframes ModalEntrada {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.CvModalVisorBarra {
  padding: 14px 20px;
  background: linear-gradient(135deg, #2E90AC, #4EC3E4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.CvModalVisorBarra .Título {
  font-family: "Sora", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.CvModalVisorAcciones {
  display: flex;
  gap: 8px;
}
.CvModalVisorAcciones a, .CvModalVisorAcciones button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.BtnVisorAbrir {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
}
.BtnVisorAbrir:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

.BtnVisorCerrar {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}
.BtnVisorCerrar:hover {
  background: rgba(231, 76, 60, 0.25);
  color: #ffffff;
}

.CvModalVisorCuerpo {
  flex: 1;
  overflow: auto;
  background: #F8FAFC;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 500px;
}
.CvModalVisorCuerpo iframe {
  width: 100%;
  min-height: 500px;
  border: none;
}

.CvVisorMensaje {
  text-align: center;
  padding: 40px;
  margin: auto;
}
.CvVisorMensaje i {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
}
.CvVisorMensaje h5 {
  font-weight: 700;
  color: #333333;
  margin-bottom: 8px;
}
.CvVisorMensaje p {
  font-size: 0.82rem;
  color: #6c757d;
}

@media (max-width: 640px) {
  .CvTabla thead {
    display: none;
  }
  .CvTabla tbody tr {
    display: block;
    padding: 14px 16px;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    margin: 8px 12px;
  }
  .CvTabla tbody td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid #F8FAFC;
  }
  .CvTabla tbody td:last-child {
    border-bottom: none;
    justify-content: flex-end;
    padding-top: 10px;
  }
  .CvTabla tbody td::before {
    content: attr(data-label);
    font-size: 0.65rem;
    font-weight: 700;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    flex-shrink: 0;
    margin-right: 12px;
  }
}
/* ══════════════════════════════════════════════════
   GALERÍA — vista en grid en lugar de tabla
══════════════════════════════════════════════════ */
.CvGaleríaGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 14px;
  padding: 18px;
}

.CvGaleríaItem {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--cv-borde);
  background: #F1F5F9;
  aspect-ratio: 1/1;
  position: relative;
  cursor: pointer;
  transition: var(--cv-transicion);
}

.CvGaleríaItem:hover {
  transform: translateY(-3px);
  box-shadow: var(--cv-sombra-md);
}

.CvGaleríaItem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.CvGaleríaOverlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.58) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 10px;
  opacity: 0;
  transition: var(--cv-transicion);
}

.CvGaleríaItem:hover .CvGaleríaOverlay {
  opacity: 1;
}

.CvGaleríaDesc {
  font-size: 0.7rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

.CvGaleríaAcciones {
  position: absolute;
  top: 8px;
  right: 8px;
  display: flex;
  gap: 5px;
  opacity: 0;
  transition: var(--cv-transicion);
}

.CvGaleríaItem:hover .CvGaleríaAcciones {
  opacity: 1;
}

.CvGaleríaBtnAcción {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  cursor: pointer;
  transition: var(--cv-transicion);
  color: #fff;
}

.CvGaleríaBtnEditar {
  background: rgba(46, 144, 172, 0.75);
}

.CvGaleríaBtnEliminar {
  background: rgba(231, 76, 60, 0.75);
}

/* ══════════════════════════════════════════════════
   DOCUMENTOS — lista de tarjetas (reemplaza tabla)
══════════════════════════════════════════════════ */
.CvDocLista {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
}

.CvDocItem {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 12px;
  background: #FAFBFF;
  border: 1px solid var(--cv-borde);
  border-radius: 10px;
  padding: 12px 14px;
  transition: var(--cv-transicion);
}

.CvDocItem:hover {
  border-color: rgba(78, 195, 228, 0.3);
  box-shadow: 0 2px 10px rgba(78, 195, 228, 0.08);
}

.CvDocItemÍcono {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #F1F5F9;
  border: 1px solid var(--cv-borde);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.95rem;
}

.CvDocItemInfo {
  min-width: 0;
}

.CvDocItemNombre {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--cv-texto);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  margin-bottom: 4px;
}

.CvDocItemAcciones {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════
   EVENTOS — tarjetas con caja de fecha visual
══════════════════════════════════════════════════ */
.CvEventoLista {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
}

.CvEventoItem {
  display: grid;
  grid-template-columns: 48px 1fr auto auto;
  align-items: center;
  gap: 12px;
  background: #FAFBFF;
  border: 1px solid var(--cv-borde);
  border-radius: 10px;
  padding: 12px 14px;
  transition: var(--cv-transicion);
}

.CvEventoItem:hover {
  border-color: rgba(78, 195, 228, 0.3);
  box-shadow: 0 2px 10px rgba(78, 195, 228, 0.08);
}

.CvEventoFechaCaja {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--cv-azul-oscuro), var(--cv-azul-claro));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.CvEventoFechaCaja.Pasado {
  background: linear-gradient(135deg, #94A3B8, #64748B);
}

.CvEventoFechaCaja.Hoy {
  background: linear-gradient(135deg, #1A7A3C, var(--cv-verde));
}

.CvEventoDía {
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.CvEventoMes {
  font-size: 0.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.CvEventoNombre {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--cv-texto);
}

.CvEventoFechaTxt {
  font-size: 0.7rem;
  color: var(--cv-texto-suave);
  margin-top: 2px;
}

.CvEventoAcciones {
  display: flex;
  gap: 6px;
}

/* ── Responsive ajustes finales ── */
@media (max-width: 480px) {
  .CvDocItem {
    grid-template-columns: 36px 1fr;
  }
  .CvDocItemAcciones {
    grid-column: 1/-1;
    justify-content: flex-end;
    border-top: 1px solid #F1F5F9;
    padding-top: 8px;
    margin-top: 4px;
  }
  .CvEventoItem {
    grid-template-columns: 48px 1fr;
    grid-template-rows: auto auto;
  }
  .CvEventoItem .CvChip,
  .CvEventoAcciones {
    grid-column: 2;
  }
  .CvEventoAcciones {
    justify-content: flex-end;
  }
  .CvGaleríaGrid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }
}
.tabla-sistema {
  width: 100%;
  border-collapse: collapse;
  font-family: "Sora", sans-serif;
}
.tabla-sistema thead tr {
  background: linear-gradient(135deg, #29B6D8 0%, #1fa3c4 100%);
}
.tabla-sistema thead th, .tabla-sistema thead td {
  color: #fff;
  font-weight: 500;
  font-size: 10.3pt;
  letter-spacing: 0.3px;
  text-align: center;
  height: 34px;
  padding: 0 8px;
  white-space: nowrap;
  border-bottom: 2px solid #1592b0;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}
.tabla-sistema thead th:last-child, .tabla-sistema thead td:last-child {
  border-right: none;
}
.tabla-sistema thead th input, .tabla-sistema thead td input {
  background: transparent !important;
  border: none !important;
  color: #fff !important;
  font-weight: 500 !important;
  text-shadow: inherit;
  cursor: default;
  width: 100%;
}
.tabla-sistema tbody tr {
  background: #fff;
  transition: background 0.13s ease;
}
.tabla-sistema tbody tr:nth-child(even) {
  background: #f7fbfd;
}
.tabla-sistema tbody tr:hover {
  background: #eaf6fa !important;
}
.tabla-sistema tbody tr.fila-seleccionada {
  background: #d4f1f8 !important;
  box-shadow: inset 3px 0 0 #29B6D8;
}
.tabla-sistema tbody td {
  font-size: 10.3pt;
  font-weight: 300;
  color: #3d5166;
  height: 28px;
  padding: 0 6px;
  border-bottom: 1px solid #e8eef5;
  border-right: 1px solid #f0f4f8;
  vertical-align: middle;
}
.tabla-sistema tbody td:last-child {
  border-right: none;
}
.tabla-sistema tbody td input[type=text] {
  background: transparent !important;
  border: none !important;
  color: #3d5166;
  width: 100%;
  height: 26px;
  padding: 0 5px;
  font-family: "Sora", sans-serif;
  font-size: 10.3pt;
  font-weight: 300;
}
.tabla-sistema tbody td input[type=text]:focus {
  background: rgba(41, 182, 216, 0.08) !important;
  outline: none;
}
.tabla-sistema tbody td select {
  background: transparent;
  border: none;
  color: #3d5166;
  width: 100%;
  height: 26px;
  font-family: "Sora", sans-serif;
  font-size: 10.3pt;
  font-weight: 300;
}
.tabla-sistema tbody td select:focus {
  outline: none;
}
.tabla-sistema tbody td input[type=checkbox] {
  accent-color: #29B6D8;
  cursor: pointer;
}
.tabla-sistema tbody tr:last-child td {
  border-bottom: none;
}

.tabla-historico thead tr {
  background: linear-gradient(135deg, #6c757d, #5a6268);
}
.tabla-historico thead th, .tabla-historico thead td {
  border-bottom-color: #495057;
}
.tabla-historico tbody tr:hover {
  background: #f4f5f6 !important;
}

.tabla-nota1 thead tr {
  background: linear-gradient(135deg, #f6d365, #f4a825);
}
.tabla-nota1 thead th, .tabla-nota1 thead td {
  color: #7d5a00;
  border-bottom-color: #d4891a;
  text-shadow: none;
}
.tabla-nota1 tbody tr:nth-child(even) {
  background: #fffbf0;
}
.tabla-nota1 tbody tr:hover {
  background: #fff3d0 !important;
}
.tabla-nota1 tbody td input[type=text] {
  background: #fef5e7 !important;
  color: #5d4200;
}

.tabla-nota2 thead tr {
  background: linear-gradient(135deg, #f9f45a, #e6dc28);
}
.tabla-nota2 thead th, .tabla-nota2 thead td {
  color: #7a6c00;
  border-bottom-color: #c8bc00;
  text-shadow: none;
}
.tabla-nota2 tbody tr:nth-child(even) {
  background: #fffff5;
}
.tabla-nota2 tbody tr:hover {
  background: #fdfdc8 !important;
}
.tabla-nota2 tbody td input[type=text] {
  background: #FBFBEF !important;
  color: #5a5000;
}

.tabla-nota3 thead tr {
  background: linear-gradient(135deg, #6fcf97, #27ae60);
}
.tabla-nota3 thead th, .tabla-nota3 thead td {
  color: #1a6b3a;
  border-bottom-color: #1e8449;
  text-shadow: none;
}
.tabla-nota3 tbody tr:nth-child(even) {
  background: #f2fcf5;
}
.tabla-nota3 tbody tr:hover {
  background: #d5f5e3 !important;
}
.tabla-nota3 tbody td input[type=text] {
  background: #EAFAF1 !important;
  color: #0d4a24;
}

.tabla-nota4 thead tr {
  background: linear-gradient(135deg, #c39bd3, #8e44ad);
}
.tabla-nota4 thead th, .tabla-nota4 thead td {
  color: #f5eef8;
  border-bottom-color: #7d3c98;
}
.tabla-nota4 tbody tr:nth-child(even) {
  background: #faf5fc;
}
.tabla-nota4 tbody tr:hover {
  background: #f0e6f6 !important;
}
.tabla-nota4 tbody td input[type=text] {
  background: #F5EEF8 !important;
  color: #3b1358;
}

/* ================================================================
           VARIABLES GLOBALES — PLATAFORMA SAIRA
        ================================================================ */
:root {
  --AzulSaira: #4EC3E4;
  --AzulOscuro: #2E90AC;
  --AzulGradiente: #2EA6C6;
  --NaranjaSaira: #FEA321;
  --BlancoPuro: #ffffff;
  --GrisFondo: #F0F4F8;
  --GrisTexto: #1E293B;
  --GrisSuave: #64748B;
  --GrisBorde: #E2E8F0;
  --VerdeExito: #22C55E;
  --RojoError: #EF4444;
  --SidebarAncho: 290px;
  --TopbarAltura: 66px;
  --RadioTarjeta: 20px;
  --SombraLigera: 0 1px 3px rgba(0,0,0,.06), 0 4px 16px rgba(0,0,0,.04);
  --SombraMedia: 0 4px 24px rgba(0,0,0,.08);
  --SombraFuerte: 0 10px 40px rgba(0,0,0,.12);
  --Transicion: all 0.28s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ================================================================
           RESET Y BASE
        ================================================================ */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  font-family: "Sora", sans-serif;
  background-color: var(--GrisFondo);
  margin: 0;
  color: var(--GrisTexto);
  overflow-x: hidden;
}

/* ================================================================
           SIDEBAR PRINCIPAL
        ================================================================ */
.SidebarPrincipal {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: var(--SidebarAncho);
  background: #0F2A3E;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: width 0.32s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.32s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 4px 0 32px rgba(0, 0, 0, 0.18);
}

.SidebarPrincipal.SidebarColapsado {
  width: 0;
}

.SidebarPrincipal.SidebarOculto {
  transform: translateX(-100%);
}

.SidebarPrincipal.SidebarVisible {
  transform: translateX(0);
}

@media (max-width: 992px) {
  .SidebarPrincipal {
    transform: translateX(-100%);
  }
  .SidebarPrincipal.SidebarVisible {
    transform: translateX(0);
  }
}
/* ── Cabecera del sidebar ── */
.SidebarCabecera {
  display: flex;
  align-items: center;
  padding: 20px 18px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  flex-shrink: 0;
  gap: 10px;
}

.SidebarLogo {
  display: flex;
  align-items: center;
  gap: 11px;
  overflow: hidden;
  flex: 1;
}

.SidebarEscudo {
  width: 40px !important;
  height: 40px !important;
  object-fit: contain;
  border-radius: 12px;
  background: rgba(78, 195, 228, 0.15);
  padding: 5px;
  border: 1px solid rgba(78, 195, 228, 0.25);
  flex-shrink: 0;
}

.SidebarLogoTexto {
  display: flex;
  flex-direction: column;
  white-space: nowrap;
}

.SidebarNombreSistema {
  font-size: 11.5pt;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.2px;
}

.SidebarVersionTag {
  font-size: 7.5pt;
  font-weight: 500;
  color: var(--AzulSaira);
  letter-spacing: 0.5px;
  margin-top: 1px;
}

/* ── Separador ── */
.SidebarSeparadorHorizontal {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 0 18px 6px;
  flex-shrink: 0;
}

/* ── Navegación ── */
.SidebarNavegacion {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 6px 0 10px;
}

.SidebarNavegacion::-webkit-scrollbar {
  width: 3px;
}

.SidebarNavegacion::-webkit-scrollbar-track {
  background: transparent;
}

.SidebarNavegacion::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 4px;
}

.SidebarListaMenu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.SidebarItemMenu {
  margin: 1px 0;
}

.SidebarEnlaceMenu {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  color: rgba(255, 255, 255, 0.72) !important;
  text-decoration: none !important;
  font-size: 9.5pt;
  font-weight: 500;
  cursor: pointer;
  border-left: 3px solid transparent;
  transition: var(--Transicion);
  white-space: nowrap;
}

.SidebarEnlaceMenu:hover {
  background: rgba(78, 195, 228, 0.1);
  color: #fff !important;
  border-left-color: var(--AzulSaira);
}

.SidebarIconoMenu {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--Transicion);
}

.SidebarTextoMenu {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.SidebarChevron {
  font-size: 9px !important;
  color: rgba(255, 255, 255, 0.35);
  margin-left: auto;
  flex-shrink: 0;
  transition: var(--Transicion);
}

/* ── Ítem abierto ── */
.SidebarItemConSubmenu.SidebarItemAbierto > .SidebarEnlaceMenu {
  background: rgba(78, 195, 228, 0.12);
  color: var(--AzulSaira) !important;
  border-left-color: var(--AzulSaira);
}

.SidebarItemConSubmenu.SidebarItemAbierto > .SidebarEnlaceMenu .SidebarChevron {
  transform: rotate(180deg);
  color: var(--AzulSaira);
}

.SidebarItemConSubmenu.SidebarItemAbierto > .SidebarEnlaceMenu .SidebarIconoMenu {
  background: rgba(78, 195, 228, 0.15);
  border-color: rgba(78, 195, 228, 0.25);
}

.SidebarItemConSubmenu.SidebarItemAbierto > .SidebarSubmenu {
  max-height: 1400px;
  opacity: 1;
}

/* ── Submenú ── */
.SidebarSubmenu {
  list-style: none;
  padding: 4px 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  background: rgba(0, 0, 0, 0.18);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: max-height 0.35s ease, opacity 0.25s ease;
}

.SidebarSubmenu > li > a {
  display: block;
  padding: 7px 18px 7px 48px;
  color: rgba(255, 255, 255, 0.58) !important;
  text-decoration: none !important;
  font-size: 9.5pt;
  font-weight: 400;
  border-left: 3px solid transparent;
  transition: var(--Transicion);
}

.SidebarSubmenu > li > a:hover {
  background: rgba(78, 195, 228, 0.08);
  color: rgba(255, 255, 255, 0.9) !important;
  border-left-color: var(--NaranjaSaira);
  padding-left: 54px;
}

.SidebarDivisorSubmenu {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 4px 18px 4px 48px;
}

/* ── Nivel 2 ── */
.SidebarEnlaceNivel2 {
  padding: 7px 18px 7px 48px !important;
  font-size: 9.5pt !important;
  font-weight: 500 !important;
  color: rgba(255, 255, 255, 0.58) !important;
  border-left: 3px solid transparent;
}

.SidebarEnlaceNivel2:hover {
  background: rgba(78, 195, 228, 0.08) !important;
  color: rgba(255, 255, 255, 0.9) !important;
  border-left-color: var(--NaranjaSaira) !important;
}

.SidebarSubmenu > .SidebarItemConSubmenu.SidebarItemAbierto > .SidebarEnlaceNivel2 {
  background: rgba(78, 195, 228, 0.1);
  color: var(--AzulSaira) !important;
  border-left-color: var(--NaranjaSaira);
}

.SidebarSubmenu > .SidebarItemConSubmenu.SidebarItemAbierto > .SidebarEnlaceNivel2 .SidebarChevron {
  transform: rotate(180deg);
  color: var(--NaranjaSaira);
}

.SidebarSubmenu > .SidebarItemConSubmenu.SidebarItemAbierto > .SidebarSubmenuNivel2 {
  max-height: 600px;
  opacity: 1;
}

.SidebarSubmenuNivel2 {
  background: rgba(0, 0, 0, 0.15);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.SidebarSubmenuNivel2 > li > a {
  padding-left: 64px !important;
  font-size: 9.5pt;
  color: rgba(255, 255, 255, 0.48) !important;
}

.SidebarSubmenuNivel2 > li > a:hover {
  padding-left: 70px !important;
  color: rgba(255, 255, 255, 0.85) !important;
  border-left-color: var(--AzulSaira);
}

/* ── Botón salir ── */
.SidebarPieSalir {
  padding: 12px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  flex-shrink: 0;
}

.SidebarBotonSalir {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 12px;
  color: #FC8181 !important;
  text-decoration: none !important;
  font-size: 9.5pt;
  font-weight: 600;
  transition: var(--Transicion);
}

.SidebarBotonSalir:hover {
  background: rgba(239, 68, 68, 0.18);
  border-color: rgba(239, 68, 68, 0.4);
  transform: translateX(3px);
}

/* ================================================================
           OVERLAY MÓVIL
        ================================================================ */
.OverlayMovil {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1040;
  backdrop-filter: blur(3px);
  opacity: 0;
  pointer-events: none;
  transition: var(--Transicion);
}

@media (max-width: 992px) {
  .OverlayMovil {
    display: block;
  }
  .OverlayMovil.OverlayVisible {
    opacity: 1;
    pointer-events: auto;
  }
}
/* ================================================================
           ÁREA DE CONTENIDO
        ================================================================ */
.AreaContenido {
  margin-left: var(--SidebarAncho);
  min-height: 100vh;
  background: var(--GrisFondo);
  display: flex;
  flex-direction: column;
  transition: margin-left 0.32s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.AreaContenido.AreaContenidoExpandida {
  margin-left: 0;
}

@media (max-width: 992px) {
  .AreaContenido {
    margin-left: 0;
  }
}
/* ================================================================
           TOPBAR
        ================================================================ */
.TopbarPrincipal {
  position: sticky;
  top: 0;
  z-index: 900;
  height: var(--TopbarAltura);
  background: var(--BlancoPuro);
  border-bottom: 1px solid var(--GrisBorde);
  box-shadow: 0 1px 0 var(--GrisBorde), 0 4px 16px rgba(0, 0, 0, 0.04);
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.SidebarBtnToggle {
  background: transparent;
  border: 1.5px solid var(--GrisBorde);
  color: var(--GrisSuave);
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: var(--Transicion);
}

.SidebarBtnToggle i {
  font-size: 14px;
}

.SidebarBtnToggle:hover {
  background: rgba(78, 195, 228, 0.08);
  color: var(--AzulOscuro);
  border-color: var(--AzulSaira);
}

.TopbarInfoSistema {
  flex: 1;
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.TopbarNombreSistema {
  font-size: 13pt !important;
  font-weight: 800 !important;
  color: var(--GrisTexto) !important;
  letter-spacing: -0.3px;
}

.TopbarSubtituloSistema {
  font-size: 8.5pt !important;
  color: var(--GrisSuave) !important;
  font-weight: 400 !important;
}

@media (max-width: 576px) {
  .TopbarSubtituloSistema {
    display: none;
  }
}
.TopbarLadoDerecho {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.TopbarReloj {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--GrisFondo);
  border: 1px solid var(--GrisBorde);
  border-radius: 12px;
  padding: 7px 15px;
  font-size: 10pt;
  font-weight: 600;
  color: var(--GrisTexto);
  font-variant-numeric: tabular-nums;
}

.TopbarReloj i {
  color: var(--AzulSaira);
  font-size: 11px;
}

/* ================================================================
           DASHBOARD — CONTENEDOR
        ================================================================ */
.DashboardContenedor {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}

@media (max-width: 768px) {
  .DashboardContenedor {
    padding: 16px;
    gap: 16px;
  }
}
/* ================================================================
           TARJETA COLEGIO — HERO CARD
        ================================================================ */
.TarjetaColegio {
  background: var(--BlancoPuro);
  border-radius: var(--RadioTarjeta);
  overflow: hidden;
  box-shadow: var(--SombraMedia);
  position: relative;
}

/* Patrón decorativo de fondo */
.TarjetaColegio::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(78, 195, 228, 0.14) 0%, transparent 70%);
  pointer-events: none;
}

.TarjetaColegio::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 30%;
  width: 320px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(254, 163, 33, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.TarjetaColegioBarraTop {
  height: 4px;
  background: linear-gradient(90deg, var(--AzulOscuro) 0%, var(--AzulSaira) 55%, var(--NaranjaSaira) 100%);
}

.TarjetaColegioInterior {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 32px;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .TarjetaColegioInterior {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    gap: 16px;
  }
}
/* Escudo */
.ColegioEscudoContenedor {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  backdrop-filter: blur(4px);
}

.ColegioEscudoImagen {
  width: 62px !important;
  height: 62px !important;
  object-fit: contain;
}

/* Texto */
.ColegioTextoBloque {
  flex: 1;
}

.ColegioLema {
  display: block;
  font-size: 9pt !important;
  font-weight: 600 !important;
  color: var(--AzulSaira) !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.ColegioNombre {
  display: block;
  font-size: 16pt !important;
  font-weight: 700 !important;
  color: #1a1a1a !important;
  line-height: 1.15;
  letter-spacing: -0.4px;
  margin-bottom: 8px;
}

.ColegioDatosLegales {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .ColegioDatosLegales {
    justify-content: center;
  }
}
.ColegioDatoItem {
  font-size: 9pt;
  color: #1a1a1a !important;
  font-weight: 400;
}

.ColegioDatoPunto {
  color: rgba(52, 152, 219, 0.9);
  font-size: 9pt;
}

/* Estado sistema */
.ColegioEstadoSistema {
  flex-shrink: 0;
}

.ColegioInsigniaActivo {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 24px;
  padding: 7px 16px;
  font-size: 8.5pt;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: var(--Transicion);
}

.ColegioPuntoEstado {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: AnimacionPulso 2s infinite;
}

.ColegioEstadoActivo {
  background: rgba(34, 197, 94, 0.15);
  color: #4ADE80;
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.ColegioEstadoActivo .ColegioPuntoEstado {
  background: #4ADE80;
}

.ColegioEstadoInestable {
  background: rgba(254, 163, 33, 0.15);
  color: var(--NaranjaSaira);
  border: 1px solid rgba(254, 163, 33, 0.28);
}

.ColegioEstadoInestable .ColegioPuntoEstado {
  background: var(--NaranjaSaira);
}

.ColegioEstadoOffline {
  background: rgba(239, 68, 68, 0.15);
  color: #FC8181;
  border: 1px solid rgba(239, 68, 68, 0.25);
}

.ColegioEstadoOffline .ColegioPuntoEstado {
  background: #FC8181;
  animation: none;
}

@keyframes AnimacionPulso {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.45);
    opacity: 0.55;
  }
}
/* ================================================================
           FILA DE UNA COLUMNA
        ================================================================ */
.DashboardFilaUnaColumnas {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

/* ================================================================
           TARJETA INFO SISTEMA
        ================================================================ */
.TarjetaInfoSistema {
  background: var(--BlancoPuro);
  border-radius: var(--RadioTarjeta);
  border: 1px solid var(--GrisBorde);
  box-shadow: var(--SombraLigera);
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Encabezado con degradado sutil */
.InfoSistemaEncabezado {
  padding: 20px 26px 18px;
  border-bottom: 1px solid var(--GrisBorde);
  background: linear-gradient(to right, #FAFCFF, var(--BlancoPuro));
  display: flex;
  align-items: center;
  gap: 14px;
}

.InfoSistemaIconoTitulo {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--AzulOscuro), var(--AzulSaira));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(46, 144, 172, 0.3);
}

.InfoSistemaIconoTitulo i {
  color: #fff;
  font-size: 15px;
}

.InfoSistemaTitulo {
  font-size: 13.5pt;
  font-weight: 700;
  color: var(--GrisTexto);
  margin: 0;
}

.InfoSistemaTitulo span,
.InfoSistemaTitulo label {
  font-size: 13.5pt !important;
  font-weight: 700 !important;
  color: var(--GrisTexto) !important;
}

/* Bloque datos */
.InfoSistemaCuerpo {
  padding: 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.InfoSistemaBloqueGris {
  background: #F8FAFC;
  border-radius: 14px;
  border: 1px solid var(--GrisBorde);
  overflow: hidden;
}

.InfoSistemaFilaDato {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 18px;
  border-bottom: 1px solid #F1F5F9;
  transition: var(--Transicion);
}

.InfoSistemaFilaDato:last-child {
  border-bottom: none;
}

.InfoSistemaFilaDato:hover {
  background: rgba(78, 195, 228, 0.04);
}

.InfoSistemaDatoIcono {
  width: 34px;
  height: 34px;
  background: rgba(78, 195, 228, 0.1);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.InfoSistemaDatoIcono i {
  color: var(--AzulOscuro);
  font-size: 12px;
}

.InfoSistemaDatoEtiqueta {
  font-size: 9.5pt;
  color: var(--GrisSuave);
  font-weight: 500;
  width: 160px;
  flex-shrink: 0;
}

.InfoSistemaDatoValor {
  font-size: 9.5pt;
  font-weight: 600;
  color: var(--GrisTexto);
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.InfoSistemaDatoValor span,
.InfoSistemaDatoValor label {
  font-family: inherit;
  font-size: 9.5pt !important;
  font-weight: 600 !important;
  color: var(--GrisTexto) !important;
}

/* Subtítulo accesos */
.InfoSistemaSubtitulo {
  font-size: 8pt;
  font-weight: 700;
  color: var(--GrisSuave);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 12px;
}

/* ================================================================
           ACCESOS RÁPIDOS
        ================================================================ */
.AccesosRapidosGrilla {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

@media (max-width: 576px) {
  .AccesosRapidosGrilla {
    grid-template-columns: repeat(2, 1fr);
  }
}
.AccesoRapidoBoton {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 8px;
  background: #F8FAFC;
  border: 1px solid var(--GrisBorde);
  border-radius: 14px;
  text-decoration: none !important;
  color: var(--GrisTexto) !important;
  font-size: 9pt;
  font-weight: 500;
  text-align: center;
  transition: var(--Transicion);
  position: relative;
  overflow: hidden;
}

.AccesoRapidoBoton::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(135deg, var(--AzulOscuro), var(--AzulSaira));
  transition: var(--Transicion);
}

.AccesoRapidoBoton i,
.AccesoRapidoBoton span {
  position: relative;
  z-index: 1;
}

.AccesoRapidoBoton i {
  font-size: 18px;
  color: var(--AzulSaira);
  transition: var(--Transicion);
}

.AccesoRapidoBoton:hover {
  color: #fff !important;
  border-color: var(--AzulSaira);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(46, 144, 172, 0.2);
}

.AccesoRapidoBoton:hover::before {
  opacity: 1;
}

.AccesoRapidoBoton:hover i {
  color: #fff;
  transform: scale(1.18);
}

.AccesoRapidoBoton.AccesoRapidoWhatsApp i {
  color: #25D366;
}

.AccesoRapidoBoton.AccesoRapidoWhatsApp:hover {
  border-color: #25D366;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.2);
}

.AccesoRapidoBoton.AccesoRapidoWhatsApp:hover::before {
  background: linear-gradient(135deg, #128C7E, #25D366);
}

/* ================================================================
           PIE DEL DASHBOARD
        ================================================================ */
.DashboardPie {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px 0 6px;
  border-top: 1px solid var(--GrisBorde);
  font-size: 8.5pt;
  color: var(--GrisSuave);
  font-weight: 400;
}

.DashboardPie span,
.DashboardPie label {
  font-size: 8.5pt !important;
  font-weight: 400 !important;
  color: var(--GrisSuave) !important;
}

.DashboardPiePunto {
  color: var(--GrisBorde);
}

/* ================================================================
           BOTONES SAIRA
        ================================================================ */
.BtnSaira {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 11px;
  font-family: "Sora", sans-serif;
  font-size: 9.5pt;
  font-weight: 600;
  text-decoration: none !important;
  cursor: pointer;
  border: none;
  transition: var(--Transicion);
}

.BtnSairaPrimario {
  background: linear-gradient(135deg, var(--AzulOscuro) 0%, var(--AzulSaira) 100%);
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(46, 144, 172, 0.3);
}

.BtnSairaPrimario:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46, 144, 172, 0.4);
}

.BtnSairaCancelar {
  background: rgba(254, 163, 33, 0.08);
  color: #b87400 !important;
  border: 1.5px solid rgba(254, 163, 33, 0.3);
}

.BtnSairaCancelar:hover {
  background: var(--NaranjaSaira);
  color: #fff !important;
  border-color: var(--NaranjaSaira);
  transform: translateY(-2px);
}

/* ================================================================
           MODAL
        ================================================================ */
.ModalContenido {
  border-radius: 22px !important;
  overflow: hidden;
  border: none;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.15);
}

.ModalCabecera {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px 18px;
  background: #0F2A3E;
  position: relative;
}

.ModalCabeceraIcono {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(78, 195, 228, 0.18);
  border: 1px solid rgba(78, 195, 228, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ModalCabeceraIcono i {
  color: var(--AzulSaira);
  font-size: 18px;
}

.ModalCabeceraTexto {
  flex: 1;
}

.ModalTitulo {
  font-size: 13pt;
  font-weight: 800;
  color: #fff;
  margin: 0 0 2px;
}

.ModalSubtitulo {
  font-size: 8.5pt;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  display: block;
}

.ModalBtnCerrarX {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--Transicion);
  flex-shrink: 0;
}

.ModalBtnCerrarX:hover {
  background: rgba(239, 68, 68, 0.25);
  border-color: rgba(239, 68, 68, 0.4);
  color: #FC8181;
}

.ModalBtnCerrarX i {
  font-size: 12px;
}

.ModalCuerpo {
  padding: 24px;
  background: var(--BlancoPuro);
}

.ModalCampoGrupo {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ModalEtiquetaCampo {
  font-size: 9.5pt;
  font-weight: 700;
  color: var(--GrisTexto);
  display: flex;
  align-items: center;
  gap: 7px;
}

.ModalSelectCampo {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--GrisBorde);
  border-radius: 11px;
  font-family: "Sora", sans-serif;
  font-size: 9.5pt;
  color: var(--GrisTexto);
  background: var(--BlancoPuro);
  transition: var(--Transicion);
  appearance: auto;
}

.ModalSelectCampo:focus {
  outline: none;
  border-color: var(--AzulSaira);
  box-shadow: 0 0 0 3px rgba(78, 195, 228, 0.15);
}

.ModalFilasDatos {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ModalFilaDato {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: #F8FAFC;
  border-radius: 11px;
  border: 1px solid var(--GrisBorde);
  transition: var(--Transicion);
}

.ModalFilaDato:hover {
  background: rgba(78, 195, 228, 0.04);
  border-color: rgba(78, 195, 228, 0.22);
}

.ModalDatoIcono {
  width: 32px;
  height: 32px;
  background: rgba(78, 195, 228, 0.1);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ModalDatoIcono i {
  color: var(--AzulOscuro);
  font-size: 13px;
}

.ModalDatoEtiqueta {
  font-size: 8.5pt;
  color: var(--GrisSuave);
  font-weight: 500;
  min-width: 130px;
}

.ModalDatoValor {
  font-size: 9pt;
  font-weight: 600;
  color: var(--GrisTexto);
  flex: 1;
  text-align: right;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ModalDatoValor span,
.ModalDatoValor label {
  font-size: 9pt !important;
  font-weight: 600 !important;
  color: var(--GrisTexto) !important;
}

.ModalPie {
  padding: 14px 24px 20px;
  background: #F8FAFC;
  border-top: 1px solid var(--GrisBorde);
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

/* ================================================================
           TOAST
        ================================================================ */
.ToastCabecera {
  background: #0F2A3E;
  border-bottom: none;
  border-radius: 14px 14px 0 0;
}

.ToastCuerpo {
  background: var(--BlancoPuro);
  color: var(--GrisTexto);
  border-radius: 0 0 14px 14px;
  font-family: "Sora", sans-serif;
  min-height: 60px;
  padding: 14px 16px;
}

/* ================================================================
           ANIMACIONES
        ================================================================ */
.TarjetaInfoSistema,
.TarjetaColegio {
  animation: EntradaSuave 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.DashboardFilaUnaColumnas {
  animation: EntradaSuave 0.5s 0.08s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes EntradaSuave {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
