/* BASE */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}


/* CONTENEDOR */

.container {
    width: auto;
    height: max-content;
    position: relative;
    overflow: hidden;
}

.container .fondo {
    width: auto;
    height: 100dvh;
    object-fit: contain;
}


/* LOGO */

.logo {
    position: absolute;
    width: 50%;
    top: 8%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.logo-img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0;
    animation: logoAparece 3s ease-out forwards;
}

@keyframes logoAparece {
    0% {
        opacity: 0;
        transform: scale(0.5) translateY(-30px);
    }
    70% {
        opacity: 1;
        transform: scale(1.08) translateY(0);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}


/* cards 1 */

.cards {
    position: absolute;
    width: 90%;
    height: auto;
    top: 34%;
    left: 5.2%;
    z-index: 1;
}

.cards img {
    width: 100%;
    height: 100%;
    animation: pulsePremium 3s ease-in-out infinite;
}

@keyframes pulsePremium {
    0% {
        transform: scale(1);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.02);
        filter: brightness(1.08);
    }
    100% {
        transform: scale(1);
        filter: brightness(1);
    }
}

.signos {
    position: absolute;
    width: 55%;
    height: auto;
    top: 24.3%;
    right: 2.2%;
    z-index: 1;
    animation: floatingPremium 5s ease-in-out infinite;
}

.signos img {
    width: 100%;
    height: 100%;
    display: block;
}

@keyframes floatingPremium {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-6px) rotate(-1deg);
    }
    50% {
        transform: translateY(-12px) rotate(0deg);
    }
    75% {
        transform: translateY(-6px) rotate(1deg);
    }
    100% {
        transform: translateY(0px) rotate(0deg);
    }
}


/* cards 1 */

.cards1 {
    position: absolute;
    width: 90%;
    height: auto;
    top: 65%;
    left: 5.2%;
    z-index: 1;
}

.cards1 img {
    width: 100%;
    height: 100%;
    animation: pulsePremium 3s ease-in-out infinite;
}

@keyframes pulsePremium {
    0% {
        transform: scale(1);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.02);
        filter: brightness(1.08);
    }
    100% {
        transform: scale(1);
        filter: brightness(1);
    }
}