/* Estilos para elementos de credibilidade e segurança */

/* Rodapé */
.site-footer {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    padding: 20px 0;
    text-align: center;
    position: relative;
    margin-top: 40px;
    border-top: 1px solid rgba(110, 69, 226, 0.2);
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
}

.footer-links a {
    color: #6e45e2;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #5a36c9;
    text-decoration: underline;
}

.footer-info {
    font-size: 14px;
    color: #666;
}

/* Selo de segurança */
.security-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px 0;
    gap: 10px;
}

.security-badge .badge-icon {
    width: 24px;
    height: 24px;
    fill: #38b000;
}

.security-badge .badge-text {
    color: #38b000;
    font-weight: 600;
    font-size: 14px;
}

/* Botão de suporte flutuante */
.support-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    border-radius: 50px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.support-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.support-button .whatsapp-icon {
    width: 24px;
    height: 24px;
    fill: white;
}

/* Convite para amigos */
.invite-friends {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
}

.invite-friends p {
    margin-bottom: 10px;
    font-weight: 500;
}

/* Responsividade */
@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .support-button {
        bottom: 15px;
        right: 15px;
        padding: 8px 16px;
        font-size: 14px;
    }
}
