/* Rodapé */
.Footer__main {
    background-color: #252525;
    color: #ffffff;
    padding: 40px 20px;
    text-align: center;
    font-family: Arial, sans-serif;
}

.Footer__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
}

.Footer__contact,
.Footer__links,
.Footer__socialMedia {
    margin-bottom: 20px;
    flex: 1 1 300px;
}

.Footer__contact h4,
.Footer__links h4,
.Footer__socialMedia h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #e46317;
}

.Footer__contact p,
.Footer__links ul,
.Footer__socialMedia a {
    font-size: 14px;
    line-height: 1.6;
    color: #ffffff;
    text-decoration: none;
}

.Footer__links ul {
    list-style: none;
    padding: 0;
}

.Footer__links ul li {
    margin-bottom: 5px;
}

.Footer__links ul li a:hover {
    color: #e46317;
}

.Footer__socialIcon img {
    width: 24px;
    margin: 0 10px;
    transition: opacity 0.3s;
}

.Footer__socialIcon img:hover {
    opacity: 0.7;
}

.Footer__copyright {
    border-top: 1px solid #444444;
    padding-top: 20px;
    margin-top: 20px;
    font-size: 12px;
    color: #aaaaaa;
}

