/* Ensure proper layout structure */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content {
    flex: 1 0 auto;
    width: 100%;
}

/* Footer Styles */
.footer {
    flex-shrink: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    border-top: 1px solid #333;
    padding: 2rem 0;
    width: 100%;
    margin-top: auto;
}

.footer .container {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.footer-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

.delivery-info {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: nowrap;
}

.delivery-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    font-size: 1rem;
    margin: 0;
    white-space: nowrap;
}

.delivery-info i {
    color: #f8b03d;
    font-size: 1.2em;
    min-width: 1.2em;
    text-align: center;
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
}

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

.copyright {
    text-align: center;
    color: #ffffff;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsividade */
@media (max-width: 768px) {
    .delivery-info {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .footer-links {
        gap: 1rem 2rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 1.5rem 0;
    }
    
    .footer-info {
        gap: 1.5rem;
    }
}