/* ==========================================================================
   FOOTER CLEAN (CLARO)
   ========================================================================== */

#site-footer {
    background-color: #ffffff; /* Fundo Branco */
    color: #333; /* Texto Cinza Escuro */
    font-family: 'Helvetica', sans-serif;
    margin-top: 80px;
    border-top: 1px solid #e5e5e5; /* Borda sutil */
}

/* --- NEWSLETTER --- */
.newsletter-section {
    background-color: #f4f4f4; /* Fundo Cinza Claro para destacar */
    padding: 50px 20px;
    border-bottom: 1px solid #e5e5e5;
    text-align: center;
}

.news-content h3 {
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 700;
    color: #000; /* Título Preto */
}

.news-content p {
    color: #666; /* Texto secundário */
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.news-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.news-form input {
    padding: 12px 15px;
    width: 70%;
    border: 1px solid #ccc; /* Borda cinza */
    background-color: #fff;
    color: #333;
    font-size: 0.85rem;
    outline: none;
    transition: border 0.3s;
}

.news-form input:focus { border-color: #000; }

.news-form button {
    padding: 12px 25px;
    background-color: #000; /* Botão Preto para contraste */
    color: #fff;
    border: none;
    font-weight: 700;
    cursor: pointer;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: background 0.3s;
}

.news-form button:hover { background-color: #333; }


/* --- GRID PRINCIPAL --- */
#footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-size: 0.85rem;
    margin-bottom: 25px;
    color: #000; /* Títulos pretos */
    letter-spacing: 1px;
    font-weight: 800;
    text-transform: uppercase;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #555; /* Links cinza médio */
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s, padding-left 0.2s;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: #000; /* Preto no hover */
    padding-left: 5px; 
    text-decoration: underline;
}

.footer-col p {
    color: #555;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.footer-email {
    color: #000 !important;
    font-weight: 600;
}

/* Redes Sociais */
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social img {
    width: 22px;
    height: 22px;
    /* Se seus ícones forem pretos, não precisa de filtro. 
       Se forem brancos, use: filter: invert(1); */
    opacity: 0.8;
    transition: opacity 0.3s, transform 0.2s;
}

.footer-social a:hover img { 
    opacity: 1; 
    transform: scale(1.1);
}


/* --- RODAPÉ INFERIOR --- */
.footer-bottom {
    border-top: 1px solid #eee; /* Linha divisória bem clara */
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* Pagamentos */
.pagamentos {
    display: flex;
    align-items: center;
    gap: 15px;
}

.pagamentos span {
    font-size: 0.75rem;
    color: #888;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.pay-icons { display: flex; gap: 8px; }

.pay-icon {
    font-size: 0.7rem;
    font-weight: bold;
    color: #555;
    border: 1px solid #ddd;
    padding: 4px 10px;
    border-radius: 3px;
    background: #fff;
}

/* Copyright */
.copyright {
    text-align: right;
}

.copyright p {
    color: #888;
    font-size: 0.75rem;
    margin: 0;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr; 
        text-align: center;
        gap: 30px;
    }
    
    .footer-social { justify-content: center; }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .copyright { text-align: center; margin-top: 10px; }
    
    .news-form { flex-direction: column; }
    .news-form input { width: 100%; }
    .news-form button { width: 100%; }
}