*{
     font-family: "Poppins", sans-serif;
  font-weight: 500;
}
body{
    margin: 0;
}
.ta-c{
    text-align: center;
}
.pt-150{
    padding-top: 150px;
}
.nav-redes{
    background-color: #333; 
    color: white; 
    padding: 5px 15px; 
    text-align: right;
}
.nav-fijo{
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 10;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    background-color: #1A1A2E;
    color: #FFFFFF;
    padding: 10px 20px;
}

nav a {
    text-decoration: none;
    color: #fff;
}

.nav-link {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 20px;
}

.menu-toggle {
    display: none;
    font-size: 26px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}

/* 🎯 RESPONSIVE desde 768px hacia abajo */
@media (max-width: 768px) {
    .nav-link {
        position: absolute;
        top: 150px;
        left: 0;
        right: 0;
        background-color: #1A1A2E;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 15px 0;
        display: none; /* Oculto por defecto */
        z-index: 99;
    }

    .nav-link.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}


  /* Footer */
footer {
    background-color: #1A1A2E;
    color: #FFFFFF;
    padding: 2rem 1rem;
    text-align: center;
}

footer .footer-content {
    display: flex;
    justify-content: space-around;
    margin-bottom: 2rem;
}

footer .footer-section {
    max-width: 250px;
}
footer .footer-section img{
    max-width: 200px;
    border-radius: 50px;
    
}
footer .footer-section img:hover{
     transform: scale(1.05);
}
footer h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

footer p,
footer ul {
    font-size: 0.9rem;
    color: #ADB5BD;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 0.5rem;
}

footer ul li a {
    color: #ADB5BD;
    text-decoration: none;
}

footer ul li a:hover {
    color: #6C63FF;
}

/* Footer Bottom */
.footer-bottom {
    font-size: 0.85rem;
    color: #ADB5BD;
    margin-top: 2rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #6C63FF;
    color: white;
    padding: 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    visibility: hidden;
}

.back-to-top.visible {
    visibility: visible;
}

.back-to-top:hover {
    background-color: #4D44DB;
}

@media (max-width: 768px) {
    footer .footer-content{
        flex-direction: column;
        align-items: center;
    }
    .menu-footer li{
        justify-content: center;
    }
    footer .footer-section img{
        margin-bottom: 30px;
    }
}