body {
    font-family: sans-serif;
    background-color: rgb(4, 183, 215);
    color: white;
    margin: 0;
    height: 95vh;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid rgb(4, 183, 215);
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    background-color: rgb(12, 12, 12);
    width: 100%;
    margin: 0 auto;
    padding: 10px 20px;
    box-sizing: border-box;
}

.logo-titulo {
    display: flex;
    align-items: center;
}

header img {
    margin-right: 15px;
}

article {
    margin-top: 5px;
    border-radius: 20px;
    height: 100%;
    width: 100%;
    
    margin-left: auto;
    margin-right: auto;

    background-color: rgb(12, 12, 12);
}

.categorias {
    display: flex;
    gap: 20px;
}

.sect {
    color: white;
    border: 2px solid rgb(4, 183, 215);
    border-radius: 40px;
    text-align: center;
    background-color: rgb(39, 39, 39);
    padding: 10px 20px;
    text-decoration: none;
    transition: transform 0.3s ease-in-out;
}

.sect:hover {
    transform: scale(1.1);
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

/* Desplegable */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background-color: white;
    border-radius: 2px;
}

/* Media Queri Movil */
@media (max-width: 768px) {
    body {
        padding: 10px;
        height: 95vh;
    }

    header {
        width: 100%;
        flex-wrap: wrap;
    }

    article {
        width: 100%;
        height: 90%;
        min-height: 300px;
        margin-top: 15px;
        padding: 15px;
        box-sizing: border-box;
    }

    .logo-titulo {
        flex: 1;
    }

    header img {
        width: 60px;
        margin-right: 10px;
    }

    h1 {
        font-size: 1.5rem;
        margin: 0;
    }

    /* Mostrar desplegable */
    .menu-toggle {
        display: flex;
    }

    /* Menu Oculto */
    .categorias {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 10px;
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid rgba(255,255,255,0.3);
    }

    .categorias.active {
        display: flex;
    }

    .sect {
        width: 100%;
        box-sizing: border-box;
    }
}