/* RESET BÁSICO */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
}

/* HERO */
.hero {
    width: 100vw;
    height: 100vh;
    background-image: url("../img/back.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* CONTENIDO */
.hero-content {
    text-align: center;
}

/* LOGO */
.hero-logo {
    max-width: 420px;
    width: 80%;
    height: auto;

    opacity: 0;
    animation: logoIntro 1.2s ease-out forwards;
}


@keyframes logoIntro {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-logo {
        max-width: 300px;
    }
}
