
.footer {
    background-color: var(--footer--background-color);
    padding: 20px 20px;
    border-top: 1px solid #ddd;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.contact-info {
    flex: 1;
    text-align: left;
}

.contact-item img {
    width: 30px;
    height: 30px;
    background-color: var(--footer--img--background-color);
    padding: 5px;
    border-radius: 30%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: var(--footer--text-content--title);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.contact-item p {
    margin: 0;
    font-size: 1em;
    color: var(--footer--text-content-paragraph);
}

.contact-item span {
    color: var(--footer--text-content-span);
    text-decoration: none;
    font-weight: bold;
}

.footer-center { 
    margin-top: 70px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-social {
    display: flex;
    gap: 10px; /* Espaço entre os ícones */
    justify-content: center; /* Centraliza os itens */
}

.footer-social a {
    margin: 0 5px;
    display: inline-block;
}

.footer-social img {
    width: 30px;
    height: 30px;
    border-radius: 30%;
    background-color: var(--footer--img--background-color);
    padding: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.footer-copy {
    text-align: center;
    color: var(--footer--text-content-copy);
    margin-top: 10px;
}

.footer-copy-client {
    font-weight: bold;
    font-size: 0.9em;
}

.footer-copy-developer {
    font-size: 0.8em;
}

.footer-links {
    text-align: center;
    margin-top: 10px;
    font-size: 14px;
}

.footer-link {
    color: var(--footer--text-content-links);
    text-decoration: none;
    padding: 5px 10px;
    display: inline-block;
    margin: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.contact-item-text{
    display: flex;
    flex-direction: row;
}

.contact-item-text p{
    margin: 0 5px;
}


@media (max-width: 600px) {
    .footer-links {
        font-size: 12px;
    }
    .contact-item-text{
        display: flex;
        flex-direction: column;
    }
    .contact-item-text p{
        margin-bottom: 5px;
    }

    .contact-item-text span{
        margin-left: 5px;
        width: 170%;
        word-break: break-word;
    }
    .footer-social {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        padding-right: 50px;
    }
}

@media (max-width: 480px) {
    .contact-item-text span{
        width: 200%;
    }
    .footer-social {
        padding-right: 10px;
    }
}