/* styles.css */

body {
    margin: 0;
    font-family:Arial, Helvetica, sans-serif, Agency FB;
}
/*Estilo NAVBAR*/
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
}

.logo img {
    height: 70px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: #0088CB;
    font-weight: bold;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #0088CB;
}

.nav-links a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #F8B133;
    transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.login a {
    text-decoration: none;
    color: #0088CB;
    font-weight: bold;
    border: 2px solid #0088CB;
    padding: 5px 15px;
    border-radius: 20px;
    transition: background-color 0.3s, color 0.3s;
}

.login a:hover {
    background-color: #0088CB;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        width: 100%;
        display: none;
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links li {
        text-align: center;
        width: 100%;
        padding: 10px 0;
    }
    .nav-links a {
        display: block;
        width: 100%;
    }

}

/* Hamburger menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: #007bff;
    margin: 4px;
    transition: all 0.3s;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

}
/* FIN ESTILOS NAVBAR*/

/*ESTILOS FOOTER*/

.footer {
    background: linear-gradient(to right, #E2312D, #F8B133);
    padding: 20px;
    color: white;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-left, .footer-center, .footer-right {
    flex: 1;
    min-width: 200px;
    margin: 10px;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 10px;

}

.footer-left ul, .footer-right ul {
    list-style: none;
    padding: 0;
}

.footer-right ul li, .footer-left ul li {
    margin: 5px 0;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons img {
    width: 40px;
    height: 40px;
    display: flex;
}

footer a {
    color: white;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
.letra_footer_right{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
.autortxt{
    font-family: 'Consolas';
    margin-bottom: 0;
    font-size: 17px;
    font-style: italic;
}
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
    }

    .footer-left, .footer-center, .footer-right {
        margin: 10px 0;
        text-align: center;
    }

    .footer-left ul, .footer-right ul {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-left ul li, .footer-right ul li {
        margin: 5px 15px;
    }

    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-logo {
        max-width: 80px;
    }

    .footer-left, .footer-center, .footer-right {
        flex: 1 1 100%;
        margin: 5px 0;
    }
}
/*BLOG*/
