@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background: #F5F5F5;
}

header {
    height: 100px;
}

.container__header {
    max-width: 1200px;
    height: 100%;
    margin: auto;
    padding: 30px;
    padding-top: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 180px;
}

.menu nav ul {
    display: flex;
    padding: 0;
    margin: 0;
}

.menu nav ul li {
    list-style: none;
    padding: 0 20px;
}

.menu nav ul li a {
    font-size: 16px;
    text-decoration: none;
    color: #000;
    transition: opacity 300ms;
}

.menu nav ul li a:hover {
    opacity: 0.6;
}

.btn__header-register,
.btn__register-cover {
    padding: 14px 50px;
    border: none;
    background: #000;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: background 300ms, color 300ms;
}

.btn__header-register:hover,
.btn__register-cover:hover {
    background: #69F1A1;
    color: #000;
}

#icon_menu {
    display: none;
}

/* PORTADA - COVER */

main {
    max-width: 1200px;
    padding: 40px;
    margin: auto;
}

.cover {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.text__information-cover {
    width: 50%;
}

.text__information-cover h1 {
    font-size: 50px;
}

.text__information-cover p {
    font-size: 18px;
    margin-top: 40px;
}

.buttons__cover {
    display: flex;
    margin-top: 40px;
}

.btn__readMore-cover {
    padding: 14px 40px;
    border: none;
    color: #000;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    margin-left: 10px;
    transition: background 300ms;
}

.btn__readMore-cover:hover {
    background: #E8E8E8;
}

.media__cover {
    width: 50%;
}

.media__cover video {
    width: 100%;
    margin-top: -40px;
}

/* BANNER */

.container__banner {
    margin-top: 80px;
}

.banner {
    height: 250px;
    display: flex;
    align-items: center;
    background: #121214;
    position: relative;
}

.banner__icon-heart {
    width: 35%;
    height: 100%;
}

#icon_heart {
    width: 400px;
    margin-top: -20px;
    position: relative;
    filter: drop-shadow(-40px 0 30px rgba(0,0,0,0.5));
}

.banner__text {
    width: 60%;
    position: relative;
    padding: 40px;
}

.banner__text h2 {
    color: #fff;
    font-size: 32px;
    font-weight: 400;
}

.banner__text a {
    text-decoration: none;
    display: block;
    margin-top: 20px;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    transition: color 300ms;
}

.banner__text a:hover {
    color: #69F1A1;
}

.banner__icon-fire {
    height: 100%;
    position: absolute;
    right: 10px;
    overflow: hidden;
}

#icon_fire {
    width: 300px;
    position: relative;
    margin-top: -100px;
    opacity: 0.6;
}

@media (max-width: 1024px) {
    .container__header,
    main {
        padding: 20px;
    }

    #icon_menu {
        display: block;
        cursor: pointer;
        font-size: 24px;
    }

    .header__register {
        display: none;
    }

    .menu {
        height: 0;
        position: absolute;
        right: 20px;
        top: 70px;
        overflow: hidden;
        z-index: 10;
        box-shadow: 0 0 30px -20px rgba(0,0,0,0.5);
        transition: height 300ms;
    }

    .menu nav ul {
        padding: 20px 0;
        flex-direction: column;
        background: #fff;
    }

    .menu nav ul li {
        padding: 10px 40px;
    }

    .mostrar_menu { /* CLASE MANIPULADA POR JS */
        height: 235px;
    }

    .text__information-cover h1 {
        font-size: 40px;
    }

    .text__information-cover p {
        font-size: 16px;
    }

    .banner__text h2 {
        font-size: 22px;
    }

    #icon_heart {
        left: -60px;
    }

    .banner__icon-fire {
        right: -20px;
    }
}

@media (max-width: 920px) {
    .text__information-cover {
        width: 100%;
    }

    .media__cover {
        display: none;
    }

    .banner {
        width: 100%;
        height: auto;
        flex-wrap: wrap;
    }

    #icon_fire {
        display: none;
    }

    #icon_heart {
        left: 0;
    }

    .banner__text {
        width: 100%;
        margin-top: -100px;
    }
}
