@charset 'UTF-8';

/* Tipografías */

@font-face {
    font-family: 'Bebas Neue';
    src: url('../fonts/BebasNeue-Regular.eot');
    font-weight: normal;
    font-style: normal;
}

/* Estilos y animaciones generales */

.vibrar {
    display: inline-block;
    animation: vibrar 0.2s infinite;
}

@keyframes vibrar {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-2px);
    }

    50% {
        transform: translateX(2px);
    }

    75% {
        transform: translateX(-2px);
    }

    100% {
        transform: translateX(0);
    }
}


/* Cabecera de página */

/* Pie de página */

#init-preload {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    max-width: 100vw;
    height: 100vh;
}

#init-preload.active {
    transform: translateY(-100%);
}

body:not(.elementor-editor-active) .blurfilter {
    filter: blur(20px);
}

#insta-button {
    z-index: 10;
    pointer-events: auto;
}

#videohome {
    z-index: 10;
    pointer-events: auto;
    margin: 0 auto;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100vw;
}

#videohome .elementor-wrapper.elementor-open-inline {
    max-width: 100%;
    width: auto;
    height: auto;
    max-height: 100%;
    margin: 0 auto;
}

#end-cta-top {
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
}

#product-view {
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

body {
    background-attachment: fixed;
}

@media (max-width: 767px) {
    #primary {
        max-width: 100vw;
        overflow-y: hidden;
    }
}