.site-footer {
    background-color: #111;
    /* negro similar al screenshot */
    color: #fff;
    font-family: Arial, sans-serif;
    padding: 2rem 1rem;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid #333;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 40px;
    /* ajusta según tu imagen */
    object-fit: contain;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 0;
    padding: 0;
    font-size: 0.85rem;
}

.footer-links li a {
    color: #aaa;
    text-decoration: none;
}

.footer-links li a:hover {
    color: #fff;
}

.footer-contact span {
    font-size: 0.85rem;
    color: #ccc;
}

.footer-contact a {
    color: #ff0;
    /* amarillo como en el screenshot */
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.8rem;
}

.footer-awards img {
    height: 50px;
    /* ajusta según tus imágenes */
    margin-right: 0.5rem;
}

.footer-social a img {
    height: 24px;
    margin-left: 0.5rem;
}

/* Responsive: en móviles apila todo */
@media (max-width: 768px) {

    .footer-top,
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-awards img {
        margin: 0.25rem;
    }

    .footer-social a img {
        margin: 0.25rem;
    }
}