@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bangers&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-align: center;
    color: #fff;
    user-select: none;
}

body {
    background-color: #080808;
    font-family: 'Poppins', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

header {
    display: flex;
    padding: 0px 2.5rem 0px 3%;
    min-width: 250px;
    border-bottom: 1px solid rgb(33, 34, 38);
    width: 100%;
    height: 90px;
    flex-flow: row nowrap;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

header #text-logo {
    color: white;
    font-size: 30px;
    font-weight: 700;
    margin-left: 10px;
    user-select: none;
}

header nav {
    display: inline;
    width: auto;
    margin-left: auto;
}

nav a {
    background-image: linear-gradient(lightseagreen, lightseagreen);
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    transition: background-size .3s;
}

nav a:hover {
    background-size: 100% 2px;
}

.title {
    font-size: 100px;
    font-weight: 700;
    color: #fff;
}

.subtitle {
    color: rgba(255, 255, 255, 0.75);
    font-size: 20px;
    font-weight: lighter;
}

#logo {
    width: 4rem;
    border-radius: 50%;
    padding: 0px;
    border: none;
}

#f-header {
    display: flex;
    flex-direction: column;
    margin-top: calc(2.5rem);
}

#f-t {
    color: #fff;
    font-size: 128px;
    font-weight: 700;
}

#f-d {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    margin-top: calc(0.3rem);
}

#f-btn {
    display: flex;
    place-content: center;
    place-items: center;
    margin-top: calc(1.5rem);
}

.btn {
    color: #fff;
    background-color: #1D1E21;
    text-decoration: none;
    font-size: 18px;
    margin: 5px;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    min-width: 180px;
}

.btn:hover {
    color: white;
    background-color: lightseagreen;
    transition: all 0.3s ease-in-out;
    -webkit-transform: translate(3em, 0);
    -moz-transform: translate(3em, 0);
    -o-transform: translate(3em, 0);
    -ms-transform: translate(3em, 0);
    transform: translateY(-5px)
}

.d-header {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
    padding: 70px 50px;
}

.d-header .d-h {
    display: flex;
    justify-content: space-between;
    background: #1D1E21;
    padding: 15px;
    border-radius: 10px
}

.d-header .d-h .d-name {
    color: #04c2b8;
    font-weight: 700;
    font-size: 1.2rem;
    padding-bottom: 5px;
    text-align: left;
}

.d-header .d-h .d-info {
    color: #fff;
    text-align: left;
}

.d-header .d-data span {
    font-weight: 700;
}

.checkbtn {
    font-size: 30px;
    color: #fff;
    float: right;
    line-height: 80px;
    margin-right: 40px;
    cursor: pointer;
    display: none;
}

#check {
    display: none;
}

ul li {
    display: inline-block;
    padding: 0 20px;
}

a {
    font-size: 16px;
    font-weight: 500;
    color: white;
    text-decoration: none;
}

.features .information {
    place-items: center;
    place-content: center;
    display: grid;
    grid-template-columns: repeat(2, 0.9fr);
    gap: 3rem;
    padding: 50px;
}

.features .info {
    border-radius: 10px;
    background-color: #1D1E21;
    color: white;
    place-items: center;
    justify-content: center;
    height: 100%;
    padding: 2rem;
    display: grid;
    gap: 1rem;
}

.features .img {
    width: 10%;
    min-width: 64px;
    filter: invert();
    z-index: 0;
}

.features h2 {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    margin-top: 6%;
    margin-bottom: 8px;
}

#f-h2-p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 18px;
    font-weight: lighter;
}

.features .title4 {
    color: white;
    text-align: center;
    font-size: 1.4em;
}

span {
    color: lightseagreen
}


#c-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    color: #fff;
    margin: 5rem 0px;
    z-index: 0 !important;
}

#c-list h1 {
    font-size: 3.5rem;
}

.comando i {
    display: block;
}

.categorias {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.fa-solid,
.fas {
    font-family: Font Awesome\ 6 Free;
    font-weight: 900;
}

.buttons {
    display: flex;
    height: 2.5rem;
    justify-content: center;
    align-items: center;
    background: #1D1E21;
    font-size: 18px;
    border-radius: 0.50rem;
    gap: 2rem;
    padding: 0.75rem 1.25rem;
}

#todos,
#music,
#otros,
#config {
    display: none;
}

.categorias i {
    display: none;
}

.button__text {
    color: #fff;
    cursor: pointer;
    font-weight: 700;
}


.todos {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 80%;
    justify-content: center;
    align-items: center;
}

.todos span {
    font-weight: 600;
}

.configuracion {
    display: none;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 80%;
    justify-content: center;
    align-items: center;
}

.configuracion span {
    font-weight: 600;
}

.otros {
    display: none;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 80%;
    justify-content: center;
    align-items: center;
}

.otros span {
    font-weight: 600;
}

.music {
    display: none;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 80%;
    justify-content: center;
    align-items: center;
}

.music span {
    font-weight: 600;
}

.comando {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 20rem;
    height: 10rem;
    padding: 1rem;
    border-radius: 0.45rem;
    background: #1D1E21;
    color: #fff;
}

.comando-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgb(40, 46, 51);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.comando-info span {
    font-size: 1.10rem;
    font-weight: 700;
}

.comando-info i {
    color: rgb(234, 179, 8);
}

.comando p {
    font-size: 1rem;
    margin: 0px;
}


#f-tos {
    display: flex;
    flex-direction: column;
    -webkit-box-pack: center;
    justify-content: center;
    gap: 1.25rem;
    max-width: 70%;
    margin: 5rem auto;
    text-align: justify;
    color: rgb(255, 255, 255);
}

#f-tos h1 {
    font-size: 3.75rem;
    margin-bottom: 2rem;
    text-align: center;
}

#tos-text .subtitle {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}

#modi {
    font-size: 18px;
    margin: 20px
}

.tos {
    display: flex;
    border-radius: 10px;
    padding: 30px;
    background-color: #1D1E21;
}

.tos p {
    color: rgba(255, 255, 255, 0.75);
    text-align: start;
}

::-webkit-scrollbar {
    background-color: #080808;
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background-color: lightseagreen;
    width: 8px;
    border-radius: 5px;
}

footer {
    display: flex;
    flex-direction: row;
    padding: 0px 2.5rem 0px 3%;
    align-items: center;
    min-width: 250px;
    height: 90px;
    border-top: 1px solid rgb(33, 34, 38);
    width: 100%;
    height: 90px;
    flex-flow: row nowrap;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

#f-owner span {
    font-weight: 700;
    opacity: 1;
}


footer a {
    margin-bottom: .5rem;
    color: #d4d4d4;
    text-decoration: none;
    background-image: linear-gradient(lightseagreen, lightseagreen);
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    transition: background-size .3s;
}

footer a:hover {
    background-size: 100% 2px;
}

/* RESPONSIVE */

@media (max-width: 1050px) {

    header {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        align-content: center;
        flex-direction: column;
    }

    .circle {
        margin: 0px auto;
        width: 28px;
        height: 28px;
        position: relative;
    }

    .line {
        position: absolute;
        height: 3px;
        width: 100%;
        border-radius: 8px;
        transition: .15s;
        background: #fff !important;
    }

    .top {
        top: 18%
    }

    .middle {
        top: 48%
    }

    .bottom {
        top: 78%
    }

    header ul li {
        display: flex;
        text-align: left;
        padding: 8px;
        margin-left: 5px;
    }

    header label {
        width: 64px;
        height: 64px;
        position: fixed;
        padding: 0;
        right: 1rem;
        bottom: 4rem;
        border-radius: 50%;
        -webkit-box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.5);
        box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.5);
        background-color: #1D1E21;
        -webkit-transition: 300ms ease all;
        transition: 300ms ease all;
        z-index: 101;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .active {
        display: flex;
        flex-direction: column;
        background-color: #1D1E21;
        position: fixed;
        right: 3.7rem;
        bottom: 5.5rem;
        border-radius: 5px;
        width: 150px;
        z-index: 1;
        animation-name: fadeOut;


    }

    header label div {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #check:checked~nav ul.active {
        display: flex;
        flex-direction: column;
        background-color: #1D1E21;
        position: fixed;
        right: 3.7rem;
        bottom: 5.5rem;
        border-radius: 5px;
        width: 150px;
        z-index: 1;
        opacity: 0;
        animation: fadeIn 0.3s ease-in-out forwards, clipIn 0.3s ease-in-out forwards;
        clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
    }

    #check:not(:checked)~nav ul.active {
        opacity: 1;
        animation: fadeOut 0.3s ease-in-out forwards, clipOut 0.3s ease-in-out forwards;
        clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
    }

    .button__text {
        display: none;
    }

    .categorias i {
        display: block;
    }

    .buttons i {
        color: #fff;
    }

    ::-webkit-scrollbar {
        display: none;
    }

    ::-webkit-scrollbar-thumb {
        display: none;
    }
}

::-webkit-scrollbar {
    display: none;
}

::-webkit-scrollbar-thumb {
    display: none;
}

@media (max-width: 720px) {
    .features .information {
        grid-template-columns: repeat(1, 1fr);
    }

    .d-header {
        grid-template-columns: repeat(1, 2fr);
    }

    footer {
        padding: 5px;
        margin: 5px;
    }
}

/* RESPONSIVE */

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes clipIn {
    from {
        clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
    }

    to {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}

@keyframes clipOut {
    from {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    to {
        clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
    }
}