body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    height: 180vh;
}

header {
    background: linear-gradient(to right, #ff6666, #ff3333);
    color: #fff;
    text-align: center;
    padding: 1em 0;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    cursor: false;
}

h2.subtitulo {
    font-weight: normal;
    margin-top:;
}

nav {
    background-color: #ffe6e6;
    margin: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

nav ul {
    list-style: none;
    margin: 0;
    width: 100%;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 10px;
    margin-top: 20px;
}

nav ul li {
    margin: 12px;

}

nav ul li a {
    text-decoration: none;
    padding: 10px;
    background-color: #4CAF50;
    color: #fff;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

nav ul li a:hover {
    background-color: #6fb936;
}

nav li {
    margin: 20px 0; 
}

nav a {
    text-decoration: none;
    padding: 10px;
    width: 60%;
    background-color: #4CAF50;
    color: #fff;
    margin: 5px;
    margin-top: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

main {
    max-width: 90%;
    margin: 20px auto;
    padding: 1em;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.categories-list {
    list-style: none;
    padding: 0;
}

.category {
    cursor: pointer;
    padding: 10px;
    background: linear-gradient(to right, #ff6666, #ff3333);
    color: #fff;
    border-radius: 5px;
    margin-bottom: 5px;
    text-align: center;
}

.subcategories-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.subcategories-container li::before {
    content: none;
    margin-right: 5px;
}

.subcategories-container li {
    list-style-type: none;
    cursor: pointer;
    padding: 10px;
    width: 95%;
    background-color: rgba(255, 165, 0, 0.8); 
    color: #000; 
    margin: 5px 0;
    border-radius: 5px;
    margin-bottom: 5px;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .subcategories-container li {
        width: 85%;
    }
}

.subcategories-container li:hover {
    background-color: rgba(255, 165, 0, 0.7); 
}

.subcategories-container li a {
    color: #000;
    text-decoration: none; 
    font-weight: bold; 
}

.subcategories-container li a:hover {
    text-decoration: underline;
}


.category {
    cursor: pointer;
}

#toggleButton {
    background: linear-gradient(to right, #3399ff, #3366ff);
    color: #fff;
    border: none;
    width: 100%;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
    margin: 20px auto 0 auto;
    transition: background-color 0.3s ease;
}

#toggleButton:hover {
    background: linear-gradient(to right, #3366ff, #3333ff);
}


footer {
    background: linear-gradient(to right, #ff6666, #ff3333);
    color: #fff;
    text-align: center;
    padding: 0.5em 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}