* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

/* Estilos do Footer */
.powerrents-footer {
    background-color: #1a2b3c;
    color: #fff;
    padding: 60px 0 20px;
    margin-top: 50px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centraliza os itens dentro da seção */
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 15px;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    color: #ffcc00;
    text-align: center;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #ffcc00;
}

.footer-section p {
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: #ccc;
    text-align: center;
}

.footer-links {
    list-style: none;
    text-align: center; /* Centraliza o texto dos links */
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

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

.contact-info {
    list-style: none;
    text-align: center; /* Centraliza o texto das informações de contato */
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centraliza os itens de contato */
}

.contact-info i {
    margin-right: 0; /* Remove a margem direita pois agora está centralizado */
    color: #ffcc00;
    min-width: 20px;
    margin-bottom: 5px; /* Adiciona um espaço entre o ícone e o texto */
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: center; /* Centraliza os ícones sociais */
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: #ffcc00;
    color: #1a2b3c;
    transform: translateY(-3px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    font-size: 0.9rem;
    color: #aaa;
}

.footer-bottom p {
    margin-bottom: 5px;
}

.payment-methods {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.payment-methods i {
    font-size: 1.5rem;
    color: #ccc;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-section {
        margin-bottom: 30px;
        width: 100%; /* Garante que a seção ocupe a largura total */
    }

    .contact-info li {
        flex-direction: column; /* Mantém a direção coluna para centralizar */
        align-items: center;
    }

    .contact-info i {
        margin-bottom: 5px;
    }

    .social-links {
        justify-content: center;
    }
}