
/* FOOTER */
#footer {
    background: var(--rodamel-black);
    color: var(--rodamel-white);
    padding: 60px 0 30px 0;
}

#footer h3, #footer h4 {
    color: var(--rodamel-white);
    margin-bottom: 20px;
}

#footer .footer-logo {
    font-family: 'Oswald', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--rodamel-orange);
    margin-bottom: 15px;
}

#footer .footer-logo-img {
    display: block;
    margin-bottom: 15px;
}

#footer .footer-slogan {
    font-family: 'Montserrat', sans-serif;
    font-style: italic;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
}

#footer ul {
    list-style: none;
    padding: 0;
}

#footer ul li {
    margin-bottom: 10px;
    line-height: 1;
}

#footer ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.4;
}

#footer ul li a:hover {
    color: var(--rodamel-orange);
    padding-left: 5px;

}

#footer ul li i {
    color: var(--rodamel-orange);
    font-size: 0.9rem;
    flex-shrink: 0;
    line-height: 1;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--rodamel-white);
    font-size: 1.3rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--rodamel-orange);
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.7);
    margin: 0;
    font-size: 0.9rem;
}

.footer-credits {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.footer-credits img {
    height: 25px;
    filter: brightness(0) invert(1);
}

.footer-credits a {
    color: var(--rodamel-white);
    text-decoration: none;
    font-weight: 600;
}

.footer-credits a:hover {
    color: var(--rodamel-orange);
}

.footer-logo-container {
    height: 100px;
    display: flex;
    align-items: center;
}

.footer-logo-img {
    max-height: 100%;
    width: auto;
}