@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css");
@import url("https://fonts.googleapis.com/css?family=Roboto:400,500,700");

@font-face {
    font-family: mukta;
    src: url('../fonts/Mukta-Bold.ttf');
}
@font-face {
    font-family: archivoBlack;
    src: url('../fonts/ArchivoBlack-Regular.ttf');
}
@font-face {
    font-family: golos;
    src: url('../fonts/GolosText-VariableFont_wght.ttf');
}
@font-face {
    font-family: Rubik-Medium;
    src: url('../fonts/Rubik-Medium.ttf');
}


:root {
    --naranja: rgb(193 118 31);
    --naranja2: rgb(179 97 21);;
    --lila: rgb(94, 53, 177);
    --lila2: rgb(69, 39, 160);
    --azul: rgb(21, 101, 192);
    --celeste: rgb(30, 136, 229);
    --pastel: rgb(63 81 181);
    --bg-plomo: rgb(232, 234, 246);
    --blanco: rgb(255, 255, 255);
    --plomo: #575859!important;

    --transition: all 0.5s ease-in-out;
  }

  /* body{
    background-color: var(--lila);
  } */
  .contenido{
    margin-top: 65px;
    max-width: 100%;
  }
  #linea1,#linea2,#linea3,#linea4,#linea5,#linea6{
    background-color:var(--pastel) ;
    transition: all 0.5s ease-in-out;
  }
  .mobile_hamburger{
    display: none;
  }
  .opciones ul{
    display: flex;
    list-style: none;
    justify-content: center;
    align-items: center;
    margin: 0;
  }
  .opciones li{
    padding: 0px 10px;
    margin:  0 10px;
  }
  .opciones a{
    text-decoration: none;
    color: rgb(103, 102, 102);
    font-family: mukta;
    font-weight: bolder;
  }
  .con-blanco{
    margin-top: 10px;
    margin-bottom: 5px;
    background-color: #ffffff;
    transition: all .5s ease-in-out;
    position: relative;
    border: 0px solid transparent;
    border-radius: 1.5rem;
    height: 100%;
    box-shadow: 0px 1px 12px #cbced1;
  }
  .con-blanco .cabeza{
    padding: 10px 10px 0px 10px;
  }
  .con-blanco .cuerpo{
    padding: 0px 10px;
  }
  .con-blanco .cabeza h1{
    font-size: 1.2rem;
    font-weight: 500;
    font-family: archivoBlack!important;
    color: var(--plomo);
    margin-bottom: 0;
  }
  .con-blanco .cabeza h2{
    font-size: .8rem;
    font-weight: 500;
    font-family: roboto!important;
    margin-bottom:15px;
  }


@media only screen and (max-width: 900px) {
    .body-bloqueado{
        overflow: hidden;
    }
    .opciones {
        display: none;
    }
    .opciones-celular{
        position: fixed;
        top: 65px;
        width: 100%;
        background-color: var(--blanco);
        z-index: 10;
    }
    .opciones-celular ul{
        padding-left: 0;
        list-style: none;
        display: block;
    }
    .opciones-celular li{
        padding: 5px 0;
        text-align: center;
    }
    .opciones-celular a{
        text-decoration: none;
        font-family: archivoBlack;
        font-weight: bolder;
        color: var(--plomo);
    }
    .mobile_hamburger {
        position: relative;
        width: 40px;
        height: 50px;
        display: block;
        align-items: center;
        cursor: pointer;
        background-color: rgba(255, 255, 0, 0);
    }
    .mobile_hamburger #linea1{
        top: 10px;
        position: absolute;
        width: 100%;
        height: 7px;
        border-radius: 5px;
    }
    .mobile_hamburger #linea2{
        top: 22px;
        position: absolute;
        width: 100%;
        height: 7px;
        
        border-radius: 5px;
    }
    .mobile_hamburger #linea3{
        bottom: 10px;
        position: absolute;
        width: 100%;
        height: 7px;
        
        border-radius: 5px;
    }


    .mobile_hamburger.active #linea1{
        left: 3px;
        top: 15px;
        width: 50%;
        transform: rotate(45deg);
        transition: all 0.5s ease-in-out;
    }
    .mobile_hamburger.active #linea2{
        transform: rotate(-45deg);
        transition: all 0.5s ease-in-out;
    }
    .mobile_hamburger.active #linea3{
        bottom: 14px;
        right: 3px;
        width: 50%;
        transform: rotate(45deg);
        transition: all 0.5s ease-in-out;
    }
    .capa{
        margin: 0px;
        position: fixed;
        width: 100%;
        height: 100vh;
        background-color: rgba(47, 45, 45, 0.249);
        z-index: 6;
        cursor: pointer;
    }
    
}
.con-apk{
    display: flex;
    justify-content: center;
    align-items: center;
}
.apk-container{
    display: flex;
    padding: 10px;
    justify-content: center;
    align-items: center;
    border: 1px solid rgb(50, 48, 48);
    border-radius: 100px;
    margin-bottom: 10px;

}
.apk-descripcion{
    display: flex;
    flex-direction: column;
    padding-left: 10px;
}
.apk-descripcion h1{
    font-family: archivoBlack!important;
    font-weight: bolder!important;
    font-size: 16px !important;
    padding: 0;
    margin: 0;
}
.apk-descripcion p{
    font-family: roboto!important;
    font-size: 12px !important;
    padding: 0;
    margin: 0;
}
.apk-container a{
    font-family: roboto!important;
    font-size: 14px !important;
    text-decoration: none;
    border: 1px solid rgb(8, 0, 0);
    border-radius: 15px;
    text-align: center;
    padding:  5px 10px;
    background-color: var(--lila);
    color: white;
    margin: 10px;
}
.footer{
    display: flex;
    align-items: center;
    justify-content: space-between;
    bottom: 0;
    position: fixed;
    background-color: rgb(28, 0, 43);
    height: 50px;
    width: 100%;
}
.footer h1{
    margin: 0;
    padding: 0;
    margin-left: 10px;
    font-family: golos!important;
    font-size: .9rem!important;
    color: rgb(183, 183, 183);
}
.enlaces{
    margin-right: 10px;
}
