:root {
    --color-titulos: #2D3742;
    --color-menu: #313336;
    --color-principal: #CC1939;
    --color-boton: #DD183B;
    --color-iconos: #DD183B;
    --color-hover: #fc3c5f;
    --color-header: #ffffff;
    --color-footer: #07619d;
    --color-text-footer: #ffffff;
    --color-recomendaciones: #CC1939;
    --color-text-login:#ffffff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    user-select: none;
    list-style-type: none;
    text-decoration: none;
}

body {
    background-image: linear-gradient(to top left, #e8190f, #a91a0d);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
}

a {
    color: var(--color-menu);
    text-decoration: none;
    font-size: 15px;
}

/* Estilo de barra superior */

.headercontent {
    background-color: var(--color-header);
}

.navcontainer {
    width: 80%;
    margin: auto;
}

.nav-main {
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    padding: 48px 0;
}

.nav-main ul {
    list-style: none;
}

.nav-brand {
    width: 250px;
}

/* Estilo Menu */

.nav-main ul {
    display: flex;
}

.nav-main ul li {
    padding: 10px;
}

.nav-main ul li a:hover {
    color: var(--color-hover);
}

.nav-main ul .nav-menu {
    flex: 1;
}

/* BOTON BARRAS MENU */

.menu-btn {
    position: absolute;
    cursor: pointer;
    top: 25px;
    right: 30px;
    z-index: 100;
    font-size: 1.5rem;
    color: rgb(0, 0, 0);
    display: none;
}

/* ESTILO BOTON FLOTANTE */

.boton-flotante {
    display: grid;
    position: fixed;
    z-index: 999;
    padding: 20px;
    transition: ease 0.3s;
}

.boton-flotante:hover {
    transform: scale(1.1);
}

.flotante {
    width: 120px;
}

/* ESTILO LOGIN DESIGN */

.login-design {
    background-image: url(../images/back.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: grid;
    grid-template-columns: repeat(2, 50%);
    height: 100vh;
}

.circulos {
    display: flex;
    justify-content: center;
    align-items: center;
}

.circulos img {
    max-width: 100%;
}

.login {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #1e2022;
}

.login-data {
    border: solid var(--color-principal);
    background-color: rgba(90, 90, 90, 0.308);
    color: var(--color-text-login);
    border-radius: 2rem;
    padding: 2rem;
    text-align: center;
    font-weight: bold;
    width: 70%;
    box-shadow: 10px 10px 15px 5px #0303035b;
    backdrop-filter: blur(10px);
}

.login-data h1 {
    font-weight: 200;
    margin-bottom: 1.5rem;
}

.etiqueta {
    font-weight: 300;
}

.politica {
    font-weight: 300;
}

.input-group {
    position: relative;
    width: 60%;
    margin: 0 auto;
    margin-bottom: 1.5rem;
    margin-top: 1.2rem;
}

.input-fill input {
    background-color: #38383873;
    color: #000000;
    border: none;
    border-bottom: 3px solid var(--color-iconos);
    width: 100%;
    height: 2.5rem;
    font-size: 1rem;
    padding-left: 1.6rem;
    line-height: 147.6%;
    padding-top: .5rem;
    padding-bottom: 0.5rem;
    transition: 0.4s ease all;
}

.input-fill ::placeholder {
    color: #fffbfbda;
}

.input-fill input:focus {
    outline: none;
    border-color: var(--color-hover);
}

.input-fill input:focus ~ i {
    color: var(--color-hover);
}

.input-fill i {
    position: absolute;
    top: 10px;
    left: 6px;
    color: #e4e4e4;
}

.icon-eye {
    position: absolute;
    right: 30px;
    cursor: pointer;
    transition: 0.4s ease all;
}

.icon-eye i:hover {
    color: var(--color-hover);
}

.checkbox {
    padding: 0 15%;
    margin-bottom: 1.5rem;
}

.btn {
    border-radius: .5rem;
    width: 55%;
    border: 1px solid var(--color-principal);
    line-height: 1.6rem;
    font-size: 1rem;
    background-color: var(--color-boton);
    color: white;
    padding: 0.5rem 0;
    font-weight: 200;
    box-shadow: 10px 10px 10px 3px #0303035b;
    transition: ease 0.3s;
}

.btn:hover {
    cursor: pointer;
    background-color: var(--color-hover);
    transform: scale(1.1);
    
}

/* ESTILO RECOMENDACIONES */

.recomendaciones {
    background-color: var(--color-recomendaciones);
    color: white;
    padding: 3rem 8rem;
    font-size: 18px;
}

.recomendaciones h1 {
    font-weight: 900;
    font-size: 35px;
}
.recomendaciones ul li {
    padding: 10px;
}

/* ESTILO STREAMING */

.showcase-streaming {
    /*background-color: #020a523b;*/
    background-image: url(../images/back_stream.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: grid;
    grid-template-columns: 1fr;
    padding: 2% 9%;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(30px);
}

.text-conferencia {
    text-align: center;
    font-size: 23px;
    font-weight: 900;
    margin-bottom: .5rem;
    color: #ffffff;
}

.streaming-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.opcion-controles {
    width: 80%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    justify-content: center;
    gap: 30%;
    margin: 15px 0px;
}

.btn-2 {
    border-radius: .5rem;
    width: 100%;
    border: 1px solid var(--color-principal);
    line-height: 1.6rem;
    font-size: 1rem;
    background-color: var(--color-boton);
    color: white;
    padding: 0.5rem 0;
    font-weight: 200;
    box-shadow: 10px 10px 10px 3px #0303035b;
    transition: ease 0.3s;
}

.btn-2:hover {
    cursor: pointer;
    background-color: var(--color-hover);
    transform: scale(1.1);
}

/* FIN DE TRANSMISIÓN */

.fin-streaming {
    max-width: 90%;
    border: solid var(--color-principal);
    background-color: rgba(8, 8, 8, 0.514);
    border-radius: 20px;
    padding: 3rem 3rem;
    margin: 12% 2%;
    font-size: 35px;
    text-align: center;
    color: #ffff;
    text-shadow: 2px 2px 5px rgb(0 0 0 / 79%);
    box-shadow: 10px 10px 15px 5px #0303035b;
    backdrop-filter: blur(10px);
}

/* FOOTER */

.footer {
    background-image: linear-gradient(#444444, #000000);
    /*background-color: var(--color-footer);*/
    color: var(--color-text-footer); 
    padding: 40px 18px;
}

.footer-nav {
    width: 100%;
    height: auto;
    margin: auto;
}

.footer-brand {
    width: 210px;
}

.nav-foot {
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    align-items: center;
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

/* ADAPTATIVE TABLET */

@media screen and (max-width: 1200px) {

    .navcontainer{
        width: 90%;
        height: auto;
    }

    .nav-main ul.nav-menu li {
        font-size: 15px;
    }

    .nav-brand {
        width: 150px;
    }
    
}

/* ADAPTATIVE CELULAR */

@media screen and (max-width: 1024px) { 
    
    .navcontainer {
        width: 95%;
        margin: auto;
    }

    .nav-main ul.nav-menu {
        display: block;
        position: absolute;
        top: 95px;
        left: 0;
        padding: 20px;
        background: #bbbbbb;
        opacity: .85;
        transform: translateX(-400px);
        transition: all .5s;
        z-index: 5;
    }

    .menu-btn {
        display: block;
    }

    .nav-main ul.nav-menu.show {
        transform: translateX(0px);
    }

    .nav-main ul.nav-menu li {
        font-size: 20px;
    }

    .nav-brand {
        width: 150px;
    }

    .login-design {
        grid-template-columns: 1fr;
    }

    .circulos {
        display: none;
    }

    .recomendaciones {
        padding: 3rem;
        font-size: 13px;
    }
}    