:focus:not(:focus-visible) {
  outline: none;
  box-shadow: none;
}
body{
  background: linear-gradient(150deg, rgb(69, 181, 255), rgb(108, 0, 197),rgb(69, 181, 255), rgb(108, 0, 197));
    background-attachment: scroll;
  background-attachment: fixed;
  margin: 0% 0% 0% 0%;
}
.contenedorC{
    display:none ;
    width: 100%;
    padding-bottom: 13%;
    /*background-color: rgba(255, 255, 255, 0.3);*/
    position: relative;
    margin-top: 28px;
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px); 
    display: flex;
    flex-direction: row; 
    flex-direction: column;
    align-items: stretch;     /* botones uno debajo del otro, usa 'column' si los quieres en línea */
    min-height: 60vh;            /* ajusta según el alto que desees */
    gap: 20px;
}
.conte-menu-busquedaL{
    width: 100%;
    height: 6vh;
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;         /* <-- Esto permite que los botones bajen a otra fila */
    justify-content: center; /* Centra horizontalmente */
    align-items: flex-start; /* Opcional: alinea arriba */
    gap: 14px;
}
.BtAGpL{
    width: 93px;
    height: 30px;
    font-size: 12px;
    background-color: aliceblue; 
    color: #6200ea;
    border-color: aqua;
    border-radius: 10px;
    position: relative;
    top: 2%;
}
.contenedor-menubusquedaL{
  max-width: 408px;
  height: 9vh;
  margin: 0 auto;
  padding-bottom: 2%;
  position: relative;
  display: none;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  top: -12px;
}
.BtAGBL{
    width: 83px;
    height: 25px;
    font-size: 8px;
    background-color: white;
    border-color: aqua;
    color: rgb(153, 0, 173);
    border-radius: 10px;
    position: relative;
    top: 2%;
    text-align: center;
    text-align-last: center;
}
.BtAGBL.filtro-activo {
  background-color: rgb(153, 0, 173) !important;
  color: white !important;
}
.resultadosbusquedaL{
    width: 100%;
}
.circle-svg-container {
  width: 265px;         /* Ajusta el tamaño del círculo */
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 29px;            /* Espacio entre los SVG */
  margin: 0 auto;       /* Centra el círculo horizontalmente */
  position: relative;
}
.circle-svg-container span {
  display: flex;
  align-items: center;
  justify-content: center;
}
.circle-svg-container span:first-child {
  transform: rotate(-20deg);
}
.circle-svg-container span:last-child {
  transform: rotate(30deg);
}