
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: rgba(35, 36, 57, 1);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}


header {
 
    padding: 20px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-right: 10%;
}


.logo {
    display: flex;
    align-items: center;
    gap: 10%;
    margin-top: 3%;
    text-align: center;
    color: #ffffff;
    text-decoration: none;
    list-style: none;
}

.logo img {
    border-radius: 50%;
    height: 75px;
}


.menu {
    list-style: none;
    display: flex;
}

.menu li {
    margin-left: 20px;
}

.menu a {
    gap: 10%;
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
}


.usuario img {
    width: 30vh;
}

.usu img {
    width: 5px;
    height: 5px;
}
.titu{
    list-style: none;

}

.titulo{
    list-style:none;
    
}






.dropdown {
    position: relative;
}

.dropdown-menu {
    padding: 10px;
    width: 140px;
    display: none; 
    position: absolute;
    background-color: #46304d;
 
    box-shadow: 0px 8px 16px rgba(221, 221, 221, 0.2);
    list-style: none;
    padding: 10%;
    margin: 3%;
    border-radius: 5px;

}



.dropdown-menu li a {
    color: #ffffff;
    text-decoration: none;
    display: block;
}

.dropdown-menu li:hover {
    background-color: #3f3247;
}

.dropdown:hover .dropdown-menu {
    display: block;
}



.checkbtn {
    font-size: 30px;
    float: right;
    line-height: 80px;
    margin-right: 40px;
    cursor: pointer;
    display: none;
    z-index: 1000% 1;
}

#check {
    display: none;
}

@media(max-width: 952px){
    label.logo{
        font-size: 30px;
        padding-left: 50px;
    }
    nav ul li a{
        font-size: 1rem;
    }
    
}


@media (max-width: 858px) {
    .checkbtn {
        display: block;
    }


    .menu {
        position: fixed;
        width: 100%;
        height: 100vh;
        background-color: rgba(100, 79, 118, 0.9);
        top: 60px;
        left: -100%;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        text-align: center;
        transition: all 0.5s ease;
        z-index: 1000;
    }

    .menu li {
        margin: 5px 0;
    }

    .menu a {
        font-size: 1.2rem;
        padding: 10px;
    }

    #check:checked ~ .menu {
        left: 0;
    }
} 





.footer {
    background-color: #ffffff;
    color: #000000;
    padding: 40px 0;
    width: 100%;
    margin-top: 50px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.footer-container > div {
    flex: 1;
    padding: 0 15px;
}

.footer h4 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    font-weight: 600;
    color: #000000;
}

.footer h4:after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #9127b5;
    position: absolute;
    bottom: -8px;
    left: 0;
}

.footer p {
    margin-bottom: 10px;
    font-size: 14px;
    color: #000000;
}

.social-icons {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.social-icons a {
    margin: 5px 10px 5px 0;
    display: inline-block;
}

.social-icons img {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.social-icons img:hover {
    transform: scale(1.2);
}

.social-icons h4 + a {
    margin-top: 20px;
}

.social-icons a:last-child {
    margin-right: 0;
}

@media screen and (max-width: 300px) {
    nav {
        flex-direction: column;
        align-items: center;
        
    }

    .logo {
        margin-top: 5%;
    }

    img{
        width: 50px;
        height:50px;
    }

    .menu {
        flex-direction: column;
        width: 90%;
        align-items: center;
    }

    .menu li {
        margin: 10px 0;
        text-align: center;
    }

    .dropdown-menu {
        width: 100%;
        padding: 8%;
    }

    .footer-container {
        flex-direction: column;
    }

    .social-icons {
        align-items: center;
    }
}

/* 400px Screens (Small Devices) */
@media screen and (min-width: 301px) and (max-width: 400px) {
    nav {
        flex-direction: column;
        align-items: center;
        margin-right: 5%;
    }

    .logo {
        margin-top: 5%;
    }

    .menu {
        flex-direction: column;
        width: 90%;
        align-items: center;
    }

    .menu li {
        margin: 10px 0;
        text-align: center;
    }

    .dropdown-menu {
        width: 100%;
        padding: 8%;
    }

    .footer-container {
        flex-direction: column;
    }

    .social-icons {
        align-items: center;
    }
}

/* 500px Screens */
@media screen and (min-width: 401px) and (max-width: 500px) {
    nav {
        margin-right: 3%;
    }

    .menu {
        width: 95%;
    }

    .dropdown-menu {
        padding: 6%;
    }

    .footer-container {
        flex-direction: column;
        padding: 0 10px;
    }
}

/* 600px Screens */
@media screen and (min-width: 501px) and (max-width: 600px) {
    nav {
        margin-right: 2%;
    }

    .menu {
        width: 98%;
    }

    .dropdown-menu {
        padding: 4%;
    }
}

/* 800px Screens */
@media screen and (min-width: 601px) and (max-width: 800px) {
    nav {
        margin-right: 5%;
    }

    .menu {
        flex-wrap: wrap;
        justify-content: center;
    }

    .dropdown-menu {
        min-width: 200px;
    }
}

/* 1000px Screens */
@media screen and (min-width: 801px) and (max-width: 1000px) {
    nav {
        margin-right: 8%;
    }

    .menu {
        justify-content: space-around;
    }

    .dropdown-menu {
        min-width: 250px;
    }
}

/* 1020px Screens */
@media screen and (min-width: 1001px) and (max-width: 1020px) {
    nav {
        margin-right: 10%;
    }

    .menu {
        justify-content: space-between;
    }

    .dropdown-menu {
        min-width: 270px;
    }
}

/* Additional Responsive Adjustments */
@media screen and (max-width: 1020px) {
    .checkbtn {
        display: block;
    }

    .menu {
        position: fixed;
        width: 100%;
        height: 100vh;
        background-color: rgba(100, 79, 118, 0.9);
        top: 60px;
        left: -100%;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        text-align: center;
        transition: all 0.5s ease;
        z-index: 1000;
    }

    .menu li {
        margin: 5px 0;
    }

    .menu a {
        font-size: 1.2rem;
        padding: 10px;
    }

    #check:checked ~ .menu {
        left: 0;
    }
}@media screen and (max-width: 300px) {
    nav {
        flex-direction: column;
        align-items: center;
        margin-right: 0;
    }

    .logo {
        flex-direction: column;
        align-items: center;
        margin-top: 10%;
    }

    .logo img {
        height: 50px;
    }

    .menu {
        flex-direction: column;
        width: 100%;
        padding: 10px;
    }

    .menu li {
        margin: 10px 0;
        text-align: center;
    }

    .dropdown-menu {
        position: static;
        display: none;
        width: 100%;
        padding: 5%;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-container > div {
        margin-bottom: 20px;
    }

    .social-icons {
        align-items: center;
    }
}

/* 400px Screens (Small Devices) */
@media screen and (min-width: 301px) and (max-width: 400px) {
    nav {
        flex-direction: column;
        align-items: center;
        margin-right: 5%;
    }

    .logo {
        margin-top: 5%;
    }

    .menu {
        flex-direction: column;
        width: 90%;
        align-items: center;
    }

    .menu li {
        margin: 10px 0;
        text-align: center;
    }

    .dropdown-menu {
        width: 100%;
        padding: 8%;
    }

    .footer-container {
        flex-direction: column;
    }

    .social-icons {
        align-items: center;
    }
}

/* 500px Screens */
@media screen and (min-width: 401px) and (max-width: 500px) {
    nav {
        margin-right: 3%;
    }

    .menu {
        width: 95%;
    }

    .dropdown-menu {
        padding: 6%;
    }

    .footer-container {
        flex-direction: column;
        padding: 0 10px;
    }
}

/* 600px Screens */
@media screen and (min-width: 501px) and (max-width: 600px) {
    nav {
        margin-right: 2%;
    }

    .menu {
        width: 98%;
    }

    .dropdown-menu {
        padding: 4%;
    }
}

/* 800px Screens */
@media screen and (min-width: 601px) and (max-width: 800px) {
    nav {
        margin-right: 5%;
    }

    .menu {
        flex-wrap: wrap;
        justify-content: center;
    }

    .dropdown-menu {
        min-width: 200px;
    }
}

/* 1000px Screens */
@media screen and (min-width: 801px) and (max-width: 1000px) {
    nav {
        margin-right: 8%;
    }

    .menu {
        justify-content: space-around;
    }

    .dropdown-menu {
        min-width: 250px;
    }
}

/* 1020px Screens */
@media screen and (min-width: 1001px) and (max-width: 1020px) {
    nav {
        margin-right: 10%;
    }

    .menu {
        justify-content: space-between;
    }

    .dropdown-menu {
        min-width: 270px;
    }
}

/* Additional Responsive Adjustments */
@media screen and (max-width: 1020px) {
    .checkbtn {
        display: block;
    }

    .menu {
        position: fixed;
        width: 100%;
        height: 100vh;
        background-color: rgba(100, 79, 118, 0.9);
        top: 60px;
        left: -100%;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        text-align: center;
        transition: all 0.5s ease;
        z-index: 1000;
    }

    .menu li {
        margin: 5px 0;
    }

    .menu a {
        font-size: 1.2rem;
        padding: 10px;
    }

    #check:checked ~ .menu {
        left: 0;
    }
}