/*
Project Name: Gerenciador de Links (Embedder)
Developed By: Riverlab
Version: 1.0.0.0
*/
/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* Vars */
:root {
    --font-family: 'Montserrat', 'sans-serif';
    --color-001: #ce1300;
    --color-001-hover: #952f24;
    --color-002: #1d1d1d;
    --color-003: #2d2d2d;
    --transition: .2s all ease-in-out;
}

/* Css Reset */
body {
    padding: 0;
    margin: 0;
    background: var(--color-002);
    font-family: var(--font-family);
    color: #fff;
}
a {
    color: inherit;
    text-decoration: none;
}
* {
    box-sizing: border-box;
    outline: none;
}
::-moz-selection { /* Code for Firefox */
    color: var(--white);
    background: var(--color-001);
}
::selection {
    color: var(--white);
    background: var(--color-001);
}

/* App */
.app {
    display: flex;
}

/* Header */
.header {
    width: 100%;
    padding: 100px 20px 70px;
}
.app_logo {
    text-align: center;
    margin-bottom: 50px;
}
.app_logo a {
    position: relative;
}
.app_logo span {
    position: absolute;
    top: 0px;
    left: 80px;
    font-size: 13px;
    color: #999;
}
.app_description {
    text-align: center;
    font-size: 23px;
    margin-bottom: 50px;
}
.app_description span {
    display: block;
    font-size: 15px;
    text-transform: uppercase;
}
.app_login_buttons {
    text-align: center;
}
.app_login_buttons span {
    display: block;
    font-size: 18px;
    margin-bottom: 10px;
}
.app_login_buttons a {
    background: var(--color-001);
    border-radius: 50px;
    padding: 15px 30px;
    display: inline-block;
    text-transform: uppercase;
    transition: .2s all ease;
    margin-right: 20px;
}
.app_login_buttons a:hover {
    transform: scale(1.1);
    background: var(--color-001-hover);
}
.app_login_buttons a:last-child {
    margin-right: 0;
}
.btns_section {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Infos */
.app_infos {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 50px;
}
.app_info {
    width: 350px;
    height: 75px;
    padding: 10px 20px;
    border: 1px solid var(--color-001);
    border-radius: 10px;
    cursor: pointer;
    margin-right: 20px;
}
.app_info .info .title {
    font-weight: 600;
    color: var(--color-001);
    font-size: 18px;
}
.app_info .info .desc {
    font-size: 13px;
    font-weight: 400;
    color: #ccc;
}
.app_info .icon {
    font-size: 40px;
    margin-left: 20px;
    color: var(--color-001);
    width: 40px;
    height: 40px;
}
.app_info:last-child {
    margin-right: 0;
}

/* Preview */
.preview {
    max-width: 1200px;
    margin: auto;
}
.preview .title {
    font-size: 20px;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
}
.preview .movies {
    display: flex;
    flex-wrap: wrap;
}
.preview .movies .movie {
    width: calc(100% / 4 - 23px);
    background: rgba(255, 255, 255, .02);
    margin-right: 30px;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 30px;
    position: relative;
    cursor: pointer;
}
.preview .movies .movie:nth-child(4n+4) {
    margin-right: 0;
}
.preview .movies .movie .movie_img {
    padding: 20px;
    position: relative;
}
.preview .movies .movie .movie_img .shadow {
    position: absolute;
    width: 100%;
    height: 100%;
    width: 5px;
    height: 5px;
    z-index: 10;
    opacity: 0.6;
    transition: all .5s ease-in-out;
    box-shadow: 0 0 500px 150px rgba(192, 57, 43, .3);
    z-index: 1;
    left: 15%;
    top: 15%;
}
.preview .movies .movie:hover .movie_img .shadow {
    box-shadow: 0 0 500px 150px rgba(192, 57, 43, .5);
    left: 50%;
}
.preview .movies .movie .movie_img .shadow_w2 {
    position: absolute;
    width: 100%;
    height: 100%;
    width: 5px;
    height: 5px;
    z-index: 10;
    opacity: 0.6;
    transition: all .5s ease-in-out;
    bottom: 10%;
    right: 30%;
    box-shadow: 0 0 150px 200px rgba(231, 76, 60, .3);
    z-index: 1;
}
.preview .movies .movie:hover .movie_img .shadow_w2 {
    right: 50%;
    box-shadow: 0 0 150px 200px rgba(231, 76, 60, .6);
}
.preview .movies .movie .movie_img img {
    width: 100%;
    display: block;
    border-radius: 20px;
    position: relative;
    z-index: 3;
    transition: .3s all ease-in-out;
}
.preview .movies .movie:hover .movie_img img {
    transform: scale(.95);
}
.preview .movies .movie .movie_img .iconew {
    position: absolute;
    bottom: 35px;
    right: 35px;
    padding: 8px 12px;
    font-size: 14px;
    background: #111;
    z-index: 5;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    transition: .4s all ease;
    opacity: .5;
}
.preview .movies .movie:hover .movie_img .iconew {
    opacity: 0;
}
.preview .movies .movie .movie_sinopse {
    padding: 20px;
}
.preview .movies .movie .movie_sinopse .title {
    font-size: 16px;
    text-transform: none;
    margin: 0 0 10px;
}
.preview .movies .movie .movie_sinopse .sinopse {
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 13px;
}

/* Msg Box */
.msg_box_container {
    width: 100%;
    height: 100vh;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}
.msg_box {
    width: 370px;
    padding: 20px;
    background: var(--color-002);
    border-radius: 20px;
}
.msg_box_header {
    display: flex;
    align-items: center;
}
.msg_box_title {
    width: 290px;
    padding-right: 10px;
    font-size: 20px;
}
.msg_box_close {
    width: 40px;
    height: 40px;
    background: #fff;
    transition: .2s all ease;
    color: #000;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    cursor: pointer;
}
.msg_box_close:hover {
    background: #999;
}
.msg_box_section {
    font-size: 14px;
    margin: 20px 0;
    line-height: 20px;
}

/* Footer */
.footer {
    display: block;
    width: 100%;
    text-align: center;
    padding: 50px 20px;
    font-size: 14px;
    color: #999;
}

/* Media Querys */
/* 1024px */
@media (max-width: 1024px) {
    .app_infos {
        max-width: 90%;
        flex-direction: column;
        align-items: center;
    }
    .app_info {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }
    .movies {
        max-width: 90%;
        margin: auto;
    }
    .preview .movies .movie {
        width: calc(100% / 2 - 15px);
    }
    .preview .movies .movie:nth-child(4n+4) {
        margin-right: 30px;
    }
    .preview .movies .movie:nth-child(2n+2) {
        margin-right: 0;
    }
}

/* 425px */
@media (max-width: 425px) {
    .preview .movies .movie {
        width: 100%;
        margin-right: 0;
    }
    .preview .movies .movie:nth-child(4n+4) {
        margin-right: 0;
    }
}

/* 375px */
@media (max-width: 375px) {
    .btns_section {
        flex-direction: column;
    }
    .app_login_buttons a {
        margin: 0 0 10px;
        width: 100%;
    }
    .msg_box {
        max-width: 90%;
    }
}