/**
	* Theme Name:   Fruto
    * Author:       422 Estudio Creativo
	* Author URI:   https://422.mx
	* Description:  Chaskas, helados y Refreshers
	* Version:		2.0
    * License:      GNU General Public License v2 or later
    * License URI:  http://www.gnu.org/licenses/gpl-2.0.html
	* Text Domain:	fruto
	* Template:		blocksy
**/

/* CONTENEDOR DEL LOGO */
#gspb_container-id-gsbp-93a3e05{
    display:flex;
    align-items:flex-end;
    justify-content:center;
    gap:12px;
    overflow:visible;
    padding-top:60px;
    padding-bottom:20px;
    min-height:180px;
}

/* CADA LETRA */
#gspb_container-id-gsbp-93a3e05 .gspb_image{
    opacity:0;
    transform-origin:center bottom;
    animation: fruitoFall 5s ease-in-out forwards;
    will-change: transform, opacity;
}


/* ANIMACIÓN */
@keyframes fruitoFall {

    /* inicia arriba */
    0%{
        opacity:0;

        transform:
            translateY(-260px)
            scaleY(1.15)
            scaleX(0.92);
    }

    /* aparece */
    8%{
        opacity:1;
    }

    /* impacto */
    22%{
        opacity:1;

        transform:
            translateY(0)
            scaleY(0.68)
            scaleX(1.22);
    }

    /* rebote */
    30%{
        transform:
            translateY(-38px)
            scaleY(1.06)
            scaleX(0.97);
    }

    /* segundo impacto */
    38%{
        transform:
            translateY(0)
            scaleY(0.9)
            scaleX(1.04);
    }

    /* pequeño rebote final */
    46%{
        transform:
            translateY(-10px)
            scaleY(1.02)
            scaleX(0.99);
    }

    /* estado final */
    54%{
        transform:
            translateY(0)
            scale(1);

        opacity:1;
    }

    /* congelado hasta el final */
    100%{
        transform:
            translateY(0)
            scale(1);

        opacity:1;
    }
}