/** CSS Reset **/
*, *::before, *::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}
input, button, textarea, select {
  font: inherit;
}
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}
#root, #__next {
  isolation: isolate;
}

/** End CSS Reset **/

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  background: #091628;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

header.header {
    padding: 1rem 0;
    transition: all ease-in-out 0.3s;
    .container {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        ul {
            margin: 0;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            li {
                list-style: none;
            }
        }
        .logo {
            margin-right: 4rem;
            img {
              transition: all ease-in-out 0.3s;
            }
        }
        .menu {
            li {
                margin-right: 2rem;
                a {
                    color: #FFF;
                    text-decoration: none;
                    text-transform: uppercase;
                    font-weight: 600;
                    opacity: 0.8;
                    transition: all ease-in-out 0.3s;
                    &:hover {
                        opacity: 1;
                    }
                }
            }
        }
        .redes {
            li {
                margin-left: 0.5rem;
                a {
                    background: rgba(238,30,194, 0.2);
                    padding: 0.8rem;
                    display: inline-block;
                    transition: all ease-in-out 0.2s;
                    vertical-align: middle;
                    &:hover {
                        background: rgba(238,30,194, 0.4);
                    }
                    img {
                        filter: brightness(0) invert(1);
                        width: 18px;
                    }
                }
            }
        }
    }
}

@media only screen and (max-width: 700px) {
    header.header {
        .container {
            justify-content: center;
            .logo {
                margin-right: 0;
                margin-bottom: 1rem;
            }
            .menu {
                margin-bottom: 1rem;
                ul {
                    justify-content: center;
                    li {
                        margin: 0 0.7rem;
                    }
                    li:first-child {
                        display: none;
                    }
                }
            }
        }
    }
}


@media only screen and (min-width: 600px) {
    .header-fix {
        padding: 0rem 0 !important;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 100;
        width: 100%;
        background: rgba(0,0,0,0.7);
        .logo {
            img {
                width: 140px;
            }
        }
        .menu {
            a {
                font-size: 0.9rem;
            }
        }
        .redes {
            a {
                background: none !important;
                padding: 0.8rem 0.4rem !important;
            }
        }
    }
}

.banner {
    height: 90vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: url("../images/back-header.jpg") no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    &:before {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        content: "";
        background: rgba(0,0,0,0.3);
    }
    .foto-banner {
        position: absolute;
        bottom: 0;
        right: 5vh;
        width: 90vh;
        height: 90vh;
        background: url("../images/leo-otero-banner.png") no-repeat center center;
        background-size: cover;
    }
    .banner-info {
        position: relative;
        color: #FFF;
        font-size: 1.2rem;
        margin: 0 1rem;
        z-index: 10;
        .fecha {
            color: #F716C8;
            strong {
                color: #FFF;
                font-weight: 600;
            }
        }
        .title {
            font-size: 5rem;
            line-height: 1em;
            font-weight: 700;
            letter-spacing: -2px;
        }
        .body {
            color: #EFD73C;
            font-size: 2rem;
            line-height: 1em;
            letter-spacing: -1px;
            font-weight: 500;
        }
        .buttons {
            margin-top: 2rem;
            a {
                display: inline-block;
                text-decoration: none;
                background: #5F5EF8;
                color: #FFF;
                padding: 1rem 1.5rem 1rem 3.5rem;
                font-size: 1rem;
                text-transform: uppercase;
                font-weight: 500;
                opacity: 0.9;
                position: relative;
                &:before {
                  position: absolute;
                  top: 50%;
                  transform: translatey(-50%);
                  left: 1rem;
                  width: 32px;
                  height: 32px;
                  content: "";
                  background: url("../images/ticket.png") no-repeat center center;
                  background-size: cover;
                  filter: brightness(0) invert(1);
                }
            }
        }
    }
}

@media only screen and (max-width: 700px) {
    .banner {
        height: 77vh;
        align-items: flex-start;
        overflow: hidden;
        .banner-info {
            /*margin: 6rem 1rem 0;
            z-index: 10;*/
            margin: 0 1rem 0;
            z-index: 10;
            position: absolute;
            bottom: 8rem;
            .title {
                font-size: 3rem;
            }
            .body {
                font-size: 1.8rem;
            }
        }
        .foto-banner {
            width: 100vhrem;
            height: 100vh;
            right: 0;
            top: -5rem;
            transform: translatex(50%);
        }
    }
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%)  scale(0.99);
/*        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.5);*/
    }

    70% {
        transform: translate(-50%, -50%)  scale(1);
/*        box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);*/
    }

    100% {
        transform: translate(-50%, -50%)  scale(0.99);
/*        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);*/
    }
}

.banner .container:before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    content: "";
    width: 80vh;
    height: 70vh;
    border: solid 1.5rem rgba(247, 23, 201, 0.3);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
    animation: pulse 2s infinite;
}

.bio {
    padding: 8rem 0;
    .container {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        position: relative;
        > div {
            width: 50%;
        }
        .foto-bio {
            text-align: center;
            position: relative;
            &:before {
                position: absolute;
                top: -4rem;
                left: 0rem;
                content: "";
                width: 25vw;
                height: 100%;
                border: solid 1.5rem rgba(255,255,255,0.1);
            }
            img {
                display: inline-block;
                position: relative;
            }
        }
        .info-bio {
            color: #FFF;
            h2 {
                font-size: 4rem;
                line-height: 1em;
                text-transform: uppercase;
                transform: translatex(-10%);
            }
            p {
                color: #DDD;
                margin-bottom: 1rem;
                a {
                    display: inline-block;
                    text-decoration: none;
                    background: #5F5EF8;
                    color: #FFF;
                    text-transform: uppercase;
                    padding: 1rem 1.5rem;
                    margin-top: 3rem;
                }
            }
        }
    }
}

@media only screen and (max-width: 700px) {
    .bio {
        padding: 8rem 0 3rem;
        .container {
            .foto-bio {
                position: absolute;
                top: 0px;
                left: 1rem;
                width: 60%;
                &:before {
                    width: 75vw;
                }
            }
            .info-bio {
                width: 100%;
                z-index: 10;
                margin: 10rem 1rem 0;
                h2 {
                    transform: none;
                    font-size: 3.5rem;
                }
            }
        }
    }
}


.musica {
    position: relative;
    padding: 7rem 0;
    background: url("../images/back-music.jpg") no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    &:before {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        content: "";
        background: rgba(9,22,40,0.7);
        mix-blend-mode: multiply;
    }
    .container {
        position: relative;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        .info-musica {
            width: 60%;
            color: #FFF;
            padding: 0 2rem;
            h2 {
                font-size: 4rem;
                line-height: 1em;
                text-transform: uppercase;
            }
            p {
                margin-left: 2rem;
            }
            .plataformas {
                margin-top: 4rem;
                ul {
                    margin: 0;
                    padding: 0;
                    display: flex;
                    flex-wrap: wrap;
                    align-items: center;
                    li {
                        list-style: none;
                        margin-right: 1rem;
                        a {
                            display: inline-block;
                            width: 150px;
                        }
                    }
                }
            }
        }
        .player {
            width: 40%;
            iframe {
                height: 30rem;
            }
        }
    }   
}

@media only screen and (max-width: 700px) {
    .musica {
        padding: 3rem 0;
        .container {
            > div {
                width: 100% !important;
                text-align: center;
            }
            .info-musica {
                padding: 0 1rem;
                h2 {
                    font-size: 3rem;
                    line-height: 1em;
                }
                p {
                    margin: 0;
                }
                .plataformas {
                    margin-top: 3rem;
                    margin-bottom: 2rem;
                    ul {
                        justify-content: space-around;
                        li {
                            margin: 0 0.3rem;
                            a {
                                width: 100px;
                            }
                        }
                    }
                }
            }
            .player {
                padding: 0 1rem;
            }
        }
    }
}

.eventos {
    padding: 5rem 0;
    background: url("../images/stage.jpg") no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    &:before {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        content: "";
        background: rgba(9,22,40,0.5);
        mix-blend-mode: multiply;
    }
    h2 {
        text-align: center;
        font-size: 4rem;
        line-height: 1em;
        text-transform: uppercase;
        color: #FFF;
        margin-bottom: 2rem;    
        position: relative;
        span {
            display: block;
            font-size: 1.8rem;
            line-height: 1em;
            font-weight: 300;
        }
    }
    .evento {
        max-width: 350px;
        margin: 0 auto;
        position: relative;
        img {
            position: relative;
        }
    }
}

@media only screen and (max-width: 700px) {
    .eventos {
        padding: 3rem 0;
        h2 {
            font-size: 3rem;
            span {
                font-size: 1.5rem;
            }
        }
        .evento {
            max-width: 280px;
        }
    }

}

footer.footer {
    padding: 8rem 0 0;
    background: #050F1C;
    .info-footer-mobile {
        display: none;
    }
    .info-footer {
        display: flex;
        justify-content: center;
        align-items: flex-end;
        > div {
            padding: 0 2rem;
            font-size: 1.2rem;
            width: 200px;
            text-align: center;
            img {
                display: inline-block;
            }
            a {
                color: #FFF;
                text-decoration: none;
                display: inline-block;
                font-weight: 300;
                span {
                    display: block;
                    text-transform: uppercase;
                    font-weight: 600;
                    color: #E527AE;
                    font-size: 0.9rem;
                    text-align: left;
                }
            }
        }
        .logo {
            width: 125px;
            padding: 0;
        }
        .telefono {
            span {
                text-align: right;
                
            }
        }
    }
    .redes {
        margin-top: 3rem;
        ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            li {
                margin: 0 0.5rem;
                a {
                    background: rgba(238,30,194, 0.2);
                    padding: 0.8rem;
                    display: inline-block;
                    transition: all ease-in-out 0.2s;
                    &:hover {
                        background: rgba(238,30,194, 0.4);
                    }
                    img {
                        filter: brightness(0) invert(1);
                        width: 18px;
                    }
                }
            }
        }
    }
    .legal {
        text-align: center;
        background: rgba(0,0,0,0.5);
        color: #FFF;
        padding: 3rem 0;
        margin-top: 4rem;
        p {
            font-size: 0.9rem;
            font-weight: 300;
            color: #CCC;
            a {
                color: #FFF;
                display: inline-block;
                text-decoration: none;
                font-weight: 600;
            }
        }
    }
}

@media only screen and (max-width: 700px) {
    footer.footer {
        padding: 4rem 0 0;
        .info-footer {
            display: none;
        }
        .info-footer-mobile {
            display: flex;
            justify-content: center;
            align-items: flex-end;
            > div {
                padding: 0 2rem;
                font-size: 1.2rem;
                width: 200px;
                img {
                    display: inline-block;
                }
                a {
                    color: #FFF;
                    text-decoration: none;
                    display: inline-block;
                    font-weight: 300;
                    span {
                        display: block;
                        text-transform: uppercase;
                        font-weight: 600;
                        color: #E527AE;
                        font-size: 0.9rem;
                        text-align: left;
                    }
                }
            }
            .logo {
                width: 90px;
                padding: 0;
                text-align: center;
            }
            .footer-right {
                .telefono {
                    margin-bottom: 1rem;
                }
            }
        }
        .legal {
            padding: 1rem 0;
            margin-top: 3rem;
        }
    }
}