/* Roda pe */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estilos do Rodapé */
footer {
    background: linear-gradient(to right, #2c3e50, #4a6580);
    color: white;
    padding: 40px 0 20px;
    margin-top: 40px;
}
 footer, p, a {
    border-bottom: 2px solid black;
    text-decoration: none;
    color: black;
    border-bottom: none;
 }

 #foot {
    color: white;
 }

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 30px;
}
.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}
.footer-section h3 {
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #F88D3B;
    display: inline-block;
}
.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}
    .footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: #F88D3B;
}
.footer-links i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.contact-info {
    margin-top: 15px;
}
.contact-info div {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}
.contact-info i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
    color: #F88D3B;
}
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s;
}
.social-links a:hover {
    background: #F88D3B;
    transform: translateY(-3px);
}
.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}
.payment-methods img {
    width: 50px;
    height: 30px;
    object-fit: contain;
    background: white;
    padding: 4px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
    font-size: 14px;
}

.footer-bottom a {
    color: #F88D3B;
    text-decoration: none;
    margin: 0 10px;
}

.footer-bottom a:hover {
    text-decoration: underline;
}