/* Style General*/

body{
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Evita que aparezca una barra de navegación horizontal */
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    /* Crea una capa un poco más grande para tener margen de movimiento */
    width: 200%;
    height: 100%;
    
    /* fondo original para el movimiento continuo */
    background-image: url(/imagenes/capibarasbground.png);
    background-repeat: repeat; /*repeat para que no se acabe la imagen */
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    
    /* mandarlo al fondo y preparar la GPU */
    z-index: -1;
    will-change: transform;
    
    /* animacion: */
    /* 40s para una velocidad suave y relajante */
    animation: moverFondoContinuo 40s linear infinite; 
}

/* animacion: */
@keyframes moverFondoContinuo {
    from {
        /* translate3d para activar la aceleración por hardware sin lag */
        transform: translate3d(0, 0, 0);
    }
    to {
        /* Se desplaza hacia la izquierda. Al llegar a -50% el ciclo se reinicia de forma invisible */
        transform: translate3d(-50%, 0, 0);
    }
}

a {
    transition: color 0.25s ease;
}

a:hover{
    color: beige;
}

@keyframes myFrameDash {
    0% {
        transform: scale(0);   /* Empieza completamente diminuto en el centro (adentro) */
        opacity: 0;            /* Invisible */
    }
    70% {
        transform: scale(1.2); /* Se infla un poco más de su tamaño real (efecto burbuja) */
        opacity: 0.7;
    }
    100% {
        transform: scale(1);   /* Regresa a su tamaño original (estabilización) */
        opacity: 1;            /* Completamente visible */
    }
}


/* interaccion: */
body.bloquear-scroll {
    overflow: hidden !important;
    touch-action: none !important; /* Bloquea gestos táctiles en móviles */
    -ms-touch-action: none !important;
}


/* textos */

h1{
    text-align: center;
    text-shadow: 1px 2px 0px rgb(0, 0, 0);
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 34px;
    font-style: italic;
    color:rgb(255, 255, 255);
    
    animation: 0.5s linear 0s 1 running myFrameDash;
 display:block;
 position:relative
}

h2{
    text-align: center;
    text-shadow: 1px 2px 0px rgb(0, 0, 0);
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 34px;
    font-style: italic;
    color:rgb(255, 255, 255);
    
    animation: 0.5s linear 0s 1 running myFrameDash;
 display:block;
 position:relative
}

h3{
    text-align: center;
    text-shadow: 1px 2px 0px rgb(0, 0, 0);
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 34px;
    font-style: italic;
    color:rgb(255, 255, 255);
    
    animation: 0.5s linear 0s 1 running myFrameDash;
 display:block;
 position:relative
}

p{
    font-family: 'Times New Roman', Times, serif;
     font-size: 1.2rem; line-height: 1.6;
     border-style: outset;
     border-width: 3px;
     border-color: black;
     background: linear-gradient(rgba(165, 42, 42, 0.900),rgba(255, 140, 0, 0.900), rgba(165, 42, 42, 0.900));
    background-repeat: no-repeat;
    background-attachment: fixed;
     border-radius: 11px;
     color:aliceblue;
     padding: 14px;

     animation: 0.5s linear 0s 1 running myFrameDashSlow;
 display:block;
 position:relative
}


#Pnovedades{
    text-shadow: 1px 1px 0px black;
    font-family: 'Times New Roman', Times, serif;
     font-size: 1.2rem; line-height: 1.6;
     border-style: outset;
     border-width: 3px;
     border-color: black;
     background: linear-gradient(pink, purple);
     border-radius: 11px;
     color:aliceblue;
     padding: 14px;
     font-weight: bold;
     animation: 0.5s linear 0s 1 running myFrameDashSlow;
 display:block;
 position:relative
}

#PTexto{
    text-shadow: 1px 1px 0px black;
    font-family: 'Times New Roman', Times, serif;
     font-size: 1.2rem; line-height: 1.6;
     border-style: outset;
     border-width: 3px;
     border-color: black;
     background: linear-gradient(pink, purple);
     border-radius: 11px;
     color:aliceblue;
     padding: 14px;
     font-weight: bold;
     animation: 0.5s linear 0s 1 running myFrameDashSlow;
 display:block;
 position:relative
}

h4{
    text-align: center;
    text-shadow: 0px 1px 0px rgb(0, 0, 0);
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 18px;
    font-style: italic;
    color:rgb(255, 255, 255);
    font-weight:bold;
    animation: 0.5s linear 0s 1 running myFrameDash;
 display:block;
 position:relative
}


label{
    text-shadow: 1px 2px 1px black;
    font-family: 'Times New Roman', Times, serif;
     color:aliceblue;
}

#boxMain{
    position:-webkit-sticky;
     position:sticky;
     top:0px;
    left:0px;
    z-index: 100;
    border: 4px solid;
    padding: 5px;

    animation: 0.5s linear 0s 1 running myFrameDash;
 animation-fill-mode: forwards; border-radius: 10px;
    border-width: 3px;
    border-color: black;
    background: linear-gradient(to right, rgb(250, 168, 247), rgb(255, 55, 195), rgba(250, 168, 247));
    background-size: 200% auto;
    margin: 0; 
    color: rgb(255, 255, 255); 
    width: 125px; 
    height: 55px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    text-shadow: 0px 2px 0px black;
    font-size: 100%;
    
    animation: 
        0.8s cubic-bezier(0.25, 1, 0.5, 1) 0s 1 running myFrameDash,
        moverDegradado 3s linear infinite;
        
    transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.25s ease, filter 0.25s ease;
}


#box1{
    position:-webkit-sticky;
     position:sticky;
     top:0px;
    left:0px;
    z-index: 100;
    border: 4px solid;
    padding: 5px;

    animation: 0.5s linear 0s 1 running myFrameDash;
 animation-fill-mode: forwards; border-radius: 10px;
    border-width: 3px;
    border-color: black;
    background: linear-gradient(to right, rgb(250, 168, 247), rgb(255, 55, 195), rgba(250, 168, 247));
    background-size: 200% auto;
    margin: 0; 
    color: rgb(255, 255, 255); 
    width: 125px; 
    height: 55px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    text-shadow: 0px 2px 0px black;
    font-size: 100%;
    
    animation: 
        0.8s cubic-bezier(0.25, 1, 0.5, 1) 0s 1 running myFrameDash,
        moverDegradado 3s linear infinite;
        
    transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.25s ease, filter 0.25s ease;
}

#boxBook{
   position:-webkit-sticky;
     position:sticky;
     top:0px;
    left:0px;
    z-index: 100;
    border: 4px solid;
    padding: 5px;

    animation: 0.5s linear 0s 1 running myFrameDash;
 animation-fill-mode: forwards; border-radius: 10px;
    border-width: 3px;
    border-color: black;
    background: linear-gradient(to right, rgb(250, 168, 247), rgb(255, 55, 195), rgba(250, 168, 247));
    background-size: 200% auto;
    margin: 0; 
    color: rgb(255, 255, 255); 
    width: 125px; 
    height: 55px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    text-shadow: 0px 2px 0px black;
    font-size: 100%;
    
    animation: 
        0.8s cubic-bezier(0.25, 1, 0.5, 1) 0s 1 running myFrameDash,
        moverDegradado 3s linear infinite;
        
    transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.25s ease, filter 0.25s ease;
}

#boxLecturas{
    position:-webkit-sticky;
     position:sticky;
     top:0px;
    left:0px;
    z-index: 100;
    border: 4px solid;
    padding: 5px;

    animation: 0.5s linear 0s 1 running myFrameDash;
 animation-fill-mode: forwards; border-radius: 10px;
    border-width: 3px;
    border-color: black;
    background: linear-gradient(to right, rgb(250, 168, 247), rgb(255, 55, 195), rgba(250, 168, 247));
    background-size: 200% auto;
    margin: 0; 
    color: rgb(255, 255, 255); 
    width: 125px; 
    height: 55px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    text-shadow: 0px 2px 0px black;
    font-size: 100%;
    
    animation: 
        0.8s cubic-bezier(0.25, 1, 0.5, 1) 0s 1 running myFrameDash,
        moverDegradado 3s linear infinite;
        
    transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.25s ease, filter 0.25s ease;
}


textarea {
    width: 100%;            /* Se estira para ocupar todo el ancho disponible */
    height: 250px;          /* Una altura inicial cómoda para escribir */
    box-sizing: border-box; /* Evita que el padding o los bordes lo saquen de la pantalla */
    margin: 20px 0;         /* Le da aire arriba y abajo para que no se pegue a los botones */
    
    /* Opcional: Para mejorar el diseño visual y quitar el estilo antiguo */
    padding: 15px;
    border: 3px solid #000000;
    border-radius: 8px;
    font-size: 16px;
    font-family: sans-serif;
    resize: none;           /* Evita que el usuario lo deforme arrastrando la esquina */
}
@keyframes myFrameDash {
    0% {
        transform: scale(0);   /* Empieza completamente diminuto en el centro (adentro) */
        opacity: 0;            /* Invisible */
    }
    70% {
        transform: scale(1.2); /* Se infla un poco más de su tamaño real (efecto burbuja) */
        opacity: 0.7;
    }
    100% {
        transform: scale(1);   /* Regresa a su tamaño original (estabilización) */
        opacity: 1;            /* Completamente visible */
    }
}

/* Buttons */

button{
     border-radius: 4px;
    border-width: 3.7px;
    border-color: black;
    
    background: linear-gradient(to right, blue, aqua, blue);

    background-size: 200% auto;

    margin: 0; 
    display: inline-block;
    position: relative;
    
    color: rgb(255, 255, 255); 
    width: 160px; 
    height: 50px;
    font-family: fantasy;
    text-shadow: 1px 2px 1px black;
    font-size: 99%;
    
    animation: 
        0.8s cubic-bezier(0.25, 1, 0.5, 1) 0s 1 running myFrameDash,
        moverDegradado 3s linear infinite;
        
    transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.25s ease, filter 0.25s ease;
}

#buttonNove{
    border-radius: 9px;
     border-width: 4px;
     border-color: black;
    background: linear-gradient(rgb(188, 38, 230), rgb(108, 2, 108));
    margin-right: 50%; 
     color:
     rgb(255, 255, 255); 
     width: 150px; height: 45px;
      font-family:fantasy;
      font-size: 90%;
      
      /* Duración a 1s y transiciones */
      animation: 1s cubic-bezier(0.25, 1, 0.5, 1) 0s 1 running myFrameDash;
      transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.25s ease, filter 0.25s ease;
 display:block;
 position:relative
}

#buttonVideos{
    border-radius: 4px;
    border-width: 3.7px;
    border-color: black;
    
    /* 1. Crear un degradado que va y vuelve (Naranja -> Púrpura -> Naranja) */
    background: linear-gradient(to right, rgb(232, 104, 255), rgba(255, 0, 251, 0.5), rgb(255, 0, 119), rgb(228, 76, 255));
    /* 2. el fondo el doble de ancho para poder desplazarlo */
    background-size: 200% auto;
    
    /* Corrección de posición para que se centre con flexbox */
    margin: 0; 
    display: inline-block;
    position: relative;
    
    color: rgb(255, 255, 255); 
    width: 180px; 
    height: 55px;
    font-family: fantasy;
    text-shadow: 1px 2px 1px black;
    font-size: 139%;
    
    /* 3. animación de entrada corre 1 vez y la del fondo infinita */
    animation: 
        0.8s cubic-bezier(0.25, 1, 0.5, 1) 0s 1 running myFrameDash,
        moverDegradado 3s linear infinite; /* segundos para una transición suave */
        
    transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.25s ease, filter 0.25s ease;
}

/*fotogramas para mover el fondo infinitamente hacia la derecha */
@keyframes myFrameDash {
    0% {
        transform: scale(0);   /* Empieza completamente diminuto en el centro (adentro) */
        opacity: 0;            /* Invisible */
    }
    70% {
        transform: scale(1.2); /* Se infla un poco más de su tamaño real (efecto burbuja) */
        opacity: 0.7;
    }
    100% {
        transform: scale(1);   /* Regresa a su tamaño original (estabilización) */
        opacity: 1;            /* Completamente visible */
    }
}

.download{
     border-radius: 4px;
    border-width: 3.7px;
    border-color: black;
    
    background: linear-gradient(to right,rgba(11, 190, 68, 0.614), rgb(91, 255, 115), rgba(11, 190, 68, 0.614));

    background-size: 200% auto;

    margin: 0; 
    display: inline-block;
    position: relative;
    
    color: rgb(255, 255, 255); 
    width: 160px; 
    height: 50px;
    font-family: fantasy;
    text-shadow: 1px 2px 1px black;
    font-size: 99%;
    
    animation: 
        0.8s cubic-bezier(0.25, 1, 0.5, 1) 0s 1 running myFrameDash,
        moverDegradado 3s linear infinite;
        
    transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.25s ease, filter 0.25s ease;
}

#mantenimientoButton{
    border-radius: 9px;
     border-width: 4px;
     border-color: black;
    background: linear-gradient(blue, darkblue);
    margin-right: 50%; 
     color:
     rgb(255, 255, 255); 
     width: 150px; height: 56px;
      font-family:fantasy;
      font-size: 53%;
      
      /*Duración a 1s y transiciones */
      animation: 1s cubic-bezier(0.25, 1, 0.5, 1) 0s 1 running myFrameDash;
      transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.25s ease, filter 0.25s ease;
 display:block;
 position:relative
}

#dowland{
    border-radius: 3px;
     border-width: 4px;
     border-color: black;
    background: linear-gradient(rgb(0, 0, 0), rgb(255, 0, 0));
    margin-right: 50%; 
     color:aliceblue;
     width: 150px; height: 42px;
      font-family:fantasy;
      font-size: 100%;
      
      /*Duración a 1s y transiciones */
      animation: 1s cubic-bezier(0.25, 1, 0.5, 1) 0s 1 running myFrameDash;
      transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.25s ease, filter 0.25s ease;
 display:block;
 position:relative
}

#buttonCenter{
     border-radius: 4px;
    border-width: 3.7px;
    border-color: black;
    
    background: linear-gradient(to right, rgb(60, 236, 72), rgba(0, 255, 68, 0.505), rgb(0, 255, 179), rgb(76, 255, 82));

    background-size: 200% auto;

    margin: 0; 
    display: inline-block;
    position: relative;
    
    color: rgb(255, 255, 255); 
    width: 160px; 
    height: 55px;
    font-family: fantasy;
    text-shadow: 1px 2px 1px black;
    font-size: 99%;
    
    animation: 
        0.8s cubic-bezier(0.25, 1, 0.5, 1) 0s 1 running myFrameDash,
        moverDegradado 3s linear infinite;
        
    transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.25s ease, filter 0.25s ease;
}


.contenedor-botones {
    display: flex;            
    justify-content: center; 
    gap: 15px;               
    flex-wrap: wrap;         
    width: 100%;             
    margin-top: 20px;         
}


#buttonPDFTX {
    border-radius: 4px;
    border-width: 3.7px;
    border-color: black;
    
    background: linear-gradient(to right, rgb(60, 236, 72), rgba(0, 255, 68, 0.505), rgb(0, 255, 179), rgb(76, 255, 82));

    background-size: 200% auto;

    margin: 0; 
    display: inline-block;
    position: relative;
    
    color: rgb(255, 255, 255); 
    width: 160px; 
    height: 55px;
    font-family: fantasy;
    text-shadow: 1px 2px 1px black;
    font-size: 99%;
    
    animation: 
        0.8s cubic-bezier(0.25, 1, 0.5, 1) 0s 1 running myFrameDash,
        moverDegradado 3s linear infinite;
        
    transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.25s ease, filter 0.25s ease;
  
}

#buttonPDFTX:hover{
    color: rgb(255, 255, 255);
    /* Sombra con degradado difuminado */
    box-shadow: 0px 14px 3px rgba(26, 142, 243, 0.5); 
    transform: translateY(-7px); /* Eleva el botón */
    filter: brightness(1.4); /* luz al pasar el cursor */
}

#buttonPDFTX:active{
    color: rgb(255, 255, 255);
    box-shadow: 0px 10px 1px rgba(10, 215, 55, 0.602);
    transform: translateY(5px); /* Efecto físico de hundimiento al presionarlo */
}


.contenedor-fila{
    display: flex;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: fit-content;
}

.parent{
    display: flex;
    justify-content: center;
    width: 100%;
}

/* EFECTOS DE INTERACCIÓN*/
button:hover{
    color: rgb(255, 255, 255);
    /* Sombra con degradado difuminado */
    box-shadow: 0px 8px 3px rgba(243, 163, 26, 0.5); 
    transform: translateY(-5px); /* Eleva el botón */
    filter: brightness(1.2); /* luz al pasar el cursor */
}

button:active{
    color: rgb(255, 255, 255);
    box-shadow: 0px 4px 1px rgba(13, 209, 65, 0.5);
    transform: translateY(1px); /* Efecto físico de hundimiento al presionarlo */
}

#buttonVideos:hover{
    color: rgb(255, 255, 255);
    /* Sombra con degradado difuminado */
    box-shadow: 0px 14px 3px rgba(26, 142, 243, 0.5); 
    transform: translateY(-12px); /* Eleva el botón */
    filter: brightness(1.4); /* luz al pasar el cursor */
}

#buttonVideos:active{
    color: rgb(255, 255, 255);
    box-shadow: 0px 10px 1px rgba(10, 215, 55, 0.602);
    transform: translateY(3px); /* Efecto físico de hundimiento al presionarlo */
}

@keyframes myFrameDash {
    0% {
        transform: scale(0);   /* Empieza completamente diminuto en el centro (adentro) */
        opacity: 0;            /* Invisible */
    }
    70% {
        transform: scale(1.2); /* Se infla un poco más de su tamaño real (efecto burbuja) */
        opacity: 0.7;
    }
    100% {
        transform: scale(1);   /* Regresa a su tamaño original (estabilización) */
        opacity: 1;            /* Completamente visible */
    }
}

/* Multimedia */


img{
    margin: 0 auto;
     border-radius: 4px;
     border-width: 5px;
     padding: 4px;
     background: linear-gradient(to right, rgb(187, 0, 255), rgb(0, 0, 0));
     border-color: black;
    height: auto;
    width: 55%;
    max-width: 600px;
    /* animacion: */
    animation: 1s cubic-bezier(0.25, 1, 0.5, 1) 0s 1 running myFrameDash;
    /* interaccion: */
    transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.25s ease;
 position:relative
}

#libroInicio{
     border-radius: 4px;
     border-width: 5px;
     padding: 4px;
     background: linear-gradient(to right, rgb(187, 0, 255), rgb(0, 0, 0));
     border-color: black;
    height: auto;
    width: 55%;
    max-width: 600px;
    /* animacion: */
    animation: 1s cubic-bezier(0.25, 1, 0.5, 1) 0s 1 running myFrameDash;
 display:block;
 position:relative
}
video{
     margin: 0 auto;
     border-radius: 4px;
     border-width: 5px;
     border-style: solid;
     padding: 4px;
     background: linear-gradient(to right, red, rgb(0, 0, 0));
     border-color: black;
    height: auto;
    width: 80%;
    max-width: 600px;
    /* animacion: */
    animation: 1s cubic-bezier(0.25, 1, 0.5, 1) 0s 1 running myFrameDash;
    /* interaccion: */
    transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.25s ease;
 display:block;
 position:relative
}



.video-container {
    position: relative;
    aspect-ratio: 16 / 9; 
    height: auto;
    overflow: hidden;
    margin-bottom: 25px;
    border-radius: 6px;
    background: rgb(137, 20, 220);
    border: none;
    
    width: 60%;
    
    min-width: 320px;
    max-width: 1280px;

    margin-left: auto;
    margin-right: auto;
}

.video-ajustable {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    object-fit: contain; 
    object-position: center; 
}


/* interaccion: */
img:hover{
    color:rgb(255, 255, 255);
    box-shadow: 0px 12px 24px rgba(243, 163, 26, 0.5);
    transform: scale(1.04);
}
img:active{
    color: rgb(255, 255, 255);
    box-shadow: 0px 4px 10px rgba(13, 209, 65, 0.5);
    transform: scale(0.98);
}

/* interaccion: */
video:hover{
    box-shadow: 0px 12px 24px rgba(243, 163, 26, 0.5);
    transform: scale(1.02);
}
video:active{
    box-shadow: 0px 4px 10px rgba(13, 209, 65, 0.5);
    transform: scale(0.99);
}


/* --- INICIO BANNER --- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

.banner-superior {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(to right,black, purple,black);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.bloque-izquierdo {
    display: flex;
    align-items: center;
    gap: 15px; /* Separación entre las líneas y el texto */
}

.logo{
    color:#e0c3ff ;
    text-shadow: 1px 3px 3px  #d028ff;
    font-size: 22px;
    font-family: cursive;
}

.accesos-rapidos a {
    color:#e0c3ff ;
    text-shadow: 1px 3px 3px  #d028ff;
    text-decoration: none;
    margin-left: 18px;
}


#menu-toggle {
    display: none; 
}

.menu-icon {
    font-size: 28px;
    color: white;
    cursor: pointer;
    user-select: none;
}

/* El panel lateral ahora aparece justo debajo del banner */
.sidebar {
    position: fixed;
    top: 60px; /* Altura exacta del banner para que no lo tape */
    left: -250px;
    width: 250px;
    height: calc(100vh - 60px); /* Ocupa el resto de la pantalla */
    background-color: #222;
    transition: left 0.3s ease;
}

.sidebar a {
    display: block;
    padding: 15px 25px;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid #333;
}

.sidebar a:hover {
    background-color: #444;
}

/* Lógica de apertura */
#menu-toggle:checked ~ .sidebar {
    left: 0;
}



/* CUERPO DE LA PÁGINA*/
.contenido-pagina {
    margin-top: 80px; /* Espacio para que el banner no tape el contenido */
}


/* CONTENEDORES Y ALINEACIÓN EN EL CENTRO */
.parent {
    display: flex;
    justify-content: center;
    width: 100%;
}

/*FIN DE BANNER */

/* animacion: */
@keyframes myFrameDash {
    0% {
        transform: scale(0);   /* Empieza completamente diminuto en el centro (adentro) */
        opacity: 0;            /* Invisible */
    }
    70% {
        transform: scale(1.2); /* Se infla un poco más de su tamaño real (efecto burbuja) */
        opacity: 0.7;
    }
    100% {
        transform: scale(1);   /* Regresa a su tamaño original (estabilización) */
        opacity: 1;            /* Completamente visible */
    }
}

@keyframes myFrameDashSlow {
    0% {
        transform: scale(0);   /* Empieza completamente diminuto en el centro (adentro) */
        opacity: 0;            /* Invisible */
    }
    70% {
        transform: scale(1.01); /* Se infla un poco más de su tamaño real (efecto burbuja) */
        opacity: 0.32;
    }
    100% {
        transform: scale(1);   /* Regresa a su tamaño original (estabilización) */
        opacity: 1;            /* Completamente visible */
    }
}