/* ==========================================================
   RESET
========================================================== */

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

html,
body{

    width:100%;
    height:100%;

    font-family:
        "Segoe UI",
        Arial,
        sans-serif;

    overflow:hidden;

    background:#000;

    color:#FFF;
}

/* ==========================================================
   HEADER
========================================================== */

.header{

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:90px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:0 50px;

    z-index:100;

    background:linear-gradient(
        to bottom,
        rgba(0,0,0,.55),
        transparent
    );

}

.header-left,
.header-center,
.header-right{

    display:flex;
    align-items:center;

}

.header-center{

    flex:1;
    justify-content:center;

}

.header h1{

    font-size:30px;
    font-weight:300;
    letter-spacing:1px;

}

.logo-startwork{

    height:58px;

}

.logo-apple{

    height:42px;

    margin-right:25px;

}

/* ==========================================================
   BOTÃO
========================================================== */

.btn-access{

    border:none;

    background:#0059d6;

    color:#FFF;

    padding:

        12px 30px;

    border-radius:30px;

    cursor:pointer;

    font-size:15px;

    transition:.30s;

}

.btn-access:hover{

    background:#0b72ff;

    transform:translateY(-2px);

}

/* ==========================================================
   CARROSSEL
========================================================== */

main{

    width:100vw;
    height:100vh;

}

.carousel{

    position:relative;

    width:100%;
    height:100%;

    overflow:hidden;

}

.carousel video{

    position:absolute;

    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;

    opacity:0;

    transition:opacity .8s;

}

.carousel video.active{

    opacity:1;

}

.carousel-controls{

    position:absolute;

    width:100%;

    top:50%;

    transform:translateY(-50%);

    display:flex;

    justify-content:space-between;

    padding:0 30px;

    z-index:20;

}

.carousel-controls button{

    width:52px;
    height:52px;

    border:none;

    border-radius:50%;

    background:rgba(255,255,255,.25);

    color:#FFF;

    cursor:pointer;

    backdrop-filter:blur(8px);

    transition:.25s;

}

.carousel-controls button:hover{

    background:rgba(255,255,255,.45);

}

/* ==========================================================
   OVERLAY
========================================================== */

/* ==========================================================
   OVERLAY
========================================================== */

.overlay{

    position:fixed;

    inset:0;

    display:flex;

    justify-content:center;

    align-items:center;

    background:rgba(0,0,0,.45);

    backdrop-filter:blur(10px);

    z-index:999;

    opacity:0;

    visibility:hidden;

    transition:.25s;

}

.overlay.active{

    opacity:1;

    visibility:visible;

}

.overlay .portal-window{

    display:none;

}

.overlay.active #portalSelection{

    display:block;

}

/* ==========================================================
   JANELA
========================================================== */

.portal-window{

    width:430px;

    background:rgba(255,255,255,.14);

    backdrop-filter:blur(25px);

    border-radius:20px;

    padding:35px;

    border:

        1px solid

        rgba(255,255,255,.15);

    box-shadow:

        0 20px 60px

        rgba(0,0,0,.45);

}

.portal-window h2{

    text-align:center;

    margin-bottom:10px;

    font-weight:400;

}

.portal-window p{

    text-align:center;

    margin-bottom:35px;

    color:#DDD;

}

/* ==========================================================
   CARTÕES
========================================================== */

.portal-card{

    width:100%;

    display:flex;

    align-items:center;

    gap:18px;

    border:none;

    cursor:pointer;

    padding:18px;

    margin-bottom:18px;

    border-radius:14px;

    background:#FFF;

    transition:.25s;

}

.portal-card:hover{

    transform:translateY(-4px);

    box-shadow:

        0 12px 30px

        rgba(0,0,0,.20);

}

.portal-card h3{

    color:#222;

    margin-bottom:5px;

}

.portal-card span{

    color:#666;

    font-size:13px;

}

.portal-icon{

    width:60px;
    height:60px;

    border-radius:50%;

    background:#0059d6;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#FFF;

    font-size:24px;

}

/* ==========================================================
   LOGIN
========================================================== */

#loginPanel{

    display:none;

}

.form-group{

    margin-bottom:20px;

}

.form-group label{

    display:block;

    margin-bottom:8px;

}

.form-group input{

    width:100%;

    height:48px;

    border:none;

    border-radius:10px;

    padding:0 15px;

    font-size:15px;

}

.form-group input:focus{

    outline:2px solid #0059d6;

}

.btn-login{

    width:100%;

    height:50px;

    border:none;

    border-radius:10px;

    background:#0059d6;

    color:#FFF;

    cursor:pointer;

    font-size:16px;

    margin-top:15px;

}

.btn-login:hover{

    background:#0b72ff;

}

.btn-back{

    border:none;

    background:none;

    color:#FFF;

    margin-bottom:20px;

    cursor:pointer;

}

/* ==========================================================
   FOOTER
========================================================== */

footer{

    position:absolute;

    bottom:25px;

    width:100%;

    text-align:center;

    z-index:50;

    color:#EEE;

    font-size:14px;

}